├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── circle.yml ├── fastlane-plugin-teams.gemspec ├── fastlane ├── Fastfile └── Pluginfile ├── lib └── fastlane │ └── plugin │ ├── teams.rb │ └── teams │ ├── actions │ └── teams_action.rb │ ├── helper │ └── teams_helper.rb │ └── version.rb └── spec ├── spec_helper.rb └── teams_action_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/Rakefile -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/circle.yml -------------------------------------------------------------------------------- /fastlane-plugin-teams.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/fastlane-plugin-teams.gemspec -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- 1 | # Autogenerated by fastlane 2 | -------------------------------------------------------------------------------- /lib/fastlane/plugin/teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/lib/fastlane/plugin/teams.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/teams/actions/teams_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/lib/fastlane/plugin/teams/actions/teams_action.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/teams/helper/teams_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/lib/fastlane/plugin/teams/helper/teams_helper.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/teams/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/lib/fastlane/plugin/teams/version.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/teams_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbogh/fastlane-plugin-teams/HEAD/spec/teams_action_spec.rb --------------------------------------------------------------------------------