free-art-exhibits-cli-gem 0.4.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ca0df573da09e5c48efc632a4561aec8ebefac9f
4
+ data.tar.gz: 653b7fe5e805f9401a49a172b219f5f86cfadcaa
5
+ SHA512:
6
+ metadata.gz: dcd2f39f17ac2ee72a12068f264dab07b1eb66c9ba42937275982f4a9ba2798ab65346f2adee12c23aa403841206d67fc4cb492d8c51eff35d230aca7315a894
7
+ data.tar.gz: e8a5f1d893c91203c74b783625ffdcc105646a3d724e86a61531dbe5dcbe9c559bece6cd2499631df1208531bdbc487e1411fa42d56766dcd577558c077b2926
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.0
5
+ before_install: gem install bundler -v 1.12.5
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in free_art_exhibits.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Prateek Vasireddy
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # FreeArtExhibits
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/free_art_exhibits`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'free_art_exhibits'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install free_art_exhibits
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/free_art_exhibits.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "free_art_exhibits"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require_relative '../lib/free_art_exhibits'
4
+
5
+ FreeArtExhibits::CLI.new.call
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ #set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'free_art_exhibits/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "free-art-exhibits-cli-gem"
8
+ spec.version = FreeArtExhibits::VERSION
9
+ spec.authors = ["Prateek Vasireddy"]
10
+ spec.email = ["prat.vasireddy@gmail.com"]
11
+
12
+ spec.summary = %q{Exhibits NYC.}
13
+ spec.description = %q{Free art exhibits in NYC.}
14
+ spec.homepage = "http://rubygems.org/gems/free-art-exhibits-cli-gem"
15
+ spec.license = "MIT"
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = "bin"
18
+ spec.executables = ['free-art-exhibits']
19
+ spec.require_paths = ["lib", "lib/free_art_exhibits"]
20
+
21
+ #spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
22
+ #spec.bindir = "exe"
23
+ #spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
+ #spec.require_paths = ["lib"]
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.12"
27
+ spec.add_development_dependency "rake", "~> 10.0"
28
+ spec.add_development_dependency "rspec", "~> 3.0"
29
+ spec.add_development_dependency "nokogiri", ">= 0"
30
+ spec.add_development_dependency "pry", ">= 0"
31
+ end
@@ -0,0 +1,11 @@
1
+ require 'open-uri'
2
+ require 'pry'
3
+ require 'nokogiri'
4
+
5
+ require_relative "./free_art_exhibits/version"
6
+ require_relative "./free_art_exhibits/cli"
7
+ require_relative "./free_art_exhibits/exhibit"
8
+ require_relative "./free_art_exhibits/scraper"
9
+
10
+ module FreeArtExhibits
11
+ end
@@ -0,0 +1,60 @@
1
+ class FreeArtExhibits::CLI
2
+ def call
3
+ FreeArtExhibits::Scraper.new.make_exhibits
4
+ puts "Here are some free art exhibits according to Timeout New York"
5
+ start
6
+ end
7
+
8
+ def start
9
+ puts "What exhibit number range would you like to see? Please enter 1 for 1-5 or 6 for 6-10"
10
+ input = gets.strip.to_i
11
+ print_exhibits(input)
12
+
13
+ puts "Which number exhibit would you like more info on?"
14
+ input = gets.strip.to_i
15
+ exhibit = FreeArtExhibits::Exhibit.find(input)
16
+ print_exhibit(exhibit)
17
+ puts ""
18
+
19
+ puts "Would you like to see another exhibit? Enter Y or N"
20
+
21
+ input = gets.strip.downcase
22
+ if input == "y"
23
+ start
24
+ else
25
+ puts ""
26
+ puts "Thankyou! Have a great day!"
27
+ exit
28
+ end
29
+ end
30
+
31
+ def print_exhibit(exhibit)
32
+ puts ""
33
+ puts "----------- #{exhibit.title}"
34
+ puts ""
35
+ puts "Description: #{exhibit.description}"
36
+ puts ""
37
+ puts ""
38
+ puts "Website: #{exhibit.url}"
39
+ puts ""
40
+ puts ""
41
+ puts ""
42
+ puts ""
43
+ puts "Venue: #{exhibit.venue_name}"
44
+ puts ""
45
+ puts ""
46
+ puts "Address: #{exhibit.address}"
47
+ puts ""
48
+ puts ""
49
+ puts "Opening Hours: #{exhibit.opening_hours}"
50
+ end
51
+
52
+ def print_exhibits(from_number)
53
+ puts ""
54
+ puts "---------- Exhibits #{from_number} - #{from_number+4} ----------"
55
+ puts ""
56
+ FreeArtExhibits::Exhibit.all[from_number-1, 5].each.with_index(from_number) do |exhibit, index|
57
+ puts "#{index}. #{exhibit.title} - #{exhibit.url}"
58
+ end
59
+ end
60
+ end
@@ -0,0 +1,51 @@
1
+ require 'pry'
2
+
3
+ class FreeArtExhibits::Exhibit
4
+ attr_accessor :url,:title, :description
5
+ @@all = []
6
+
7
+ def self.new_from_index_page(exhibit)
8
+ self.new(
9
+ "http://www.timeout.com" + exhibit.css("a.read-more").attr("href").value + "#tab_panel_2",
10
+ exhibit.css("h3 a").text,
11
+ exhibit.css("p.feature_item__annotation--truncated").text
12
+ )
13
+ end
14
+
15
+ def initialize(url, title, description)
16
+ @url = url
17
+ @title = title
18
+ @description = description
19
+ @@all << self
20
+ end
21
+
22
+ def self.all
23
+ @@all
24
+ end
25
+
26
+ def self.find(id)
27
+ self.all[id-1]
28
+ end
29
+
30
+ def venue_name
31
+ self.details_page.css("td a").first.text
32
+ end
33
+
34
+ def opening_hours
35
+ self.details_page.css("tbody td").select do |cell|
36
+ cell.text if cell.text.include?("pm") || cell.text.include?("am")
37
+ end.first
38
+ end
39
+
40
+ def address
41
+ string = "\n"
42
+ self.details_page.css("tr td").select do |cell|
43
+ cell.text + string + cell.css("br").first.text if cell.text.include?("<br>")
44
+ end.first
45
+ end
46
+
47
+ def details_page
48
+ @details_page ||= Nokogiri::HTML(open(self.url))
49
+ end
50
+
51
+ end
@@ -0,0 +1,27 @@
1
+ require 'pry'
2
+ require 'nokogiri'
3
+ require 'open-uri'
4
+ #require_relative 'exhibit.rb'
5
+
6
+ class FreeArtExhibits::Scraper
7
+ def get_page
8
+ Nokogiri::HTML(open("http://www.timeout.com/newyork/art/the-best-free-art-exhibitions-in-nyc"))
9
+ end
10
+
11
+ def scrape_index_page
12
+ page = get_page.css("article.feature-item")
13
+ end
14
+
15
+ def make_exhibits
16
+ scrape_index_page.each do |exhibit|
17
+ e = FreeArtExhibits::Exhibit.new_from_index_page(exhibit)
18
+ end
19
+ end
20
+
21
+ #First, iterate through the #scrape_index_page method
22
+ #link for venue details: "http://www.timeout.com" + card.css("a.read-more").attr("href").value + "#tab_panel_2"
23
+ #title and subtitle: card.css("h3 a").text
24
+ #description: card.css("p.feature_item__annotation--truncated")
25
+ end
26
+
27
+ #Scraper.new.make_exhibits
@@ -0,0 +1,3 @@
1
+ module FreeArtExhibits
2
+ VERSION = "0.4.0"
3
+ end
@@ -0,0 +1,182 @@
1
+ => #(Element:0x13ca590 {
2
+ name = "article",
3
+ attributes = [ #(Attr:0x13ca48c { name = "class", value = "feature-item category_3 no_count " })],
4
+ children = [
5
+ #(Text "\n "),
6
+ #(Element:0x13c5d38 {
7
+ name = "div",
8
+ attributes = [ #(Attr:0x13c5c98 { name = "class", value = "feature-item__content" })],
9
+ children = [
10
+ #(Text "\n \n \n "),
11
+ #(Element:0x13c5270 {
12
+ name = "div",
13
+ attributes = [ #(Attr:0x13c5180 { name = "class", value = "row" })],
14
+ children = [
15
+ #(Text "\n\n "),
16
+ #(Element:0x13c4820 {
17
+ name = "div",
18
+ attributes = [
19
+ #(Attr:0x13c4794 {
20
+ name = "class",
21
+ value = "feature-item__column feature-item__column--image"
22
+ })],
23
+ children = [
24
+ #(Text "\n "),
25
+ #(Element:0x13c4014 {
26
+ name = "div",
27
+ attributes = [
28
+ #(Attr:0x13c3f88 { name = "class", value = "feature-item__wrapper" })],
29
+ children = [
30
+ #(Text "\n "),
31
+ #(Element:0x13c38e4 {
32
+ name = "a",
33
+ attributes = [
34
+ #(Attr:0x13c3844 {
35
+ name = "href",
36
+ value = "/newyork/art/blake-rayne-these-pellets-here-this-powder-there"
37
+ }),
38
+ #(Attr:0x13c381c { name = "target", value = "_self" })],
39
+ children = [
40
+ #(Text "\n "),
41
+ #(Element:0x13c2ee4 {
42
+ name = "div",
43
+ attributes = [
44
+ #(Attr:0x13c2e6c {
45
+ name = "class",
46
+ value = "image_wrapper aspect-ratio-4-3"
47
+ })],
48
+ children = [
49
+ #(Text "\n "),
50
+ #(Element:0x13c27f0 {
51
+ name = "div",
52
+ attributes = [
53
+ #(Attr:0x13c26c4 { name = "class", value = "delayed-image-load" }),
54
+ #(Attr:0x13c26b0 {
55
+ name = "data-class",
56
+ value = "imager tile__image"
57
+ }),
58
+ #(Attr:0x13c269c {
59
+ name = "data-imagesrc",
60
+ value = "https://media.timeout.com/images/103348075/{width}/{height}/image.jpg"
61
+ }),
62
+ #(Attr:0x13c2688 {
63
+ name = "data-title",
64
+ value = "Blake Rayne, “These Pellets Here This Powder There”"
65
+ }),
66
+ #(Attr:0x13c2660 {
67
+ name = "data-alt",
68
+ value = "Blake Rayne, “These Pellets Here This Powder There”"
69
+ })],
70
+ children = [
71
+ #(Text "\n "),
72
+ #(Element:0x13bf1cc {
73
+ name = "noscript",
74
+ children = [
75
+ #(Text "\n "),
76
+ #(Element:0x13bee34 {
77
+ name = "img",
78
+ attributes = [
79
+ #(Attr:0x13beda8 {
80
+ name = "src",
81
+ value = "https://media.timeout.com/images/103348075/image.jpg"
82
+ }),
83
+ #(Attr:0x13bed94 {
84
+ name = "alt",
85
+ value = "Blake Rayne, “These Pellets Here This Powder There”"
86
+ }),
87
+ #(Attr:0x13bed80 {
88
+ name = "title",
89
+ value = "Blake Rayne, “These Pellets Here This Powder There”"
90
+ })]
91
+ }),
92
+ #(Text "\n ")]
93
+ }),
94
+ #(Text "\n ")]
95
+ }),
96
+ #(Text "\n ")]
97
+ }),
98
+ #(Text "\n ")]
99
+ }),
100
+ #(Text "\n ")]
101
+ }),
102
+ #(Text "\n ")]
103
+ }),
104
+ #(Text "\n \n "),
105
+ #(Element:0x13bd2f0 {
106
+ name = "div",
107
+ attributes = [ #(Attr:0x13bd250 { name = "class", value = "feature-item__column" })],
108
+ children = [
109
+ #(Text "\n "),
110
+ #(Element:0x13bcaf8 {
111
+ name = "h3",
112
+ children = [
113
+ #(Text "\n "),
114
+ #(Element:0x13bc79c {
115
+ name = "a",
116
+ attributes = [
117
+ #(Attr:0x13bc6c0 {
118
+ name = "data-tracking",
119
+ value = "{\"eventInfo\":{\"eventName\":\"feature sections (zones) clicks\",\"eventAction\":\"feature_sections_(zones)\",\"type\":\"custom\"},\"attributes\":{\"contentName\":\"Blake Rayne, \\u201cThese Pellets Here This Powder There\\u201d\",\"contentType\":\"event\",\"contentID\":\"Content-Event-1487721\",\"contentPrimaryCategory\":\"art (category)\",\"subCategory1\":\"contemporary art\",\"contentIsSponsored\":false,\"contentPosition\":\"Best free art exhibitions in NYC\"}}"
120
+ }),
121
+ #(Attr:0x13bc698 {
122
+ name = "href",
123
+ value = "/newyork/art/blake-rayne-these-pellets-here-this-powder-there"
124
+ }),
125
+ #(Attr:0x13bc684 { name = "target", value = "_self" })],
126
+ children = [ #(Text "Blake Rayne, “These Pellets Here This Powder There”")]
127
+ }),
128
+ #(Text "\n ")]
129
+ }),
130
+ #(Text "\n \n \n \n "),
131
+ #(Element:0x13b93a8 {
132
+ name = "p",
133
+ attributes = [
134
+ #(Attr:0x13b92f4 {
135
+ name = "class",
136
+ value = "feature_item__annotation--truncated"
137
+ })],
138
+ children = [
139
+ #(Text "\n Blake Rayne’s show ranges across a variety of mediums and processes in its quest for the continued utility of painting as a discipline. A low-key challenge to art’s ingrained expectations around representation and reflection, the work here is connected in ways that are sometimes hermetic and sometimes playful.\n ")]
140
+ }),
141
+ #(Text "\n \n \t\t\t \t\t\t\t"),
142
+ #(Element:0x13b8ac0 {
143
+ name = "a",
144
+ attributes = [
145
+ #(Attr:0x13b89bc {
146
+ name = "href",
147
+ value = "/newyork/art/blake-rayne-these-pellets-here-this-powder-there"
148
+ }),
149
+ #(Attr:0x13b89a8 { name = "class", value = "read-more" }),
150
+ #(Attr:0x13b8958 { name = "target", value = "_self" })],
151
+ children = [ #(Text "Read more")]
152
+ }),
153
+ #(Text "\n \t\t\t \t ")]
154
+ }),
155
+ #(Text "\n ")]
156
+ }),
157
+ #(Text "\n ")]
158
+ }),
159
+ #(Text "\n "),
160
+ #(Element:0x13b4fc4 {
161
+ name = "div",
162
+ attributes = [ #(Attr:0x13b4f24 { name = "class", value = "listing_meta_controls" })],
163
+ children = [
164
+ #(Element:0x13b4844 {
165
+ name = "div",
166
+ attributes = [ #(Attr:0x13b47cc { name = "class", value = "listings_flags_bar" })],
167
+ children = [
168
+ #(Element:0x13b427c {
169
+ name = "div",
170
+ attributes = [ #(Attr:0x13b4218 { name = "class", value = "listings_flags" })],
171
+ children = [
172
+ #(Element:0x13b3d40 {
173
+ name = "span",
174
+ attributes = [
175
+ #(Attr:0x13b3c78 { name = "class", value = "listings_flag icon icon_calendar" })],
176
+ children = [ #(Text "\n Until Sun Jun 19\n")]
177
+ })]
178
+ })]
179
+ })]
180
+ }),
181
+ #(Text " ")]
182
+ })
metadata ADDED
@@ -0,0 +1,132 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: free-art-exhibits-cli-gem
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.0
5
+ platform: ruby
6
+ authors:
7
+ - Prateek Vasireddy
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-06-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.12'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: nokogiri
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: Free art exhibits in NYC.
84
+ email:
85
+ - prat.vasireddy@gmail.com
86
+ executables:
87
+ - free-art-exhibits
88
+ extensions: []
89
+ extra_rdoc_files: []
90
+ files:
91
+ - ".gitignore"
92
+ - ".travis.yml"
93
+ - Gemfile
94
+ - LICENSE.txt
95
+ - README.md
96
+ - Rakefile
97
+ - bin/console
98
+ - bin/free-art-exhibits
99
+ - bin/setup
100
+ - free_art_exhibits.gemspec
101
+ - lib/free_art_exhibits.rb
102
+ - lib/free_art_exhibits/cli.rb
103
+ - lib/free_art_exhibits/exhibit.rb
104
+ - lib/free_art_exhibits/scraper.rb
105
+ - lib/free_art_exhibits/version.rb
106
+ - s("h3 a").tex
107
+ homepage: http://rubygems.org/gems/free-art-exhibits-cli-gem
108
+ licenses:
109
+ - MIT
110
+ metadata: {}
111
+ post_install_message:
112
+ rdoc_options: []
113
+ require_paths:
114
+ - lib
115
+ - lib/free_art_exhibits
116
+ required_ruby_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ required_rubygems_version: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ requirements: []
127
+ rubyforge_project:
128
+ rubygems_version: 2.5.1
129
+ signing_key:
130
+ specification_version: 4
131
+ summary: Exhibits NYC.
132
+ test_files: []