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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- Y2FiNDg0OTU2NjdiYTA3YmExNDIwMGM2NjI1ZDYwMTMxYTFmYmVhZA==
4
+ MzExZjdiYWJkNWY0Y2Y2YmY2OTU4MmMyYzE2OTViZGI1MGExYjViOQ==
5
5
  data.tar.gz: !binary |-
6
- MWE5OWQxYTAzNGY2NDBkM2U0NTE0Y2M2ZjFhMGNiMTNiZGNiYzRjNA==
6
+ NWJhZDAyZGUzMzI2NzQ2ZjI4Y2FiYjlmNWRmMmQxOGM3YTg4ZGQ4Ng==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ZmY5MzdjMTEyNzg3Y2NmMjc1NWFmMDM3NmM5YjQ2YTYxZWM0N2I1M2NmNDM3
10
- NDM2Y2VlMjExYTlhZmQyNjRjNmI5MjIzMjViYzE2Zjc2ZTZjMDYwMDEwNjc2
11
- YjM2NjMwMzRlNTAyMDI5Y2IyMWIwYTk5NmFmODUyM2Y4NmE4MGY=
9
+ MzM2NTg3NWE4NjA3YjI2MjRkYTRlNjM3ODBmNDIyZjI2NDI0ZmM3OGZhMDMw
10
+ ODAyNmVlZmY0ZmQ0ZjYzMjIxNDc3MjAzZDY5OTVhNjIyMTQ5MDEzNmM0ZmVl
11
+ ZjczNzYzYzRkZjViMTI0MGM4ZDNkNmU1NzEyMzM1M2U5NGRiNjE=
12
12
  data.tar.gz: !binary |-
13
- ZTgyOTk3MGFjZDNhNWIzNDljYmI5YzNlNTZlNDdjYzkzMGQ5ZWU0ZTE1YjEy
14
- ZjIxMWM0MWE1OTgyYzNiMmViYjAyNWZhMDk2ODMwYTgwNDJkNTY0NjI1Yjll
15
- MDkxMjkxZTMzZjgxZmMzNjlkY2RjYjIzOTFiZDBmNGIxYTViNGE=
13
+ YmRhODI3M2U2Y2IxZmIxYjc5YmQ1ZGFkOWYzNDRlY2Y5MWYzZTg4YWQzMzBj
14
+ YTNjNTFhZmE0ODVhNTRjN2NkZDdiYWQwOTg1NTFjZmM4MGNkYWU2ZjE0OTcw
15
+ ZTIzZDg3MjYwNWE5MDc5NmVkMTRjZjI2ODIxOWE5NzE0NjE4Mjk=
data/bin/dance CHANGED
@@ -7,9 +7,9 @@ root = File.expand_path '../..', __FILE__
7
7
  $:.unshift(path) unless $:.include?(path)
8
8
  end
9
9
 
10
+ require "tap_dance/cli"
11
+
10
12
  require 'rubygems'
11
13
  require 'thor'
12
14
 
13
- require "tap_dance"
14
-
15
15
  TapDance::CLI.start
@@ -1,3 +1,3 @@
1
1
  module TapDance
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
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
- 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"
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
- spec.files = `git ls-files`.split($/)
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
- spec.add_dependency "thor"
22
- spec.add_development_dependency "bundler"
23
- spec.add_development_dependency "rake"
24
- spec.add_development_dependency "rspec"
25
- spec.add_development_dependency "guard"
26
- spec.add_development_dependency "guard-rspec"
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.2
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: '0'
151
+ version: 1.9.1
152
152
  required_rubygems_version: !ruby/object:Gem::Requirement
153
153
  requirements:
154
154
  - - ! '>='