vagrant-spec-helper-basic 0.1.0 → 0.2.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 +4 -4
- data/gem-0.1.0.gemspec +18 -0
- data/gem-0.2.0.gemspec +18 -0
- data/lib/vagrant-spec-helper-basic.rb +0 -0
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3af65e3fa721945d6b7410a004369c7533d1bf59
|
|
4
|
+
data.tar.gz: ccd41371b9a4c73ae5b32bed47069c7c2ee343cc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86681a9ed50c394cc077c00867600b65fe169cc6efe1c4d57cd8fc54a48385e604a24f2e18ec3a998ab2a512df211d91da2cc0ee1486cc59d55b542ec70c428c
|
|
7
|
+
data.tar.gz: cbca79ae5bfa96ccd5ed647d121b245aebefcf24a991913afaa277780a302d9458d8e4ce12f2a28304552168630c31fbb388e712ea61e87584baac41eafacd2a
|
data/gem-0.1.0.gemspec
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
Gem::Specification.new do |spec|
|
|
3
|
+
spec.name = "vagrant-spec-helper-basic"
|
|
4
|
+
spec.version = "0.1.0"
|
|
5
|
+
spec.authors = ["Mitchell Hashimoto"]
|
|
6
|
+
spec.email = ["mitchell.hashimoto@gmail.com"]
|
|
7
|
+
spec.description = %q{Gem used as a helper for vagrant-spec.}
|
|
8
|
+
spec.summary = %q{Gem used as a helper for vagrant-spec. Don't use this.}
|
|
9
|
+
spec.homepage = "https://github.com/mitchellh/vagrant-spec"
|
|
10
|
+
spec.license = "MPL2"
|
|
11
|
+
|
|
12
|
+
spec.files = `git ls-files`.split($/)
|
|
13
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
14
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
15
|
+
spec.require_paths = ["lib"]
|
|
16
|
+
|
|
17
|
+
spec.add_development_dependency "rake"
|
|
18
|
+
end
|
data/gem-0.2.0.gemspec
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
Gem::Specification.new do |spec|
|
|
3
|
+
spec.name = "vagrant-spec-helper-basic"
|
|
4
|
+
spec.version = "0.2.0"
|
|
5
|
+
spec.authors = ["Mitchell Hashimoto"]
|
|
6
|
+
spec.email = ["mitchell.hashimoto@gmail.com"]
|
|
7
|
+
spec.description = %q{Gem used as a helper for vagrant-spec.}
|
|
8
|
+
spec.summary = %q{Gem used as a helper for vagrant-spec. Don't use this.}
|
|
9
|
+
spec.homepage = "https://github.com/mitchellh/vagrant-spec"
|
|
10
|
+
spec.license = "MPL2"
|
|
11
|
+
|
|
12
|
+
spec.files = `git ls-files`.split($/)
|
|
13
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
14
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
15
|
+
spec.require_paths = ["lib"]
|
|
16
|
+
|
|
17
|
+
spec.add_development_dependency "rake"
|
|
18
|
+
end
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-spec-helper-basic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mitchell Hashimoto
|
|
@@ -30,7 +30,10 @@ email:
|
|
|
30
30
|
executables: []
|
|
31
31
|
extensions: []
|
|
32
32
|
extra_rdoc_files: []
|
|
33
|
-
files:
|
|
33
|
+
files:
|
|
34
|
+
- gem-0.1.0.gemspec
|
|
35
|
+
- gem-0.2.0.gemspec
|
|
36
|
+
- lib/vagrant-spec-helper-basic.rb
|
|
34
37
|
homepage: https://github.com/mitchellh/vagrant-spec
|
|
35
38
|
licenses:
|
|
36
39
|
- MPL2
|