├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── circle.yml ├── fastlane-plugin-get_version_code.gemspec ├── fastlane ├── Fastfile └── Pluginfile ├── lib └── fastlane │ └── plugin │ ├── get_version_code.rb │ └── get_version_code │ ├── actions │ └── get_version_code_action.rb │ ├── helper │ └── get_version_code_helper.rb │ └── version.rb └── spec ├── get_version_code_action_spec.rb └── spec_helper.rb /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/Rakefile -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/circle.yml -------------------------------------------------------------------------------- /fastlane-plugin-get_version_code.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/fastlane-plugin-get_version_code.gemspec -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- 1 | # Autogenerated by fastlane 2 | -------------------------------------------------------------------------------- /lib/fastlane/plugin/get_version_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/lib/fastlane/plugin/get_version_code.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/get_version_code/actions/get_version_code_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/lib/fastlane/plugin/get_version_code/actions/get_version_code_action.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/get_version_code/helper/get_version_code_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/lib/fastlane/plugin/get_version_code/helper/get_version_code_helper.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/get_version_code/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/lib/fastlane/plugin/get_version_code/version.rb -------------------------------------------------------------------------------- /spec/get_version_code_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/spec/get_version_code_action_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jems22/fastlane-plugin-get_version_code/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------