gitextract_vmqjrexn/ ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── circle.yml ├── fastlane/ │ ├── Fastfile │ └── Pluginfile ├── fastlane-plugin-increment_version_code.gemspec ├── lib/ │ └── fastlane/ │ └── plugin/ │ ├── increment_version_code/ │ │ ├── actions/ │ │ │ └── increment_version_code_action.rb │ │ ├── helper/ │ │ │ └── increment_version_code_helper.rb │ │ └── version.rb │ └── increment_version_code.rb └── spec/ ├── increment_version_code_action_spec.rb └── spec_helper.rb