nyc-theater-discounts 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d553e130a27e2b93ec827b002d94c3ee430a77b2
4
- data.tar.gz: e865b5d5c0783c2e5ed7201945867898eff981ac
3
+ metadata.gz: 3654c9fc91361057e40ae501bad1a42f1bbea31d
4
+ data.tar.gz: cb848942aa828e897965e86e9d4313d7e749108e
5
5
  SHA512:
6
- metadata.gz: 9749066470951c14cd47c14aedad34f8edd64158997df13572ac55ff01b6853e27a79e1e5c147e02af09972f52cb2142d2af3097ec317da77b6b42f8d3f582ff
7
- data.tar.gz: 1926aa09346891f57e732e1ec6bcb8b4f7efffcd279efdcd60aef3cd88a9216e180e9fc195d45b603a2341448c7a84880b336505274158a46b09d62fee9c1796
6
+ metadata.gz: 31e3f55f3e09954fcfb58b901117e9c868524027fe63621bcf8d76d25b2b081e08a04dece184125d5e0adfa6893648777ce408cb1f20a1b5e419ee0a91e917ca
7
+ data.tar.gz: 4fa923fc3033d53634d6208811fda1ff1f09ccfd029d05dd11eac754b47a8df281b6da598594227a5db93e038601eb0037ac87b68eda8ffcf8b8bb43ef4cb4da
data/README.md CHANGED
@@ -20,9 +20,7 @@ Or install it yourself as:
20
20
 
21
21
  ## Usage
22
22
 
23
- Type the following line into your terminal and then follow the prompts:
24
-
25
- $ nyc-theater-discounts
23
+ Run 'nyc-theater-discounts' after installing the gem.
26
24
 
27
25
  ## Development
28
26
 
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ require 'nyc-theater-discounts'
3
+ require_relative '../config/environment'
4
+ require_relative '../lib/nyc_theater_discounts.rb'
5
+
6
+ NYCTheaterDiscounts::CLI.new.call
@@ -1,3 +1,3 @@
1
1
  module NYCTheaterDiscounts
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
Binary file
@@ -15,8 +15,7 @@ Gem::Specification.new do |spec|
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
- spec.bindir = "exe"
19
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
+ spec.executables = ["nyc-theater-discounts"]
20
19
  spec.require_paths = ["lib"]
21
20
 
22
21
  spec.add_development_dependency "bundler", "~> 1.11"
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nyc-theater-discounts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaileigh McCrea
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2016-06-02 00:00:00.000000000 Z
12
12
  dependencies:
@@ -84,7 +84,8 @@ description: Aggregates up-to-the-minute discounts for theater tickets in New Yo
84
84
  City.
85
85
  email:
86
86
  - kaileighrose@gmail.com
87
- executables: []
87
+ executables:
88
+ - nyc-theater-discounts
88
89
  extensions: []
89
90
  extra_rdoc_files: []
90
91
  files:
@@ -95,7 +96,7 @@ files:
95
96
  - README.md
96
97
  - Rakefile
97
98
  - bin/console
98
- - bin/nyc_theater_discounts
99
+ - bin/nyc-theater-discounts
99
100
  - bin/setup
100
101
  - config/environment.rb
101
102
  - lib/nyc_theater_discounts.rb
@@ -104,6 +105,7 @@ files:
104
105
  - lib/nyc_theater_discounts/show.rb
105
106
  - lib/nyc_theater_discounts/vendor.rb
106
107
  - lib/nyc_theater_discounts/version.rb
108
+ - nyc-theater-discounts-0.1.0.gem
107
109
  - nyc-theater-discounts.gemspec
108
110
  homepage: https://github.com/kaileighrose/nyc-theater-discounts-cli-gem
109
111
  licenses:
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require_relative '../config/environment'
4
-
5
- NYCTheaterDiscounts::CLI.new.call