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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e7908273a5282fd3271e050285041d8e71f6a5d6
4
- data.tar.gz: a748ab12f90a77eef28a74c6110ce9d931fb92e2
3
+ metadata.gz: 0491f1f530f7f74dac185271bf6c3a03996ab21c
4
+ data.tar.gz: 8221f7c61473d539ccc93a3af86c09125a320fce
5
5
  SHA512:
6
- metadata.gz: e0b4e56c3334e862c131df11eeb2aa75d20ce2a75d4bf7c82e37562657b040152f6140159fcdd1a2dc559393b2517d4e583c06a174272d026efeae52a0dfb001
7
- data.tar.gz: 08285579a6b8fcede1d922236058f0c2dfaa74f510c37a7ac4c970b88db69de163c2538afd7629a6528812e58712720369ccc71a0e893dc95b1e12106738f9d0
6
+ metadata.gz: b92869acccc811a25fd471657033aff64d16aa5d72fc3833653511b81738252eca89d5d684c0b302b163a8d85683c636095b39427f1921a139d98202867ebebd
7
+ data.tar.gz: 76423f655cf88dab2e713aa8f11729723f396244397fecd39f7c9396b8ea7811c138b7a66025d98705a27ee0459239494e2d23b5a580bdd5f5e2c3e4b062d413
@@ -1,3 +1,3 @@
1
1
  module Opsworks
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
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
- spec.files = `git ls-files`.split($/)
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
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
- - lib/opsworks.rb
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
data/.gitignore DELETED
@@ -1,17 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp