├── .gitignore ├── .rspec ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── aws_s3_screenshot.png ├── fastlane-plugin-aws_s3.gemspec ├── fastlane ├── Fastfile ├── Pluginfile ├── README.md ├── apk1 │ ├── BanditTheCat.apk │ └── source │ │ ├── Something.java │ │ └── Something2.java ├── apk2 │ └── BanditTheCat.apk ├── ipa21 │ ├── BanditTheCat.ipa │ └── source │ │ ├── Something.h │ │ └── Something2.swift ├── ipa24 │ └── BanditTheCat.ipa ├── testdir1 │ ├── testfile1_dir1.txt │ └── testfile2_dir1.txt ├── testdir2 │ ├── testfile1_dir2.txt │ └── testfile2_dir2.txt ├── testfile1.txt ├── testfile2.txt └── xxxxGemfile ├── lib ├── assets │ ├── s3_android_html_template.erb │ ├── s3_android_version_template.erb │ ├── s3_ios_html_template.erb │ ├── s3_ios_plist_template.erb │ └── s3_ios_version_template.erb └── fastlane │ └── plugin │ ├── aws_s3.rb │ └── aws_s3 │ ├── actions │ └── aws_s3_action.rb │ ├── helper │ └── aws_s3_helper.rb │ └── version.rb └── spec ├── s3_action_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/.rspec -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' 2 | -------------------------------------------------------------------------------- /aws_s3_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/aws_s3_screenshot.png -------------------------------------------------------------------------------- /fastlane-plugin-aws_s3.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/fastlane-plugin-aws_s3.gemspec -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- 1 | # Autogenerated by fastlane 2 | -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/apk1/BanditTheCat.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/fastlane/apk1/BanditTheCat.apk -------------------------------------------------------------------------------- /fastlane/apk1/source/Something.java: -------------------------------------------------------------------------------- 1 | System.out.println("What's up?"); 2 | -------------------------------------------------------------------------------- /fastlane/apk1/source/Something2.java: -------------------------------------------------------------------------------- 1 | System.out.println("What's up 2?"); 2 | -------------------------------------------------------------------------------- /fastlane/apk2/BanditTheCat.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/fastlane/apk2/BanditTheCat.apk -------------------------------------------------------------------------------- /fastlane/ipa21/BanditTheCat.ipa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/fastlane/ipa21/BanditTheCat.ipa -------------------------------------------------------------------------------- /fastlane/ipa21/source/Something.h: -------------------------------------------------------------------------------- 1 | # 2 | # Header stuff 3 | # 4 | -------------------------------------------------------------------------------- /fastlane/ipa21/source/Something2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/fastlane/ipa21/source/Something2.swift -------------------------------------------------------------------------------- /fastlane/ipa24/BanditTheCat.ipa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/fastlane/ipa24/BanditTheCat.ipa -------------------------------------------------------------------------------- /fastlane/testdir1/testfile1_dir1.txt: -------------------------------------------------------------------------------- 1 | testfile1_dir1 -------------------------------------------------------------------------------- /fastlane/testdir1/testfile2_dir1.txt: -------------------------------------------------------------------------------- 1 | testfile2_dir1 -------------------------------------------------------------------------------- /fastlane/testdir2/testfile1_dir2.txt: -------------------------------------------------------------------------------- 1 | testfile1_dir2 -------------------------------------------------------------------------------- /fastlane/testdir2/testfile2_dir2.txt: -------------------------------------------------------------------------------- 1 | testfile2_dir2 -------------------------------------------------------------------------------- /fastlane/testfile1.txt: -------------------------------------------------------------------------------- 1 | testfile1 -------------------------------------------------------------------------------- /fastlane/testfile2.txt: -------------------------------------------------------------------------------- 1 | testfile2 -------------------------------------------------------------------------------- /fastlane/xxxxGemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/fastlane/xxxxGemfile -------------------------------------------------------------------------------- /lib/assets/s3_android_html_template.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/lib/assets/s3_android_html_template.erb -------------------------------------------------------------------------------- /lib/assets/s3_android_version_template.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/lib/assets/s3_android_version_template.erb -------------------------------------------------------------------------------- /lib/assets/s3_ios_html_template.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/lib/assets/s3_ios_html_template.erb -------------------------------------------------------------------------------- /lib/assets/s3_ios_plist_template.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/lib/assets/s3_ios_plist_template.erb -------------------------------------------------------------------------------- /lib/assets/s3_ios_version_template.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/lib/assets/s3_ios_version_template.erb -------------------------------------------------------------------------------- /lib/fastlane/plugin/aws_s3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/lib/fastlane/plugin/aws_s3.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/aws_s3/actions/aws_s3_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/lib/fastlane/plugin/aws_s3/actions/aws_s3_action.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/aws_s3/helper/aws_s3_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/lib/fastlane/plugin/aws_s3/helper/aws_s3_helper.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/aws_s3/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/lib/fastlane/plugin/aws_s3/version.rb -------------------------------------------------------------------------------- /spec/s3_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/spec/s3_action_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-community/fastlane-plugin-s3/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------