Cassiano

Results 24 comments of Cassiano

Following up on this, it still doesn't work now that Xcode supports building frameworks from packages. Reference [here](https://developer.apple.com/documentation/xcode/creating-a-multi-platform-binary-framework-bundle). I'm trying this: `xcodebuild archive -scheme GRPC -destination "generic/platform=iOS" -archivePath "archives/GRPC-iOS"` `xcodebuild...

Also related to the issue https://github.com/grpc/grpc-swift/issues/1405 : the workaround script no longer works. And the issue https://github.com/grpc/grpc-swift/issues/1391: It's not possible to use `BUILD_LIBRARY_FOR_DISTRIBUTION`. Also related to: - https://github.com/apple/swift-protobuf/issues/1101 - https://github.com/apple/swift-protobuf/issues/1157

I corrected that creating the file config/routes.rb with the following mapping: ActionController::Routing::Routes.draw do |map| map.connect '/importer/index', :controller => 'importer', :action => 'index' end Are there any other routes used?

Got it. Any more routes missing?

Create the file config/routes.rb with the following contents: ActionController::Routing::Routes.draw do |map| map.connect '/importer/index', :controller => 'importer', :action => 'index' map.connect '/importer/match', :controller => 'importer', :action => 'match' end If you...

That route seems to work. The problem now is not with routes anymore. As you can see from you message, your CSV file is malformed somehow. FasterCSV::MalformedCSVError (FasterCSV::MalformedCSVError):

Your line is wrong. You need to replace the controller and action paths with the ones from the plugin, and their routes. So far, this is the complete routes.rb file...