├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── circle.yml ├── fastlane-plugin-localization.gemspec ├── fastlane ├── Fastfile └── Pluginfile ├── lib └── fastlane │ └── plugin │ ├── localization.rb │ └── localization │ ├── actions │ ├── export_localizations_action.rb │ └── import_localizations_action.rb │ ├── helper │ └── localization_helper.rb │ └── version.rb └── spec ├── localization_action_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/Rakefile -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/circle.yml -------------------------------------------------------------------------------- /fastlane-plugin-localization.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/fastlane-plugin-localization.gemspec -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- 1 | lane :test do 2 | localization 3 | end 4 | -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- 1 | # Autogenerated by fastlane 2 | -------------------------------------------------------------------------------- /lib/fastlane/plugin/localization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/lib/fastlane/plugin/localization.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/localization/actions/export_localizations_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/lib/fastlane/plugin/localization/actions/export_localizations_action.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/localization/actions/import_localizations_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/lib/fastlane/plugin/localization/actions/import_localizations_action.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/localization/helper/localization_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/lib/fastlane/plugin/localization/helper/localization_helper.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/localization/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/lib/fastlane/plugin/localization/version.rb -------------------------------------------------------------------------------- /spec/localization_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/spec/localization_action_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmalyi/fastlane-plugin-localization/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------