build-cloud 0.0.24 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 563b1691ba6faca1b49a3419aeb1bc7041eb3d2b
4
- data.tar.gz: a4566f9450bada05ce17219da77475b7b83a6398
2
+ SHA256:
3
+ metadata.gz: 633788e810570a47b97cd9e92b742f3a382c1ead7605513d9c03059f50159dc2
4
+ data.tar.gz: eedad5d41f0f6f3b1ae03f5b706f99a9decf14cc6d5eb7ccf57c8db02f297d12
5
5
  SHA512:
6
- metadata.gz: d0c4ec949b11b3c2b0b22c24c5eaf941f52110ca58595b52134d7805dfc4e4562c4c2ef2e902af5f9270fcaf9ce0a0c042dbfb115a7510966352c9862af49ddd
7
- data.tar.gz: 2cf6c3770f8a52cecff4c3108e043af0df4794bc2d7a30a96e416774bf64d1ff936696067bfb0d54045bf40ce0291fc85b2e1fc9ea98dc4fdd9c980a58620ad0
6
+ metadata.gz: 3ea3f656bf081aeccb3524ba2055cf9475cf57a74e3a377658491b60c218addf85418068ce44de47cc1b244ee48757fbcd25e9c0670697ea2a3d7e4b6b3c66e4
7
+ data.tar.gz: e3fb79b1cdab4ada5a5178afe18aea1ccea496f69552475dd61513081113b5bb02b13d25ddbbb6e94b94a9777a4ca30066fa537f8d8505fb954012c0e6af16d4
data/.travis.yml ADDED
@@ -0,0 +1,14 @@
1
+ language: ruby
2
+ cache: bundler
3
+ rvm:
4
+ - 2.2
5
+ sudo: false
6
+ script: true
7
+ deploy:
8
+ provider: rubygems
9
+ api_key:
10
+ secure: jEc3woY9TQYOAVbVRINM2qsZNa5PeV9c8ci7GWyF9nabOnnPVH7yDsLgA1amSyJN6KCMyZ8yXeCLWrVDLXJiuGXRUFCDsciu05G8o3vVr1Z8ytntOjalhDXY5Tq2hxeILRv6Ls665nqrxpbFJYW2ovDKJx+03lCAzn71yC+hmVM=
11
+ gem: build-cloud
12
+ on:
13
+ tags: true
14
+ repo: scalefactory/build-cloud
data/build-cloud.gemspec CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "build-cloud"
7
- spec.version = "0.0.24"
7
+ spec.version = "1.0.0"
8
8
  spec.authors = ["The Scale Factory"]
9
9
  spec.email = ["info@scalefactory.com"]
10
10
  spec.summary = %q{Tools for building resources in AWS}
data/lib/build-cloud.rb CHANGED
@@ -257,6 +257,7 @@ class BuildCloud
257
257
  fog_options_regionless = {
258
258
  :aws_access_key_id => @config[:aws_access_key_id] ||= ENV['AWS_ACCESS_KEY_ID'],
259
259
  :aws_secret_access_key => @config[:aws_secret_access_key] ||= ENV['AWS_SECRET_ACCESS_KEY'],
260
+ :aws_session_token => @config[:aws_session_token] ||= ENV['AWS_SESSION_TOKEN'],
260
261
  }
261
262
 
262
263
  fog_options = fog_options_regionless.merge( { :region => @config[:aws_region] } )
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: build-cloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.24
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Scale Factory
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-13 00:00:00.000000000 Z
11
+ date: 2018-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -89,6 +89,7 @@ extensions: []
89
89
  extra_rdoc_files: []
90
90
  files:
91
91
  - ".gitignore"
92
+ - ".travis.yml"
92
93
  - CHANGELOG.md
93
94
  - Gemfile
94
95
  - LICENSE.txt
@@ -146,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
146
147
  version: '0'
147
148
  requirements: []
148
149
  rubyforge_project:
149
- rubygems_version: 2.2.5
150
+ rubygems_version: 2.7.6
150
151
  signing_key:
151
152
  specification_version: 4
152
153
  summary: Tools for building resources in AWS