aws-ssm-console 0.2.2 → 0.2.3

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
2
  SHA1:
3
- metadata.gz: 1d25d80bd3476d2eab9840b006860efaacf86f66
4
- data.tar.gz: d2503e63f0a7e7bc3064ff1e70de52fe9025c888
3
+ metadata.gz: 0ae251124ddc9a664b7e5aec481cea1ce1cad2bb
4
+ data.tar.gz: 513ca1ec4bbc0e3b7ca7b5f0b6ea50b1f65fc076
5
5
  SHA512:
6
- metadata.gz: 3cdc96367b283683e0191fc8afc4de7ca9ff5982920f583915a44926f086480dd36c9b71c82afaaee8eb8e76f1f671175dd882dcbf2594f8c2792ecd4e671e55
7
- data.tar.gz: cb9a476ce8c3dc58d039c21de9c0df45bc954211b6e65180b097da6e43b6da30076af6fb04f9684816a486c558f630351ffec790481c21e21b2b151510a2b475
6
+ metadata.gz: 3136763936a77aeebf475220615a28eb0bdafae3b96cf45dce7e641323ca9b77cbc2275b2d936819754baa02d9ed82653ce571eb43ea1fad1c8c22efa535add6
7
+ data.tar.gz: 7849c86c889119374c03b3dc36f987b6e0f7c335ddfe2866e9ac5b63b43541e47ecc37cd77c5b5abaf36e7978532cc624af92b623be99160c2b38861e3992f44
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.2.3
@@ -1,10 +1,9 @@
1
1
  # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
2
+ version = File.read(File.expand_path('../VERSION', __FILE__)).strip
4
3
 
5
4
  Gem::Specification.new do |spec|
6
5
  spec.name = 'aws-ssm-console'
7
- spec.version = '0.2.2'
6
+ spec.version = version
8
7
  spec.authors = ['koshigoe']
9
8
  spec.email = ['koshigoeb@gmail.com']
10
9
  spec.license = 'MIT'
@@ -1,5 +1,4 @@
1
1
  require 'aws-sdk'
2
- require 'aws/ssm/console/version'
3
2
  require 'aws/ssm/console/cli'
4
3
  require 'aws/ssm/console/options'
5
4
  require 'aws/ssm/console/runner'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-ssm-console
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - koshigoe
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-10-14 00:00:00.000000000 Z
11
+ date: 2016-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -81,6 +81,7 @@ files:
81
81
  - LICENSE.txt
82
82
  - README.md
83
83
  - Rakefile
84
+ - VERSION
84
85
  - aws-ssm-console.gemspec
85
86
  - bin/console
86
87
  - bin/setup
@@ -91,7 +92,6 @@ files:
91
92
  - lib/aws/ssm/console/options.rb
92
93
  - lib/aws/ssm/console/printer.rb
93
94
  - lib/aws/ssm/console/runner.rb
94
- - lib/aws/ssm/console/version.rb
95
95
  homepage: https://github.com/koshigoe/aws-ssm-console
96
96
  licenses:
97
97
  - MIT
@@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
112
  version: '0'
113
113
  requirements: []
114
114
  rubyforge_project:
115
- rubygems_version: 2.5.1
115
+ rubygems_version: 2.5.2
116
116
  signing_key:
117
117
  specification_version: 4
118
118
  summary: REPL for AWS SSM.
@@ -1,9 +0,0 @@
1
- module Aws
2
- module SSM
3
- module Console
4
- GEMSPEC_PATH = File.expand_path('../../../../../aws-ssm-console.gemspec', __FILE__)
5
- GEMSPEC = Gem::Specification.load(GEMSPEC_PATH)
6
- VERSION = GEMSPEC.version.to_s.freeze
7
- end
8
- end
9
- end