quote_box 0.1.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: 1b4f276e183676701e6a2e7004001c244adce2c6
4
+ data.tar.gz: ecbb569c04b38e801d038a7444bef81819390c5d
5
+ SHA512:
6
+ metadata.gz: 3ce2c46bdd9743fd26ed602f391c5b21569098edbefe9bb97b7799e5269d613b93523473fb4dd818b7b8590626b9bb4a8e5125737619e2dec3d6c18b96f1e481
7
+ data.tar.gz: 622c5dd0bdaa5747ba6fa4c67cc3ebe5df196d1014e44a8cf11f8ae23448e67f88524f960029d5b7d4cfef7d76149bdd4fd4495c637713117974a6ceea972ee2
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.0.0
5
+ before_install: gem install bundler -v 1.15.3
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at TODO: Write your email address. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in book_box.gemspec
6
+
7
+ gemspec
8
+ gem 'nokogiri'
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 TODO: Write your name
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
+ # QuoteBox
2
+
3
+ Quote Box is a gem used to Fetch Quotes from the good Read website and display them, it also has a command line interface aswell.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'quote_box'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install quote_box
20
+
21
+ ## Usage
22
+ https://www.youtube.com/watch?v=2zV0mEUE8DY&t=7s
23
+
24
+
25
+ ## Development
26
+
27
+ 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.
28
+
29
+ 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).
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/quote_box. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
34
+
35
+ ## License
36
+
37
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
38
+
39
+ ## Code of Conduct
40
+
41
+ Everyone interacting in the QuoteBox project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/quote_box/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ require 'nokogiri'
5
+ RSpec::Core::RakeTask.new(:spec)
6
+
7
+ task :default => :spec
8
+
9
+ task :console do
10
+ puts "loaded environment"
11
+ system("irb -r ./lib/quote_box.rb")
12
+ end
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require_relative "../lib/quote_box"
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(__FILE__)
data/bin/lets-read ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "quote_box"
5
+
6
+ Cli.new.start
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
data/lib/quote_box.rb ADDED
@@ -0,0 +1,11 @@
1
+ require_relative "quote_box/version"
2
+ require_relative "quote_box/cli.rb"
3
+ require_relative "quote_box/quote.rb"
4
+ require_relative "quote_box/author.rb"
5
+ require_relative "quote_box/scrape.rb"
6
+ require 'nokogiri'
7
+ require 'open-uri'
8
+
9
+ module QuoteBox
10
+ # Your code goes here...
11
+ end
@@ -0,0 +1,30 @@
1
+ class Author
2
+ attr_accessor :name,:dob,:bio,:rating
3
+
4
+
5
+
6
+ def initialize(name=nil,dob=nil,bio=nil,rating=nil)
7
+ @name=name
8
+ @dob= dob
9
+
10
+
11
+
12
+ @bio=bio
13
+ @rating=rating
14
+ end
15
+
16
+ def self.create_by_link(link)
17
+ Scrapper.scrape_author(link)
18
+
19
+ end
20
+
21
+ def display
22
+ puts "Name: #{self.name}"
23
+ puts "Born on: #{self.dob.strip}"
24
+ puts "Bio: #{self.bio}"
25
+ puts "Rating out of 5: #{self.rating}"
26
+
27
+ end
28
+
29
+ end
30
+
@@ -0,0 +1,132 @@
1
+ class Cli
2
+ def start
3
+ puts "~~~~~~~~~~~~~~~~~~~~~~"
4
+ puts "Hello,how are you today?"
5
+ puts "~~~~~~~~~~~~~~~~~~~~~~"
6
+ self.class.interact
7
+ end
8
+
9
+
10
+
11
+
12
+
13
+
14
+ private
15
+
16
+ def self.interact
17
+ selection= nil
18
+ while selection!= "bye"
19
+ Scrapper.curr_pg=1
20
+
21
+ puts "\nEnter a 'keyword' to search qoutes for"
22
+ puts "\nEnter 'popular' to view popular qoutes "
23
+ puts "\n ^^ OR ^^ "
24
+ puts "\nTYPE bye to exit ;-;"
25
+ selection= gets.strip.downcase
26
+
27
+ case selection
28
+ when "popular"
29
+ popular_interface
30
+ when "bye"
31
+ puts "comeback soon! (^-^)"
32
+ when "keyword"
33
+ keyword_interface
34
+ else
35
+ puts "I don't understand (@ - @) "
36
+
37
+ end
38
+ end
39
+
40
+ end
41
+
42
+
43
+
44
+ def self.display_list(list)
45
+ list.each_with_index do |item,index|
46
+ puts "\n#{index+1})"
47
+ puts "\n#{item.content}"
48
+
49
+ end
50
+
51
+ end
52
+
53
+ def self.respond(input,list)
54
+ input=input.to_i==0? input : input.to_i
55
+ case input
56
+ when 1..list.length
57
+ list[input-1].display
58
+ what_now?(list[input-1])
59
+ when "more"
60
+ Scrapper.curr_pg+=1
61
+ self.popular_interface
62
+ else
63
+ puts "I don't understand (@ - @) "
64
+ end
65
+
66
+ end
67
+
68
+
69
+ def self.what_now?(quobj)
70
+ puts "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
71
+ puts "\nEnter 'author' to know more about the author"
72
+ puts "\nOr"
73
+ puts "\nPress enter to reload all the quotes"
74
+ puts "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
75
+
76
+ ans=gets.strip.downcase
77
+ if ans=="author"
78
+ quobj.author=Author.create_by_link(quobj.author_link)
79
+ quobj.author.display
80
+ puts "\nPress enter to continue"
81
+ gets.strip
82
+
83
+ else
84
+
85
+ end
86
+
87
+ end
88
+
89
+
90
+
91
+
92
+ def self.popular_interface
93
+ list=Scrapper.scrape_popular_list
94
+ loop do
95
+
96
+ display_list(list)
97
+ puts "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
98
+ puts " I N S T R U C T I O N S "
99
+ puts "\nEnter the place number of the qoute positioned in the list, that you want to know more about"
100
+ puts "\nEnter 'more' to view more popular quotes"
101
+ puts "\nEnter done to stop viewing qoutes, if you're done for the day or go back to the previous menu"
102
+ puts "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
103
+ option=gets.strip.downcase
104
+ break if option=="done"
105
+ respond(option,list)
106
+
107
+ end
108
+ end
109
+
110
+
111
+ def self.keyword_interface
112
+ puts "\nEnter the word you'd like to search qoutes relating to"
113
+ keyword=gets.strip.downcase
114
+ list=Scrapper.scrape_keywords_list(keyword)
115
+ loop do
116
+
117
+ display_list(list)
118
+ puts "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
119
+ puts " I N S T R U C T I O N S "
120
+ puts "\nEnter the place number of the qoute positioned in the list, that you want to know more about"
121
+ puts "\nEnter 'more' to view more popular quotes"
122
+ puts "\nEnter done to stop viewing qoutes, if you're done for the day or go back to the previous menu"
123
+ puts "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
124
+ option=gets.strip.downcase
125
+ break if option=="done"
126
+ respond(option,list)
127
+
128
+ end
129
+ end
130
+
131
+
132
+ end
@@ -0,0 +1,23 @@
1
+
2
+ class Quote
3
+ attr_accessor :content,:likes,:scripture_it_belongs_to,:author, :author_link,:author_name
4
+
5
+ @@curr_pg=1
6
+
7
+ def initialize(cont,likes,book,author_name,author=nil)
8
+ @content=cont
9
+ @likes=likes
10
+ @author_name=author_name
11
+ @scripture_it_belongs_to=book
12
+ @author=author
13
+
14
+ end
15
+
16
+ def display
17
+ puts "\n#{self.content}"
18
+ puts "\n-#{self.author_name}#{self.scripture_it_belongs_to }"
19
+ puts "\nIt has #{self.likes}"
20
+ end
21
+
22
+
23
+ end
@@ -0,0 +1,86 @@
1
+ class Scrapper
2
+ @@curr_pg=1
3
+
4
+
5
+
6
+
7
+
8
+ def self.curr_pg
9
+ @@curr_pg
10
+ end
11
+
12
+ def self.curr_pg=(val)
13
+ @@curr_pg=val
14
+ end
15
+
16
+ def self.scrape_keywords_list(phrase)
17
+ page=Nokogiri::HTML(open(phrase_to_search_string(phrase)))
18
+ list=scrape_quote_lists_from_doc(page)
19
+ end
20
+
21
+
22
+
23
+
24
+ def self.scrape_popular_list
25
+ page=Nokogiri::HTML(open("https://www.goodreads.com/quotes?page=#{@@curr_pg}"))
26
+ list=scrape_quote_lists_from_doc(page)
27
+ end
28
+
29
+
30
+
31
+
32
+ def self.scrape_author(link)
33
+ page=Nokogiri::HTML(open("https://www.goodreads.com#{link}"))
34
+ Author.new(
35
+ page.css(".authorName span[itemprop='name']")[0].text,
36
+ page.css("div.dataItem[itemprop='birthDate']").text,
37
+ page.css("span[id^='freeTextauthor'][style^='display']").text,
38
+ page.css("span.average[itemprop='ratingValue']").text,
39
+ )
40
+ end
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+ private
55
+
56
+ def self.scrape_quote_lists_from_doc(doc)
57
+ quotes=[]
58
+ quote_list=doc.css("div.quoteDetails")
59
+ quote_list.each do |quote|
60
+
61
+ q=Quote.new(
62
+ quote.css(".quoteText").text.strip.split("\n")[0],
63
+ quote.css("a[title='View this quote']").text,
64
+ quote.css(".quoteText").text.strip.split("\n")[4],
65
+ quote.css(".quoteText").text.strip.split("\n")[2])
66
+ q.author_link= quote.css("a[href^='/author']")[0]['href']
67
+ quotes<<q
68
+ end
69
+ quotes
70
+ end
71
+
72
+
73
+ def self.phrase_to_search_string(phrase)
74
+ words=phrase.split(' ')
75
+ str=words.join('+')
76
+ search_string="https://www.goodreads.com/quotes/search?commit=Search&page=#{curr_pg}&q=#{str}"
77
+ end
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+ end
@@ -0,0 +1,3 @@
1
+ module QuoteBox
2
+ VERSION = "0.1.0"
3
+ end
data/quote_box.gemspec ADDED
@@ -0,0 +1,37 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "quote_box/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "quote_box"
8
+ spec.version = QuoteBox::VERSION
9
+
10
+ spec.authors = ["Haroon Azhar Khan Niazi"]
11
+ spec.email = ["haroon1azhar@gmail.com"]
12
+
13
+ spec.summary = "Retrives qoutes.Provides a cli interface to look for information"
14
+
15
+ spec.homepage = "https://github.com/HaroonAzhar/quote-box-cli-app"
16
+ spec.license = "MIT"
17
+
18
+
19
+
20
+
21
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
22
+ f.match(%r{^(test|spec|features)/})
23
+ end
24
+ spec.bindir = "exe"
25
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
+ spec.require_paths = ["lib"]
27
+
28
+ spec.add_development_dependency "bundler", "~> 1.15"
29
+ spec.add_development_dependency "rake", "~> 10.0"
30
+ spec.add_development_dependency "rspec", "~> 3.0"
31
+ spec.add_development_dependency "pry"
32
+
33
+ spec.add_dependency "nokogiri"
34
+
35
+
36
+
37
+ end
metadata ADDED
@@ -0,0 +1,132 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: quote_box
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Haroon Azhar Khan Niazi
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-08-30 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.15'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.15'
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: 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:
84
+ email:
85
+ - haroon1azhar@gmail.com
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/lets-read
100
+ - bin/setup
101
+ - lib/quote_box.rb
102
+ - lib/quote_box/author.rb
103
+ - lib/quote_box/cli.rb
104
+ - lib/quote_box/quote.rb
105
+ - lib/quote_box/scrape.rb
106
+ - lib/quote_box/version.rb
107
+ - quote_box.gemspec
108
+ homepage: https://github.com/HaroonAzhar/quote-box-cli-app
109
+ licenses:
110
+ - MIT
111
+ metadata: {}
112
+ post_install_message:
113
+ rdoc_options: []
114
+ require_paths:
115
+ - lib
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.0.14.1
129
+ signing_key:
130
+ specification_version: 4
131
+ summary: Retrives qoutes.Provides a cli interface to look for information
132
+ test_files: []