travis-async-listener 1.8.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (184) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +22 -0
  3. data/README.md +2486 -0
  4. data/Rakefile +63 -0
  5. data/assets/cacert.pem +69 -0
  6. data/assets/init/c.yml +4 -0
  7. data/assets/init/clojure.yml +1 -0
  8. data/assets/init/cpp.yml +4 -0
  9. data/assets/init/erlang.yml +3 -0
  10. data/assets/init/go.yml +4 -0
  11. data/assets/init/groovy.yml +1 -0
  12. data/assets/init/haskell.yml +1 -0
  13. data/assets/init/java.yml +4 -0
  14. data/assets/init/node_js.yml +4 -0
  15. data/assets/init/objective-c.yml +1 -0
  16. data/assets/init/perl.yml +4 -0
  17. data/assets/init/php.yml +4 -0
  18. data/assets/init/python.yml +5 -0
  19. data/assets/init/ruby.yml +6 -0
  20. data/assets/init/scala.yml +4 -0
  21. data/assets/notifications/Travis CI.app/Contents/Info.plist +52 -0
  22. data/assets/notifications/Travis CI.app/Contents/MacOS/Travis CI +0 -0
  23. data/assets/notifications/Travis CI.app/Contents/PkgInfo +1 -0
  24. data/assets/notifications/Travis CI.app/Contents/Resources/Travis CI.icns +0 -0
  25. data/assets/notifications/Travis CI.app/Contents/Resources/en.lproj/Credits.rtf +29 -0
  26. data/assets/notifications/Travis CI.app/Contents/Resources/en.lproj/InfoPlist.strings +0 -0
  27. data/assets/notifications/Travis CI.app/Contents/Resources/en.lproj/MainMenu.nib +0 -0
  28. data/assets/notifications/Travis CI.app/Contents/_CodeSignature/CodeResources +173 -0
  29. data/assets/notifications/Travis CI.app/Contents/embedded.provisionprofile +0 -0
  30. data/assets/notifications/icon.png +0 -0
  31. data/assets/travis.sh +163 -0
  32. data/assets/travis.sh.erb +64 -0
  33. data/bin/travis +18 -0
  34. data/examples/org_overview.rb +3 -0
  35. data/examples/pro_auth.rb +23 -0
  36. data/examples/stream.rb +6 -0
  37. data/lib/travis.rb +8 -0
  38. data/lib/travis/auto_login.rb +3 -0
  39. data/lib/travis/cli.rb +126 -0
  40. data/lib/travis/cli/accounts.rb +31 -0
  41. data/lib/travis/cli/api_command.rb +180 -0
  42. data/lib/travis/cli/branches.rb +25 -0
  43. data/lib/travis/cli/cache.rb +76 -0
  44. data/lib/travis/cli/cancel.rb +18 -0
  45. data/lib/travis/cli/command.rb +422 -0
  46. data/lib/travis/cli/console.rb +31 -0
  47. data/lib/travis/cli/disable.rb +15 -0
  48. data/lib/travis/cli/enable.rb +31 -0
  49. data/lib/travis/cli/encrypt.rb +108 -0
  50. data/lib/travis/cli/encrypt_file.rb +140 -0
  51. data/lib/travis/cli/endpoint.rb +35 -0
  52. data/lib/travis/cli/env.rb +66 -0
  53. data/lib/travis/cli/help.rb +23 -0
  54. data/lib/travis/cli/history.rb +49 -0
  55. data/lib/travis/cli/init.rb +82 -0
  56. data/lib/travis/cli/lint.rb +49 -0
  57. data/lib/travis/cli/login.rb +76 -0
  58. data/lib/travis/cli/logout.rb +14 -0
  59. data/lib/travis/cli/logs.rb +65 -0
  60. data/lib/travis/cli/monitor.rb +110 -0
  61. data/lib/travis/cli/open.rb +39 -0
  62. data/lib/travis/cli/parser.rb +43 -0
  63. data/lib/travis/cli/pubkey.rb +30 -0
  64. data/lib/travis/cli/raw.rb +20 -0
  65. data/lib/travis/cli/repo_command.rb +154 -0
  66. data/lib/travis/cli/report.rb +101 -0
  67. data/lib/travis/cli/repos.rb +53 -0
  68. data/lib/travis/cli/requests.rb +47 -0
  69. data/lib/travis/cli/restart.rb +18 -0
  70. data/lib/travis/cli/settings.rb +77 -0
  71. data/lib/travis/cli/setup.rb +66 -0
  72. data/lib/travis/cli/setup/anynines.rb +21 -0
  73. data/lib/travis/cli/setup/appfog.rb +19 -0
  74. data/lib/travis/cli/setup/artifacts.rb +23 -0
  75. data/lib/travis/cli/setup/biicode.rb +19 -0
  76. data/lib/travis/cli/setup/cloud_66.rb +20 -0
  77. data/lib/travis/cli/setup/cloud_control.rb +21 -0
  78. data/lib/travis/cli/setup/cloud_files.rb +20 -0
  79. data/lib/travis/cli/setup/cloud_foundry.rb +23 -0
  80. data/lib/travis/cli/setup/code_deploy.rb +55 -0
  81. data/lib/travis/cli/setup/deis.rb +20 -0
  82. data/lib/travis/cli/setup/divshot.rb +18 -0
  83. data/lib/travis/cli/setup/elastic_beanstalk.rb +23 -0
  84. data/lib/travis/cli/setup/engine_yard.rb +24 -0
  85. data/lib/travis/cli/setup/gcs.rb +22 -0
  86. data/lib/travis/cli/setup/hackage.rb +18 -0
  87. data/lib/travis/cli/setup/heroku.rb +20 -0
  88. data/lib/travis/cli/setup/modulus.rb +18 -0
  89. data/lib/travis/cli/setup/ninefold.rb +20 -0
  90. data/lib/travis/cli/setup/nodejitsu.rb +27 -0
  91. data/lib/travis/cli/setup/npm.rb +20 -0
  92. data/lib/travis/cli/setup/open_shift.rb +20 -0
  93. data/lib/travis/cli/setup/opsworks.rb +22 -0
  94. data/lib/travis/cli/setup/pypi.rb +22 -0
  95. data/lib/travis/cli/setup/releases.rb +35 -0
  96. data/lib/travis/cli/setup/ruby_gems.rb +25 -0
  97. data/lib/travis/cli/setup/s3.rb +25 -0
  98. data/lib/travis/cli/setup/sauce_connect.rb +21 -0
  99. data/lib/travis/cli/setup/service.rb +73 -0
  100. data/lib/travis/cli/show.rb +69 -0
  101. data/lib/travis/cli/sshkey.rb +118 -0
  102. data/lib/travis/cli/status.rb +19 -0
  103. data/lib/travis/cli/sync.rb +30 -0
  104. data/lib/travis/cli/token.rb +14 -0
  105. data/lib/travis/cli/version.rb +17 -0
  106. data/lib/travis/cli/whatsup.rb +30 -0
  107. data/lib/travis/cli/whoami.rb +15 -0
  108. data/lib/travis/client.rb +39 -0
  109. data/lib/travis/client/account.rb +56 -0
  110. data/lib/travis/client/annotation.rb +21 -0
  111. data/lib/travis/client/artifact.rb +88 -0
  112. data/lib/travis/client/auto_login.rb +45 -0
  113. data/lib/travis/client/broadcast.rb +14 -0
  114. data/lib/travis/client/build.rb +47 -0
  115. data/lib/travis/client/cache.rb +25 -0
  116. data/lib/travis/client/commit.rb +28 -0
  117. data/lib/travis/client/entity.rb +238 -0
  118. data/lib/travis/client/env_var.rb +102 -0
  119. data/lib/travis/client/error.rb +38 -0
  120. data/lib/travis/client/has_uuid.rb +13 -0
  121. data/lib/travis/client/job.rb +61 -0
  122. data/lib/travis/client/lint_result.rb +25 -0
  123. data/lib/travis/client/listener.rb +184 -0
  124. data/lib/travis/client/methods.rb +104 -0
  125. data/lib/travis/client/namespace.rb +85 -0
  126. data/lib/travis/client/not_loadable.rb +13 -0
  127. data/lib/travis/client/repository.rb +224 -0
  128. data/lib/travis/client/request.rb +36 -0
  129. data/lib/travis/client/restartable.rb +23 -0
  130. data/lib/travis/client/session.rb +339 -0
  131. data/lib/travis/client/settings.rb +25 -0
  132. data/lib/travis/client/singleton_setting.rb +36 -0
  133. data/lib/travis/client/ssh_key.rb +11 -0
  134. data/lib/travis/client/states.rb +98 -0
  135. data/lib/travis/client/user.rb +67 -0
  136. data/lib/travis/client/weak_entity.rb +26 -0
  137. data/lib/travis/pro.rb +5 -0
  138. data/lib/travis/pro/auto_login.rb +3 -0
  139. data/lib/travis/tools/assets.rb +21 -0
  140. data/lib/travis/tools/completion.rb +54 -0
  141. data/lib/travis/tools/formatter.rb +50 -0
  142. data/lib/travis/tools/github.rb +279 -0
  143. data/lib/travis/tools/notification.rb +69 -0
  144. data/lib/travis/tools/safe_string.rb +22 -0
  145. data/lib/travis/tools/ssl_key.rb +48 -0
  146. data/lib/travis/tools/system.rb +88 -0
  147. data/lib/travis/version.rb +3 -0
  148. data/spec/cli/cancel_spec.rb +15 -0
  149. data/spec/cli/encrypt_spec.rb +43 -0
  150. data/spec/cli/endpoint_spec.rb +34 -0
  151. data/spec/cli/help_spec.rb +33 -0
  152. data/spec/cli/history_spec.rb +38 -0
  153. data/spec/cli/init_spec.rb +226 -0
  154. data/spec/cli/login_spec.rb +13 -0
  155. data/spec/cli/logs_spec.rb +8 -0
  156. data/spec/cli/open_spec.rb +33 -0
  157. data/spec/cli/repo_command_spec.rb +25 -0
  158. data/spec/cli/restart_spec.rb +15 -0
  159. data/spec/cli/setup_spec.rb +5 -0
  160. data/spec/cli/show_spec.rb +9 -0
  161. data/spec/cli/status_spec.rb +28 -0
  162. data/spec/cli/token_spec.rb +22 -0
  163. data/spec/cli/version_spec.rb +18 -0
  164. data/spec/cli/whoami_spec.rb +34 -0
  165. data/spec/client/account_spec.rb +32 -0
  166. data/spec/client/annotation_spec.rb +14 -0
  167. data/spec/client/broadcast_spec.rb +10 -0
  168. data/spec/client/build_spec.rb +31 -0
  169. data/spec/client/commit_spec.rb +22 -0
  170. data/spec/client/job_spec.rb +30 -0
  171. data/spec/client/methods_spec.rb +15 -0
  172. data/spec/client/namespace_spec.rb +19 -0
  173. data/spec/client/repository_spec.rb +39 -0
  174. data/spec/client/session_spec.rb +165 -0
  175. data/spec/client/user_spec.rb +16 -0
  176. data/spec/client_spec.rb +17 -0
  177. data/spec/pro_spec.rb +10 -0
  178. data/spec/spec_helper.rb +29 -0
  179. data/spec/support/fake_api.rb +738 -0
  180. data/spec/support/fake_github.rb +24 -0
  181. data/spec/support/helpers.rb +45 -0
  182. data/spec/travis_spec.rb +10 -0
  183. data/travis.gemspec +323 -0
  184. metadata +489 -0
