girls_stem_camps 0.3.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: 314edacd7a000fa28a7b428d643ce28a4591092f
4
+ data.tar.gz: a872cc492dfd678e535cbcd6611df37539c86b05
5
+ SHA512:
6
+ metadata.gz: 77f73003563f12e669e91110d7d77581dedee254f991a2bae9e54249b1c1c2bf222c580516a7a6a19936d52793108d22c4db022a21f30ea3a777c048b44c21c7
7
+ data.tar.gz: 996b288e07d3b5e455dee84c1c8d7421223512a395a7a0e835af113ed341ba99a50557da9610ae175e2c9f7c6af161c1b55303eb6c2bc081c4e7600c0a8bc1fb
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/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
4
+ before_install: gem install bundler -v 1.10.6
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in girls_stem_camps.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 jmheyd
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
+ # GirlsStemCamps
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/girls_stem_camps`. 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 'girls_stem_camps'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install girls_stem_camps
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]/girls_stem_camps. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
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 "girls_stem_camps"
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,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "girls_stem_camps"
5
+
6
+ GirlsStemCamps::CLI.new.call
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,36 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'girls_stem_camps/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "girls_stem_camps"
8
+ spec.version = GirlsStemCamps::VERSION
9
+ spec.authors = ["jmheyd"]
10
+ spec.email = ["heydjm@comcast.net"]
11
+
12
+ spec.summary = %q{List some summer STEM camps for high school girls.}
13
+ spec.description = %q{User can get more information regarding price and dates.}
14
+ spec.homepage = "https://github.com/jmheyd/girls-stem-camps-cli-gem"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
18
+ # delete this section to allow pushing this gem to any host.
19
+ #if spec.respond_to?(:metadata)
20
+ # spec.metadata['allowed_push_host'] = "https://rubygems.org"
21
+ #else
22
+ # raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
23
+ #end
24
+
25
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ spec.add_development_dependency "bundler", "~> 1.10"
31
+ spec.add_development_dependency "rake", "~> 10.0"
32
+ spec.add_development_dependency 'rspec', '~> 0'
33
+ spec.add_development_dependency 'pry', '~> 0'
34
+
35
+ spec.add_dependency 'nokogiri', '~> 0'
36
+ end
@@ -0,0 +1,115 @@
1
+ class GirlsStemCamps::Camp
2
+ attr_accessor :name, :date, :price, :location, :description, :url
3
+
4
+ def self.get_camps
5
+ #scrape and return camps
6
+ camps = []
7
+ camps << self.scrape_stmarys
8
+ camps << self.scrape_nebraska
9
+ camps << self.scrape_minnesota
10
+ camps << self.scrape_power
11
+ camps << self.scrape_curie
12
+ camps << self.scrape_michigan_engineering
13
+ camps << self.scrape_michigan_computersci
14
+ #scraping from each website??
15
+ #need to require nokogirl and open-uri
16
+ camps
17
+ end
18
+
19
+ def self.scrape_stmarys
20
+ doc = Nokogiri::HTML(open("http://events.saintmarys.edu/s/1611/index.aspx?sid=1611&gid=6&pgid=831"))
21
+ camp = self.new
22
+ #camp.name = doc.search("div.snippetrow h1").text
23
+ #binding.pry
24
+ camp.name = doc.search("p strong")[2].text
25
+ camp.date = doc.search("h2").last.text.gsub("Forensic Science Camp", "")
26
+ camp.price = doc.search("p strong")[3].text
27
+ camp.location = doc.search("div#ContentFooter p").text.gsub("\r\n", " ").gsub("46556 1-574-284-4000", "")
28
+ #camp.location = doc.search("div.snippetrow strong")[8].text.gsub("Saint Mary's Summer Camps", "").strip
29
+ camp.description = doc.search("div.split50left p")[5].text
30
+ camp.url = "http://events.saintmarys.edu/s/1611/index.aspx?sid=1611&gid=6&pgid=831"
31
+ camp
32
+ end
33
+
34
+ def self.scrape_nebraska
35
+ doc = Nokogiri::HTML(open("http://www.math.unl.edu/programs/agam"))
36
+ camp = self.new
37
+ camp.name = doc.search("span.wdn-promo-text").text
38
+ camp.date = doc.search("div.wdn-col-full p:nth-child(7)").text.gsub("Summer 2016 Information: We will hold two one-week camps on ", "").gsub(". Campers must provide their own transportation to and from Lincoln, Nebraska, as well as transportation to and from the Lincoln Airport (LNK) to the UNL campus; however, our camp coordinators will assist with arranging transportation to and from the airport to the dorm.A limited number of additional scholarships for registration or travel support are available. Participants who need such a scholarship will be asked to explain their financial need situation in the online AGAM application.", "")
39
+ camp.price = doc.search("div.wdn-col-full p:nth-child(4)").text.gsub("For students who do not live in Nebraska, “out-state,” AGAM has a voluntary two-tiered pricing system, allowing out-state families to choose the price that works best for them. Naming your price requires no paperwork and in no way influences the experience your child will receive at camp. There are two tiers: ","").gsub(". The true per-student cost for the camp, including the cost of providing instruction, housing, meals, and social activities, is a bit more than $1,000. Due to the generosity of our sponsors, this cost is cut in half for all campers. Price A is the cost of the camp that is not already covered by grant support. Price B is a partially subsidized rate for families that could use a little help. On the online application, your family will select one of these two pricing tiers. Simply choose the rate that is appropriate for your family.","")
40
+ camp.location = doc.search("span#wdn_institution_title").text
41
+ camp.description = doc.search("div.wdn-col-full p:nth-child(2)").text
42
+ camp.url = "http://www.math.unl.edu/programs/agam"
43
+ camp
44
+ end
45
+
46
+ def self.scrape_minnesota
47
+ doc = Nokogiri::HTML(open("https://cse.umn.edu/r/discover-stem/"))
48
+ camp = self.new
49
+ camp.name = doc.search("h1.single-title").text
50
+ camp.date = doc.search("strong")[1].text
51
+ camp.price = doc.search("p.p1")[2].text.gsub("Thanks to the generosity of 3M and an anonymous private donor, we are able to offer Discover STEM to admitted students for only a ", "").gsub(" enrollment fee, and full scholarships are available upon request to admitted students demonstrating financial need. The enrollment fee will only be collected from students upon admittance into Discover STEM (see “Admissions timeline” below for details).", "")
52
+ camp.location = doc.search("strong")[2].text.gsub("9 a.m.–4 p.m.\n", "")
53
+ camp.description = doc.search("p.p1")[0].text
54
+ camp.url = "https://cse.umn.edu/r/discover-stem/"
55
+ camp
56
+ end
57
+
58
+ def self.scrape_power
59
+ doc = Nokogiri::HTML(open("http://www.engr.iupui.edu/infofor/community/summer-camps/power-camp.php"))
60
+ #binding.pry
61
+ camp = self.new
62
+ camp.name = doc.search("p strong")[3].text.strip.gsub(" - July 17 - 23, 2016", "").gsub("2016 ", "")
63
+ camp.date = doc.search("p strong")[3].text.strip.gsub("2016 POWER SUMMER CAMP - ", "")
64
+ camp.price = doc.search("p:nth-child(8)").text.gsub("Cost:  ", "")
65
+ camp.location = doc.search("span.show-on-desktop").text
66
+ camp.description = doc.search("div p")[5].text
67
+ #doc.search("p:nth-child(6)").text
68
+ camp.url = "http://www.engr.iupui.edu/infofor/community/summer-camps/power-camp.php"
69
+ camp
70
+ end
71
+
72
+ def self.scrape_curie
73
+ doc = Nokogiri::HTML(open("http://cornellcurie.weebly.com/"))
74
+ #binding.pry
75
+ camp = self.new
76
+ camp.name = doc.search("div.paragraph strong")[0].text
77
+ camp.date = doc.search("h2.wsite-content-title")[0].text
78
+ camp.price = doc.search("td.wsite-multicol-col div.paragraph span")[18].text.gsub("*","")
79
+ camp.location = doc.search("div.paragraph font strong")[1].text.gsub("The CURIE Academy  |  Diversity Programs in Engineering  146 Olin Hall, ", "").gsub(" |  Ithaca, NY 14853", "")
80
+ doc2 = Nokogiri::HTML(open("http://cornellcurie.weebly.com/schedule.html"))
81
+ #binding.pry
82
+ camp.description = doc2.search("div.paragraph span font").text
83
+ camp.url = "http://cornellcurie.weebly.com/"
84
+ camp
85
+ end
86
+
87
+ def self.scrape_michigan_engineering
88
+ doc = Nokogiri::HTML(open("http://www.syp.mtu.edu/courses-scholarship.php#Women_in_Engineering"))
89
+ #binding.pry
90
+ camp = self.new
91
+ camp.name = doc.search("span strong a")[1].text
92
+ doc2 = Nokogiri::HTML(open("http://www.syp.mtu.edu/tuition-dates-important.php"))
93
+ #binding.pry
94
+ camp.date = doc2.search("li span")[7].text.gsub("\r\n\t\t\t\t\t\t\t\t\t\t\tWIE: ", "")
95
+ camp.price = doc.search("table p span")[14].text.gsub("\n\t\t\t\t\t\t\t\t\t\tThis program is a highly competitive \n\t\t\t\t\t\t\t\t\t\tscholarship program that provides a \n\t\t\t\t\t\t\t\t\t\tchance for women to investigate careers \n\t\t\t\t\t\t\t\t\t\tin engineering and science. You will \n\t\t\t\t\t\t\t\t\t\tparticipate in engineering sessions, \n\t\t\t\t\t\t\t\t\t\tgroup projects, and special topic \n\t\t\t\t\t\t\t\t\t\tpresentations with a diverse group of \n\t\t\t\t\t\t\t\t\t\tpeers from all over the country and \n\t\t\t\t\t\t\t\t\t\taround the world.You can request \n\t\t\t\t\t\t\t\t\t\tto talk with university faculty from \n\t\t\t\t\t\t\t\t\t\tareas that you're interested in, as well \n\t\t\t\t\t\t\t\t\t\tas staff from admissions and financial \n\t\t\t\t\t\t\t\t\t\taid.WIE requires a\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tseparate application. Accepted \n\t\t\t\t\t\t\t\t\t\tstudents receive a scholarship valued at \n\t\t\t\t\t\t\t\t\t\tover $1,000 that covers tuition, room \n\t\t\t\t\t\t\t\t\t\tand board, and supplies. A nonrefundable \n\t\t\t\t\t\t\t\t\t\t","").gsub(" registration fee is due within ten \n\t\t\t\t\t\t\t\t\t\tdays of being accepted into the program. \n\t\t\t\t\t\t\t\t\t\tStudents are responsible for their own \n\t\t\t\t\t\t\t\t\t\ttravel expenses and spending money for \n\t\t\t\t\t\t\t\t\t\tthe week. WIE scholarship funding is \n\t\t\t\t\t\t\t\t\t\tprovided by corporations, organizations, \n\t\t\t\t\t\t\t\t\t\tand Michigan Tech.","")
96
+ camp.location = doc.search("table p span strong")[17].text.gsub(" Summer Youth Programs", "")
97
+ camp.description = doc.search("table p span")[11].text.gsub("\n\t\t\t\t\t\t\t\t\t\t", "")
98
+ camp.url = "http://www.syp.mtu.edu/courses-scholarship.php#Women_in_Engineering"
99
+ camp
100
+ end
101
+
102
+ def self.scrape_michigan_computersci
103
+ doc = Nokogiri::HTML(open("http://www.syp.mtu.edu/courses-scholarship.php#Women_in_Computer_Science"))
104
+ #binding.pry
105
+ camp = self.new
106
+ camp.name = doc.search("span a")[4].text.gsub("\n\t\t\t\t\t\t\t\t\t\t\t", "")
107
+ camp.date = doc.search("tr td p span")[32].text.gsub("\n\t\t\t\t\t\t\t\t\t\tDates for Women in Computer Science 2016 \n\t\t\t\t\t\t\t\t\t\tare ", "")
108
+ camp.price = doc.search("tr td p span")[30].text.gsub("\n\t\t\t\t\t\t\t\t\t\t", "").gsub("Cost: ", "")
109
+ camp.location = doc.search("table p span strong")[17].text.gsub(" Summer Youth Programs", "")
110
+ camp.description = doc.search("tr td p span")[29].text.gsub("\n\t\t\t\t\t\t\t\t\t\t", "")
111
+ camp.url = "http://www.syp.mtu.edu/courses-scholarship.php#Women_in_Computer_Science"
112
+ camp
113
+
114
+ end
115
+ end
@@ -0,0 +1,53 @@
1
+ class GirlsStemCamps::CLI
2
+ def call
3
+ puts "Welcome to the 2016 listing of summer STEM camps for high school girls"
4
+ list_camps
5
+ menu
6
+ goodbye
7
+ end
8
+
9
+ def list_camps
10
+ #get the camps and list by number
11
+ @camps = GirlsStemCamps::Camp.get_camps
12
+ @camps.each_with_index do |camp, i|
13
+ puts "#{i+1}. #{camp.name} at #{camp.location}"
14
+ end
15
+ end
16
+
17
+ def menu
18
+ input = nil
19
+ while input != "exit"
20
+ puts "Enter the number of the camp that you would like more information about"
21
+ input = gets.strip.downcase
22
+ if input.to_i.between?(1, @camps.size)
23
+ puts @camps[input.to_i - 1].name
24
+ puts " "
25
+ puts "Camp Price:"
26
+ puts @camps[input.to_i - 1].price
27
+ puts " "
28
+ puts "Camp Dates:"
29
+ puts @camps[input.to_i - 1].date
30
+ puts " "
31
+ puts "Camp Description:"
32
+ puts @camps[input.to_i - 1].description
33
+ puts " "
34
+ puts "Camp Website:"
35
+ puts @camps[input.to_i - 1].url
36
+ puts " "
37
+ elsif input == "list"
38
+ list_camps
39
+ else puts "Please enter exit, list, or a number"
40
+ end
41
+ end
42
+ end
43
+
44
+ def goodbye
45
+ puts "Goodbye!"
46
+ end
47
+
48
+
49
+
50
+
51
+
52
+
53
+ end
@@ -0,0 +1,3 @@
1
+ module GirlsStemCamps
2
+ VERSION = "0.3.0"
3
+ end
@@ -0,0 +1,10 @@
1
+ require "open-uri"
2
+ require 'nokogiri'
3
+ require 'pry'
4
+
5
+ require_relative "./girls_stem_camps/version"
6
+ require_relative "./girls_stem_camps/cli"
7
+ require_relative "./girls_stem_camps/camp"
8
+
9
+
10
+
metadata ADDED
@@ -0,0 +1,130 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: girls_stem_camps
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.0
5
+ platform: ruby
6
+ authors:
7
+ - jmheyd
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-03-16 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.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
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: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
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: nokogiri
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: User can get more information regarding price and dates.
84
+ email:
85
+ - heydjm@comcast.net
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".rspec"
92
+ - ".travis.yml"
93
+ - CODE_OF_CONDUCT.md
94
+ - Gemfile
95
+ - LICENSE.txt
96
+ - README.md
97
+ - Rakefile
98
+ - bin/console
99
+ - bin/girls-stem-camps
100
+ - bin/setup
101
+ - girls_stem_camps.gemspec
102
+ - lib/girls_stem_camps.rb
103
+ - lib/girls_stem_camps/camp.rb
104
+ - lib/girls_stem_camps/cli.rb
105
+ - lib/girls_stem_camps/version.rb
106
+ homepage: https://github.com/jmheyd/girls-stem-camps-cli-gem
107
+ licenses:
108
+ - MIT
109
+ metadata: {}
110
+ post_install_message:
111
+ rdoc_options: []
112
+ require_paths:
113
+ - lib
114
+ required_ruby_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ required_rubygems_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ requirements: []
125
+ rubyforge_project:
126
+ rubygems_version: 2.4.5.1
127
+ signing_key:
128
+ specification_version: 4
129
+ summary: List some summer STEM camps for high school girls.
130
+ test_files: []