tap_dance 0.0.2 → 0.0.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 +8 -8
- data/bin/dance +2 -2
- data/lib/tap_dance/version.rb +1 -1
- data/tap_dance.gemspec +20 -18
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MzExZjdiYWJkNWY0Y2Y2YmY2OTU4MmMyYzE2OTViZGI1MGExYjViOQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NWJhZDAyZGUzMzI2NzQ2ZjI4Y2FiYjlmNWRmMmQxOGM3YTg4ZGQ4Ng==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MzM2NTg3NWE4NjA3YjI2MjRkYTRlNjM3ODBmNDIyZjI2NDI0ZmM3OGZhMDMw
|
10
|
+
ODAyNmVlZmY0ZmQ0ZjYzMjIxNDc3MjAzZDY5OTVhNjIyMTQ5MDEzNmM0ZmVl
|
11
|
+
ZjczNzYzYzRkZjViMTI0MGM4ZDNkNmU1NzEyMzM1M2U5NGRiNjE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YmRhODI3M2U2Y2IxZmIxYjc5YmQ1ZGFkOWYzNDRlY2Y5MWYzZTg4YWQzMzBj
|
14
|
+
YTNjNTFhZmE0ODVhNTRjN2NkZDdiYWQwOTg1NTFjZmM4MGNkYWU2ZjE0OTcw
|
15
|
+
ZTIzZDg3MjYwNWE5MDc5NmVkMTRjZjI2ODIxOWE5NzE0NjE4Mjk=
|
data/bin/dance
CHANGED
data/lib/tap_dance/version.rb
CHANGED
data/tap_dance.gemspec
CHANGED
@@ -4,24 +4,26 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
require 'tap_dance/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
7
|
+
spec.name = "tap_dance"
|
8
|
+
spec.version = TapDance::VERSION
|
9
|
+
spec.authors = ["Jonathan Martin"]
|
10
|
+
spec.email = ["me@nybblr.com"]
|
11
|
+
spec.description = %q{Manage your OSX binaries on a per project and system basis. Powered by Homebrew, inspired by Bundler.}
|
12
|
+
spec.summary = %q{Homebrew rocks, but managing system level dependencies can become a pain to track across multiple machines. Bundler was designed to make explicit declaration of Ruby dependencies consistent and painless. TapDance aims to do the same for system binaries.}
|
13
|
+
spec.homepage = "https://github.com/nybblr/tap_dance"
|
14
|
+
spec.license = "MIT"
|
15
15
|
|
16
|
-
|
17
|
-
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
-
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
-
spec.require_paths = ["lib", "ext"]
|
16
|
+
spec.required_ruby_version = '>= 1.9.1'
|
20
17
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
18
|
+
spec.files = `git ls-files`.split($/)
|
19
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
20
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
21
|
+
spec.require_paths = ["lib", "ext"]
|
22
|
+
|
23
|
+
spec.add_dependency "thor"
|
24
|
+
spec.add_development_dependency "bundler"
|
25
|
+
spec.add_development_dependency "rake"
|
26
|
+
spec.add_development_dependency "rspec"
|
27
|
+
spec.add_development_dependency "guard"
|
28
|
+
spec.add_development_dependency "guard-rspec"
|
27
29
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tap_dance
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Martin
|
@@ -148,7 +148,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
148
148
|
requirements:
|
149
149
|
- - ! '>='
|
150
150
|
- !ruby/object:Gem::Version
|
151
|
-
version:
|
151
|
+
version: 1.9.1
|
152
152
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
153
153
|
requirements:
|
154
154
|
- - ! '>='
|