@@ -0,0 +1,20 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class Deis < Service
7
+ description "automatic deployment to a deis app"
8
+
9
+ def run
10
+ deploy 'deis' do |config|
11
+ config['controller'] ||= ask("Deis Controller: ").to_s
12
+ config['app'] ||= ask("Deis App: ").to_s
13
+ config['username'] ||= ask("Deis Username: ").to_s
14
+ config['password'] ||= ask("Deis Password: ") { |q| q.echo = "*" }.to_s
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,18 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class Divshot < Service
7
+ description "deployment to Divshot.io"
8
+
9
+ def run
10
+ deploy 'divshot' do |config|
11
+ config['api_key'] = ask("Divshot Api Key: ") { |q| q.echo = "*" }.to_s
12
+ config['environment'] = ask("Divshot Environment: ").to_s
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,23 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class ElasticBeanstalk < Service
7
+ description "deployment to AWS Elastic Beanstalk"
8
+
9
+ def run
10
+ deploy 'elasticbeanstalk' do |config|
11
+ config['access_key_id'] = ask("Access key ID: ").to_s
12
+ config['secret_access_key'] = ask("Secret access key: ") { |q| q.echo = "*" }.to_s
13
+ config['region'] = ask("Elastic Beanstalk region: ") {|q| q.default = 'us-east-1'}.to_s
14
+ config['app'] = ask("Elastic Beanstalk application name: ").to_s
15
+ config['env'] = ask("Elastic Beanstalk environment to update: ").to_s
16
+
17
+ encrypt(config, 'secret_access_key') if agree("Encrypt secret access key? ") { |q| q.default = 'yes' }
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,24 @@
1
+ require 'travis/cli/setup'
2
+ require 'yaml'
3
+
4
+ module Travis
5
+ module CLI
6
+ class Setup
7
+ class EngineYard < Service
8
+ description "automatic deployment to Engine Yard"
9
+
10
+ def run
11
+ deploy 'engineyard' do |config|
12
+ eyrc = File.expand_path(".eyrc", Dir.home)
13
+ config['api_key'] = YAML.load_file(eyrc)["api_token"] if File.exists?(eyrc)
14
+ config['api_key'] = ask("API token: ") { |q| q.echo = "*" }.to_s unless config['api_key']
15
+ env = ask("Environment (optional): ").to_s
16
+ config['environment'] = env unless env.empty?
17
+ migrate = agree("Run migrations on deploy? ") { |q| q.default = 'yes' }
18
+ config['migrate'] = ask("Migration command: ") { |q| q.default = "rake db:migrate" } if migrate
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,22 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class GCS < Service
7
+ description "automatic pushing to Google Cloud Storage"
8
+
9
+ def run
10
+ deploy 'gcs' do |config|
11
+ config['access_key_id'] = ask("Access key ID: ").to_s
12
+ config['secret_access_key'] = ask("Secret access key: ") { |q| q.echo = "*" }.to_s
13
+ config['bucket'] = ask("Bucket: ").to_s
14
+ local_dir = ask("Local project directory to upload (Optional): ").to_s
15
+ config['local-dir'] = local_dir unless local_dir.empty?
16
+ encrypt(config, 'secret_access_key') if agree("Encrypt secret access key? ") { |q| q.default = 'yes' }
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,18 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class Hackage < Service
7
+ description "automatic deployment of hackage packages"
8
+
9
+ def run
10
+ deploy 'hackage' do |config|
11
+ config['username'] ||= ask("Hackage Username: ").to_s
12
+ config['password'] ||= ask("Hackage Password: ") { |q| q.echo = "*" }.to_s
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,20 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class Heroku < Service
7
+ description "automatic deployment to Heroku"
8
+
9
+ def run
10
+ deploy 'heroku' do |config|
11
+ config['api_key'] = `heroku auth:token 2>/dev/null`.strip
12
+ config['api_key'] = ask("Heroku API token: ") { |q| q.echo = "*" }.to_s if config['api_key'].empty?
13
+ config['app'] = `heroku apps:info 2>/dev/null`.scan(/^=== (.+)$/).flatten.first
14
+ config['app'] = ask("Heroku application name: ") { |q| q.default = repository.name }.to_s if config['app'].nil?
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,18 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class Modulus < Service
7
+ description "deployment to Modulus"
8
+
9
+ def run
10
+ deploy 'modulus' do |config|
11
+ config['api_key'] = ask("Modulus Api Key: ") { |q| q.echo = "*" }.to_s
12
+ config['project_name'] = ask("Modulus Project Name: ").to_s
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,20 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class Ninefold < Service
7
+ description "Automatic deployment to Ninefold"
8
+
9
+ def run
10
+ deploy 'ninefold', 'release' do |config|
11
+ config['app_id'] ||= ask("Ninefold App ID: ").to_s
12
+ config['auth_token'] ||= ask("Ninefold Auth Token: ") { |q| q.echo = "*" }.to_s
13
+
14
+ encrypt(config, 'auth_token') if agree("Encrypt Auth Token? ") { |q| q.default = 'yes' }
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,27 @@
1
+ require 'travis/cli/setup'
2
+ require 'json'
3
+
4
+ module Travis
5
+ module CLI
6
+ class Setup
7
+ class Nodejitsu < Service
8
+ description "automatic deployment to Nodejitsu"
9
+
10
+ def run
11
+ deploy 'nodejitsu' do |config|
12
+ jitsu_file = File.expand_path('.jitsuconf', ENV['HOME'])
13
+
14
+ if File.exist? jitsu_file
15
+ jitsu_conf = JSON.parse(File.read(jitsu_file))
16
+ config['user'] = jitsu_conf['username']
17
+ config['api_key'] = jitsu_conf['apiToken']
18
+ end
19
+
20
+ config['user'] ||= ask("Nodejitsu user: ").to_s
21
+ config['api_key'] ||= ask("Nodejitsu API token: ") { |q| q.echo = "*" }.to_s
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,20 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class NPM < Service
7
+ description "automatic release to NPM"
8
+
9
+ def run
10
+ deploy 'npm', 'release' do |config|
11
+ config['email'] ||= ask("NPM email address: ") { |q| q }.to_s
12
+ config['api_key'] ||= ask("NPM api key: ") { |q| q.echo = "*" }.to_s
13
+
14
+ on("release only tagged commits? ", config, 'tags' => true)
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,20 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class OpenShift < Service
7
+ description "automatic deployment to OpenShfit"
8
+
9
+ def run
10
+ deploy 'openshift' do |config|
11
+ config['user'] = ask("OpenShift user: ").to_s
12
+ config['password'] = ask("OpenShift password: ") { |q| q.echo = "*" }.to_s
13
+ config['app'] = ask("OpenShift application name: ") { |q| q.default = repository.name }.to_s
14
+ config['domain'] = ask("OpenShift domain: ").to_s
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,22 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class OpsWorks < Service
7
+ description "deployment to OpsWorks"
8
+
9
+ def run
10
+ deploy 'opsworks' do |config|
11
+ config['access_key_id'] = ask("Access key ID: ").to_s
12
+ config['secret_access_key'] = ask("Secret access key: ") { |q| q.echo = "*" }.to_s
13
+ config['app-id'] = ask("App ID: ").to_s
14
+ config['migrate'] = true if agree("Migrate the Database? ") { |q| q.default = 'no' }
15
+
16
+ encrypt(config, 'secret_access_key') if agree("Encrypt secret access key? ") { |q| q.default = 'yes' }
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class PyPI < Service
7
+ description "automatic deployment to PyPI"
8
+
9
+ def run
10
+ deploy 'pypi', 'release' do |config|
11
+ config['user'] ||= ask("Username: ").to_s
12
+ config['password'] ||= ask("Password: ") { |q| q.echo = "*" }.to_s
13
+
14
+ on("release only tagged commits? ", config, 'tags' => true)
15
+ # the default of pypi `setup.py build` is the `sdist`
16
+ on("deploy as wheel file too? ", config, 'distributions' => 'sdist bdist_wheel')
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,35 @@
1
+ require 'travis/cli/setup'
2
+ require 'travis/tools/github'
3
+
4
+ module Travis
5
+ module CLI
6
+ class Setup
7
+ class Releases < Service
8
+ description "Upload Assets to GitHub Releases"
9
+
10
+ def run
11
+ deploy 'releases' do |config|
12
+ github.with_token { |t| config['api_key'] = t }
13
+ config['file'] = ask("File to Upload: ").to_s
14
+ end
15
+ end
16
+
17
+ def github
18
+ @github ||= begin
19
+ load_gh
20
+ Tools::Github.new(session.config['github']) do |g|
21
+ g.drop_token = false
22
+ g.ask_login = proc { ask("Username: ") }
23
+ g.ask_password = proc { |user| ask("Password for #{user}: ") { |q| q.echo = "*" } }
24
+ g.ask_otp = proc { |user| ask("Two-factor authentication code for #{user}: ") }
25
+ g.debug = proc { |log| debug(log) }
26
+ g.after_tokens = proc { g.explode = true and error("no suitable github token found") }
27
+ g.scopes = org? ? ['public_repo'] : ['repo']
28
+ g.note = "automatic releases for #{repository.slug}"
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,25 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class RubyGems < Service
7
+ description "automatic release to RubyGems"
8
+
9
+ def run
10
+ deploy 'rubygems', 'release' do |config|
11
+ authorization_file = File.expand_path('.rubygems/authorization', ENV['HOME'])
12
+ credentials_file = File.expand_path('.gem/credentials', ENV['HOME'])
13
+
14
+ config['api_key'] ||= File.read(authorization_file) if File.exist? authorization_file
15
+ config['api_key'] ||= YAML.load_file(credentials_file)[:rubygems_api_key] if File.exist? credentials_file
16
+ config['api_key'] ||= ask("RubyGems API token: ") { |q| q.echo = "*" }.to_s
17
+ config['gem'] ||= ask("Gem name: ") { |q| q.default = repository.name }.to_s
18
+
19
+ on("Release only tagged commits? ", config, 'tags' => true)
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,25 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class S3 < Service
7
+ description "automatic pushing to S3"
8
+
9
+ def run
10
+ deploy 's3', 'push' do |config|
11
+ config['access_key_id'] = ask("Access key ID: ").to_s
12
+ config['secret_access_key'] = ask("Secret access key: ") { |q| q.echo = "*" }.to_s
13
+ config['bucket'] = ask("Bucket: ").to_s
14
+ local_dir = ask("Local project directory to upload (Optional): ").to_s
15
+ config['local-dir'] = local_dir unless local_dir.empty?
16
+ upload_dir = ask("S3 upload directory (Optional): ").to_s
17
+ config['upload-dir'] = upload_dir unless upload_dir.empty?
18
+ config['acl'] = ask("S3 ACL Settings (private, public_read, public_read_write, authenticated_read, bucket_owner_read, bucket_owner_full_control): ").to_s { |q| q.default = 'private'}
19
+ encrypt(config, 'secret_access_key') if agree("Encrypt secret access key? ") { |q| q.default = 'yes' }
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,21 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class SauceConnect < Service
7
+ description "Sauce Connet addon for Sauce Labs integration"
8
+ service_name "sauce_connect"
9
+
10
+ def run
11
+ travis_config['addons'] ||= {}
12
+ configure 'sauce_connect', {}, travis_config['addons'] do |config|
13
+ config['username'] = ask("Sauce Labs user: ").to_s
14
+ config['access_key'] = ask("Sauce Labs access key: ") { |q| q.echo = "*" }.to_s
15
+ encrypt(config, 'access_key') if agree("Encrypt access key? ") { |q| q.default = 'yes' }
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,73 @@
1
+ require 'travis/cli/setup'
2
+
3
+ module Travis
4
+ module CLI
5
+ class Setup
6
+ class Service
7
+ def self.normalized_name(string)
8
+ string.to_s.downcase.gsub(/[^a-z\d]/, '')
9
+ end
10
+
11
+ def self.description(description = nil)
12
+ @description ||= ""
13
+ @description = description if description
14
+ @description
15
+ end
16
+
17
+ def self.service_name(service_name = nil)
18
+ @service_name ||= normalized_name(name[/[^:]+$/])
19
+ @service_name = service_name if service_name
20
+ @service_name
21
+ end
22
+
23
+ def self.known_as?(name)
24
+ normalized_name(service_name) == normalized_name(name)
25
+ end
26
+
27
+ attr_accessor :command
28
+
29
+ def initialize(command)
30
+ @command = command
31
+ end
32
+
33
+ def method_missing(*args, &block)
34
+ @command.send(*args, &block)
35
+ end
36
+
37
+ private
38
+
39
+ def on(question, config, condition)
40
+ return unless agree(question) { |q| q.default = 'yes' }
41
+ config['on'] ||= {}
42
+ config['on'].merge! condition
43
+ end
44
+
45
+ def encrypt(config, key)
46
+ encrypted = repository.encrypt(config.fetch(key))
47
+ config[key] = { 'secure' => encrypted }
48
+ end
49
+
50
+ def configure(key, value = {}, config = travis_config)
51
+ error "#{key} section already exists in .travis.yml, run with --force to override" if config.include? key and not force?
52
+ yield(config[key] = value)
53
+ end
54
+
55
+ def branch
56
+ @branch ||= `git rev-parse --symbolic-full-name --abbrev-ref HEAD`.chomp
57
+ end
58
+
59
+ def deploy(provider, verb = "deploy")
60
+ configure('deploy', 'provider' => provider) do |config|
61
+ yield config
62
+
63
+ on("#{verb.capitalize} only from #{repository.slug}? ", config, 'repo' => repository.slug)
64
+ on("#{verb.capitalize} from #{branch} branch? ", config, 'branch' => branch) if branch != 'master' and branch != 'HEAD'
65
+
66
+ encrypt(config, 'password') if config['password'] and agree("Encrypt Password? ") { |q| q.default = 'yes' }
67
+ encrypt(config, 'api_key') if config['api_key'] and agree("Encrypt API key? ") { |q| q.default = 'yes' }
68
+ end
69
+ end
70
+ end
71
+ end
72
+ end
73
+ end