software_binder 0.1.1

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: c005f25c061860b3ca19a1ff66d3fa4d6e08132e
4
+ data.tar.gz: b76fe7916e7ca01e8f7cf16681e95728fcee4a53
5
+ SHA512:
6
+ metadata.gz: bdf6aff6446f2b02526888f57731d32e58ebcb5e3d6907c1ac852dde0b34328822a8386c1a80367bfd95b0c186d8518d84006a7d9d512eaab9ae1e28c15a4a72
7
+ data.tar.gz: 5f118c0d677b9e984dac14d539235359479f5bfa6d1425f6d379ec9c5ef597ea39be780098d71fabd7ca0e66dc8018d37013637cd89ecee2826c2044e4502bed
data/.gitignore ADDED
@@ -0,0 +1,13 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+
13
+ .DS_Store
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.2
5
+ before_install: gem install bundler -v 1.16.1
@@ -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 yl.hoony@gmail.com. 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,6 @@
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 software_binder.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,47 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ software_binder (0.1.1)
5
+ nokogiri (~> 1.8)
6
+ require_all
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ coderay (1.1.2)
12
+ diff-lcs (1.3)
13
+ method_source (0.9.0)
14
+ mini_portile2 (2.3.0)
15
+ nokogiri (1.8.1)
16
+ mini_portile2 (~> 2.3.0)
17
+ pry (0.11.3)
18
+ coderay (~> 1.1.0)
19
+ method_source (~> 0.9.0)
20
+ rake (10.5.0)
21
+ require_all (1.4.0)
22
+ rspec (3.7.0)
23
+ rspec-core (~> 3.7.0)
24
+ rspec-expectations (~> 3.7.0)
25
+ rspec-mocks (~> 3.7.0)
26
+ rspec-core (3.7.0)
27
+ rspec-support (~> 3.7.0)
28
+ rspec-expectations (3.7.0)
29
+ diff-lcs (>= 1.2.0, < 2.0)
30
+ rspec-support (~> 3.7.0)
31
+ rspec-mocks (3.7.0)
32
+ diff-lcs (>= 1.2.0, < 2.0)
33
+ rspec-support (~> 3.7.0)
34
+ rspec-support (3.7.0)
35
+
36
+ PLATFORMS
37
+ ruby
38
+
39
+ DEPENDENCIES
40
+ bundler (~> 1.16)
41
+ pry (~> 0.11)
42
+ rake (~> 10.0)
43
+ rspec (~> 3.0)
44
+ software_binder!
45
+
46
+ BUNDLED WITH
47
+ 1.16.1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Hoon Lee
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,43 @@
1
+ # SoftwareBinder
2
+
3
+ Software Binder is Ruby CLI program that you can search software categories and see the softwares on the market under the categories you selected.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'software_binder'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install software_binder
20
+
21
+ ## Usage
22
+
23
+ ```ruby
24
+ gem 'software_binder'
25
+ ```
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]/software_binder. 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.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
40
+
41
+ ## Code of Conduct
42
+
43
+ Everyone interacting in the SoftwareBinder project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ylhoony/software_binder/blob/master/CODE_OF_CONDUCT.md).
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,20 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "software_binder"
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
+
15
+ def reload!
16
+ load_all './lib'
17
+ puts "Reloaded!"
18
+ end
19
+
20
+ IRB.start(__FILE__)
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,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "software_binder"
5
+
6
+ SoftwareBinder::CLI.new.call
@@ -0,0 +1,39 @@
1
+ class SoftwareBinder::Category
2
+ attr_accessor :name, :slug
3
+
4
+ @@all = []
5
+
6
+ def initialize
7
+ self.save
8
+ end
9
+
10
+ def self.all
11
+ @@all
12
+ end
13
+
14
+ def self.reset
15
+ @@all.clear
16
+ end
17
+
18
+ def save
19
+ @@all << self
20
+ end
21
+
22
+ def self.find_by_keyword(keyword)
23
+ self.all.select do |category|
24
+ category.name.downcase.include?(keyword.downcase)
25
+ end
26
+ end
27
+
28
+ def self.find_by_alphabet(alphabet)
29
+ if alphabet === "#"
30
+ self.all.select do |category|
31
+ category.name.chr.to_i.between?(1,9) == true
32
+ end
33
+ else
34
+ self.all.select do |category|
35
+ category.name.downcase.chr == alphabet.downcase
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,87 @@
1
+ class SoftwareBinder::CLI
2
+
3
+ @@last_category_search = []
4
+
5
+ def call
6
+ puts "Welcome to Software Binder!"
7
+ load_categories
8
+ list_categories
9
+ list_softwares
10
+ reset?
11
+ end
12
+
13
+ def load_categories
14
+ self.class.last_category_search.clear
15
+ SoftwareBinder::Software.reset
16
+ SoftwareBinder::Category.reset
17
+ SoftwareBinder::Scraper.scrape_categories
18
+ end
19
+
20
+ def self.last_category_search
21
+ @@last_category_search
22
+ end
23
+
24
+ def list_categories
25
+ puts "Please enter any Keyword or Alphabet(or '#') to search software categories!"
26
+ puts "or enter 'exit' to quit."
27
+ input = gets.strip
28
+ exit if input == 'exit'
29
+ if input.length == 1
30
+ find_by_alphabet = SoftwareBinder::Category.find_by_alphabet(input)
31
+ if find_by_alphabet.size > 0
32
+ find_by_alphabet.each.with_index(1) do |category, i|
33
+ @@last_category_search << category
34
+ puts "#{i}. #{category.name}"
35
+ end
36
+ else
37
+ puts "There is no result for your search."
38
+ self.list_categories
39
+ end
40
+ else
41
+ find_by_keyword = SoftwareBinder::Category.find_by_keyword(input)
42
+ if find_by_keyword.size > 0
43
+ find_by_keyword.each.with_index(1) do |category, i|
44
+ @@last_category_search << category
45
+ puts "#{i}. #{category.name}"
46
+ end
47
+ else
48
+ puts "There is no result for your search."
49
+ self.list_categories
50
+ end
51
+ end
52
+ end
53
+
54
+ def list_softwares
55
+ puts "Please enter the category index number, or type 'exit' to quit"
56
+ input = gets.strip
57
+ if !input.to_i.between?(1, self.class.last_category_search.size)
58
+ puts "It is not valid input."
59
+ self.list_softwares
60
+ else
61
+ selected_category = self.class.last_category_search[input.to_i - 1]
62
+ SoftwareBinder::Scraper.scrape_softwares(selected_category)
63
+ SoftwareBinder::Software.all.each.with_index(1) do |list, i|
64
+ puts "#{i}. #{list.name}"
65
+ puts "Review Rating: #{list.overall_rating}/5.0 from #{list.reviews} reviews"
66
+ puts "Description: #{list.description}"
67
+ puts
68
+ end
69
+ end
70
+ end
71
+
72
+ def reset?
73
+ puts "Would you like to check other software? (Y/N)"
74
+ answer = gets.strip
75
+ case answer.downcase
76
+ when "y"
77
+ self.call
78
+ when "n"
79
+ exit
80
+ else
81
+ puts "I do not understand your answer"
82
+ puts "Please answer with Y or N"
83
+ self.reset?
84
+ end
85
+ end
86
+
87
+ end
@@ -0,0 +1,33 @@
1
+ class SoftwareBinder::Scraper
2
+
3
+ def self.scrape_categories
4
+ html = open("https://www.capterra.com/categories")
5
+ doc = Nokogiri::HTML(html)
6
+ doc.css(".browse-group-list li a").each do |element|
7
+ category = SoftwareBinder::Category.new
8
+ category.name = element.text
9
+ category.slug = element.attribute("href").value
10
+ end
11
+ end
12
+
13
+ def self.scrape_softwares(category)
14
+ html = open("https://www.capterra.com/#{category.slug}")
15
+ doc = Nokogiri::HTML(html)
16
+
17
+ doc.css(".listing").each do |element|
18
+ software = SoftwareBinder::Software.new(category)
19
+ software.name = element.css(".listing-name a").text.strip
20
+ software.description = element.css(".listing-description").text.strip.gsub(/\s{2,}/,' ').gsub(" Learn more about #{software.name}",'')
21
+ software.page_slug = element.css(".listing-description a").attr("href").value
22
+
23
+ if !element.css(".reviews").empty?
24
+ software.overall_rating = element.css(".reviews").attr("data-rating").value.split("/")[0]
25
+ software.reviews = element.css(".reviews").attr("data-rating").value.split(" - ")[1]
26
+ else
27
+ software.overall_rating = "0.0"
28
+ software.reviews = 0
29
+ end
30
+ end
31
+ end
32
+
33
+ end
@@ -0,0 +1,24 @@
1
+ class SoftwareBinder::Software
2
+ attr_accessor :name, :overall_rating, :reviews, :description, :page_slug
3
+ attr_reader :category
4
+
5
+ @@all = []
6
+
7
+ def initialize(category)
8
+ @category = category
9
+ self.save
10
+ end
11
+
12
+ def save
13
+ @@all << self
14
+ end
15
+
16
+ def self.all
17
+ @@all
18
+ end
19
+
20
+ def self.reset
21
+ @@all.clear
22
+ end
23
+
24
+ end
@@ -0,0 +1,3 @@
1
+ module SoftwareBinder
2
+ VERSION = "0.1.1"
3
+ end
@@ -0,0 +1,10 @@
1
+ require 'open-uri'
2
+ require 'nokogiri'
3
+ require 'pry'
4
+ require 'require_all'
5
+
6
+ require "software_binder/version"
7
+ require "software_binder/cli"
8
+ require "software_binder/scraper"
9
+ require "software_binder/category"
10
+ require "software_binder/software"
@@ -0,0 +1,40 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "software_binder/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "software_binder"
8
+ spec.version = SoftwareBinder::VERSION
9
+ spec.authors = ["Hoon Lee"]
10
+ spec.email = ["yl.hoony@gmail.com"]
11
+
12
+ spec.summary = %q{CLI Program to check software cateogy and lists from Capterra}
13
+ spec.description = %q{With Software Binder, you can get the software list by category from Capterra.}
14
+ spec.homepage = "https://github.com/ylhoony/software-binder-cli-app"
15
+ spec.license = "MIT"
16
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
17
+
18
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
19
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
20
+ if spec.respond_to?(:metadata)
21
+ # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
22
+ else
23
+ raise "RubyGems 2.0 or newer is required to protect against " \
24
+ "public gem pushes."
25
+ end
26
+
27
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
28
+ f.match(%r{^(test|spec|features)/})
29
+ end
30
+ spec.bindir = "bin"
31
+ spec.executables = "software_binder"
32
+ spec.require_paths = ["lib"]
33
+
34
+ spec.add_development_dependency "bundler", "~> 1.16"
35
+ spec.add_development_dependency "rake", "~> 10.0"
36
+ spec.add_development_dependency "rspec", "~> 3.0"
37
+ spec.add_development_dependency "pry", "~> 0.11"
38
+ spec.add_runtime_dependency "nokogiri", "~> 1.8"
39
+ spec.add_runtime_dependency "require_all"
40
+ end
data/spec.md ADDED
@@ -0,0 +1,9 @@
1
+ # Specifications for the CLI Assessment
2
+
3
+ Specs:
4
+ - [X] Have a CLI for interfacing with the application
5
+ - CLI interface to search category by keyword or alphabet and select category with index to list all software under the selected one.
6
+ - [X] Pull data from an external source
7
+ - Scraping data from Capterra - https://www.capterra.com/
8
+ - [X] Implement both list and detail views
9
+ - Categories are the main list and Software listed each category is the detail views.
metadata ADDED
@@ -0,0 +1,151 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: software_binder
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Hoon Lee
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-12-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.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
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.11'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.11'
69
+ - !ruby/object:Gem::Dependency
70
+ name: nokogiri
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.8'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.8'
83
+ - !ruby/object:Gem::Dependency
84
+ name: require_all
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: With Software Binder, you can get the software list by category from
98
+ Capterra.
99
+ email:
100
+ - yl.hoony@gmail.com
101
+ executables:
102
+ - software_binder
103
+ extensions: []
104
+ extra_rdoc_files: []
105
+ files:
106
+ - ".gitignore"
107
+ - ".rspec"
108
+ - ".travis.yml"
109
+ - CODE_OF_CONDUCT.md
110
+ - Gemfile
111
+ - Gemfile.lock
112
+ - LICENSE.txt
113
+ - README.md
114
+ - Rakefile
115
+ - bin/console
116
+ - bin/setup
117
+ - bin/software_binder
118
+ - lib/software_binder.rb
119
+ - lib/software_binder/category.rb
120
+ - lib/software_binder/cli.rb
121
+ - lib/software_binder/scraper.rb
122
+ - lib/software_binder/software.rb
123
+ - lib/software_binder/version.rb
124
+ - software_binder.gemspec
125
+ - spec.md
126
+ homepage: https://github.com/ylhoony/software-binder-cli-app
127
+ licenses:
128
+ - MIT
129
+ metadata:
130
+ allowed_push_host: https://rubygems.org
131
+ post_install_message:
132
+ rdoc_options: []
133
+ require_paths:
134
+ - lib
135
+ required_ruby_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ required_rubygems_version: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: '0'
145
+ requirements: []
146
+ rubyforge_project:
147
+ rubygems_version: 2.6.14
148
+ signing_key:
149
+ specification_version: 4
150
+ summary: CLI Program to check software cateogy and lists from Capterra
151
+ test_files: []