opsworks 0.0.4 → 0.0.5
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 +4 -4
- data/lib/opsworks/version.rb +1 -1
- data/opsworks.gemspec +5 -1
- metadata +6 -7
- data/.gitignore +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0491f1f530f7f74dac185271bf6c3a03996ab21c
|
4
|
+
data.tar.gz: 8221f7c61473d539ccc93a3af86c09125a320fce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b92869acccc811a25fd471657033aff64d16aa5d72fc3833653511b81738252eca89d5d684c0b302b163a8d85683c636095b39427f1921a139d98202867ebebd
|
7
|
+
data.tar.gz: 76423f655cf88dab2e713aa8f11729723f396244397fecd39f7c9396b8ea7811c138b7a66025d98705a27ee0459239494e2d23b5a580bdd5f5e2c3e4b062d413
|
data/lib/opsworks/version.rb
CHANGED
data/opsworks.gemspec
CHANGED
@@ -13,7 +13,11 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.homepage = "https://github.com/eproxus/opsworks"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
|
-
|
16
|
+
ignores = File.readlines('.gitignore').grep(/\S+/).map { |s| s.chomp }
|
17
|
+
spec.files = Dir["**/*"].reject do |f|
|
18
|
+
File.directory?(f) || ignores.any? { |i| File.fnmatch(i, f) }
|
19
|
+
end
|
20
|
+
|
17
21
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
22
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
23
|
spec.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opsworks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Lindberg
|
@@ -102,18 +102,17 @@ executables:
|
|
102
102
|
extensions: []
|
103
103
|
extra_rdoc_files: []
|
104
104
|
files:
|
105
|
-
- .gitignore
|
106
|
-
- Gemfile
|
107
|
-
- LICENSE.txt
|
108
|
-
- README.md
|
109
|
-
- Rakefile
|
110
105
|
- bin/opsworks
|
111
|
-
-
|
106
|
+
- Gemfile
|
112
107
|
- lib/opsworks/cli.rb
|
113
108
|
- lib/opsworks/commands/ssh.rb
|
114
109
|
- lib/opsworks/config.rb
|
115
110
|
- lib/opsworks/version.rb
|
111
|
+
- lib/opsworks.rb
|
112
|
+
- LICENSE.txt
|
116
113
|
- opsworks.gemspec
|
114
|
+
- Rakefile
|
115
|
+
- README.md
|
117
116
|
homepage: https://github.com/eproxus/opsworks
|
118
117
|
licenses:
|
119
118
|
- MIT
|