opsworks 0.0.5 → 0.0.6

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: 0491f1f530f7f74dac185271bf6c3a03996ab21c
4
- data.tar.gz: 8221f7c61473d539ccc93a3af86c09125a320fce
3
+ metadata.gz: ef73d0b4d5dac0da741f5f5296fa2ce7ca2028fc
4
+ data.tar.gz: 5280aebad0267fa417cf60cf5167683097781fd2
5
5
  SHA512:
6
- metadata.gz: b92869acccc811a25fd471657033aff64d16aa5d72fc3833653511b81738252eca89d5d684c0b302b163a8d85683c636095b39427f1921a139d98202867ebebd
7
- data.tar.gz: 76423f655cf88dab2e713aa8f11729723f396244397fecd39f7c9396b8ea7811c138b7a66025d98705a27ee0459239494e2d23b5a580bdd5f5e2c3e4b062d413
6
+ metadata.gz: 09b5ad2fe4180a9c73f7a6efd7fab1c9e3aeed52cb795d66bd1d8e2d96c368a631069e97f0d036702c05192e6e9971d6df2a7c0ea84cfd58f9ee404970fedd9c
7
+ data.tar.gz: 80fa1c5bf5ca748e4c99bce375a2ac1ce792221529638a508e3d32adcc27e3b86b86121a18502fa667f9803e8f9002756f6caf25c4f9e0ccb56dcc5f175c0cf7
data/.gitignore ADDED
@@ -0,0 +1,17 @@
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
@@ -1,3 +1,3 @@
1
1
  module Opsworks
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
data/opsworks.gemspec CHANGED
@@ -14,9 +14,10 @@ Gem::Specification.new do |spec|
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|
17
+ dotfiles = ['.gitignore']
18
+ spec.files = (Dir["**/*"].reject do |f|
18
19
  File.directory?(f) || ignores.any? { |i| File.fnmatch(i, f) }
19
- end
20
+ end + dotfiles)
20
21
 
21
22
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
22
23
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
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.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Lindberg
@@ -113,6 +113,7 @@ files:
113
113
  - opsworks.gemspec
114
114
  - Rakefile
115
115
  - README.md
116
+ - .gitignore
116
117
  homepage: https://github.com/eproxus/opsworks
117
118
  licenses:
118
119
  - MIT