atx_live_music 0.1.1 → 0.1.2

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: b4a7d7c3d607d27c754bb044aa61a1795e84727a
4
- data.tar.gz: 0c583ac57af03d5d9b7585414b44504a08b0f487
3
+ metadata.gz: 7d74c00b1f0050f95a7d9aa2aa4cdad7a51ef071
4
+ data.tar.gz: 5f66d40b2e1c01777bf2f60fe0395eb028a2ee87
5
5
  SHA512:
6
- metadata.gz: a4824904e93146bfb21db4b6547d667c38467d7059f9045d480485c3eab2f400066d3fbe673268dac16db344d37b277d7b13359d849e9c7a397958f6c493ff07
7
- data.tar.gz: e831aad8302ed8fa300dcbe60fee41bf556354962468a17aaa0fdaadb4dd86a8b66fe6dc7cba2227b3e63ce834af85efc667cb33f9e10942a899b15047d55535
6
+ metadata.gz: 0cdee099808e9d3387c25b8bd6da15b87194aa0518cdb8d82c0a27de89390838242b347a60bbb6c3f326175a5da14285bd18976b29a5c2832a12236d39ace0c2
7
+ data.tar.gz: ff85b81a1fa6249791578c558aeb8bf678b0aec2f516a1742bd834ef1162c5b443d645550e65725d499b7ccee5d495f301e0a9eb59a20239bbd88c09844da670
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /pkg/
9
9
  /spec/reports/
10
10
  /tmp/
11
+ .gem
data/README.md CHANGED
@@ -3,9 +3,13 @@
3
3
  A CLI that lists live music events in Austin, TX for the next seven days. Content is scraped from Austin Chronicle website (http://www.austinchronicle.com/calendar/music/)
4
4
 
5
5
  ## Installation
6
+
7
+ You can install this gem via gem install atx_live_music.
6
8
 
7
9
  $ gem install atx_live_music
8
10
 
11
+ The atx_live_music CLI will be installed and you can run atx-live-music to get a list of movies playing now right in your command line.
12
+
9
13
  ## Usage
10
14
 
11
15
  Type the below and follow the on screen prompts.
Binary file
Binary file
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.version = AtxLiveMusic::VERSION
9
9
  spec.authors = ["wedesignstudios"]
10
10
  spec.email = ["deelden@gmail.com"]
11
- spec.date = '2016-06-03'
11
+ spec.date = '2016-06-05'
12
12
  spec.summary = "Live Music in Austin, Texas"
13
13
  spec.description = "Displays live music listings in Austin, Texas."
14
14
  spec.homepage = "https://github.com/wedesignstudios/atx-live-music"
@@ -30,7 +30,7 @@ class AtxLiveMusic::Shows
30
30
 
31
31
  def self.string_days
32
32
  string_days = []
33
- get_days.each {|day| string_days << day.strftime("%B%e")}
33
+ get_days.each {|day| string_days << day.strftime("%B %-e")}
34
34
  string_days
35
35
  end
36
36
 
@@ -1,3 +1,3 @@
1
1
  module AtxLiveMusic
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atx_live_music
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - wedesignstudios
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-03 00:00:00.000000000 Z
11
+ date: 2016-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -80,6 +80,8 @@ files:
80
80
  - NOTES.md
81
81
  - README.md
82
82
  - Rakefile
83
+ - atx_live_music-0.1.0.gem
84
+ - atx_live_music-0.1.1.gem
83
85
  - atx_live_music.gemspec
84
86
  - bin/atx-live-music
85
87
  - bin/console