software_binder 0.1.1 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c005f25c061860b3ca19a1ff66d3fa4d6e08132e
4
- data.tar.gz: b76fe7916e7ca01e8f7cf16681e95728fcee4a53
3
+ metadata.gz: 4171d7b89e37251ebbd09dea5616c3069e58f4e4
4
+ data.tar.gz: 71656522beca23c9d5cea06fbd60b4b11f9b62ff
5
5
  SHA512:
6
- metadata.gz: bdf6aff6446f2b02526888f57731d32e58ebcb5e3d6907c1ac852dde0b34328822a8386c1a80367bfd95b0c186d8518d84006a7d9d512eaab9ae1e28c15a4a72
7
- data.tar.gz: 5f118c0d677b9e984dac14d539235359479f5bfa6d1425f6d379ec9c5ef597ea39be780098d71fabd7ca0e66dc8018d37013637cd89ecee2826c2044e4502bed
6
+ metadata.gz: 04d43fe1f37639b55ad3a8a350875ff28d2a118f357ac2ad808328568c182803b6053047dc930dd3537487c0c7476e8aaaa6cbd7e7ec1bacc4a62cc1b1e447b0
7
+ data.tar.gz: 8cb3a7dcf31d4b46d83beb6acb2f352c53fd968f83d45190bd879fbb5582d7e7b6a2c8c23cc21b9d6d60fa9a22039f9aaa12bf78a11b7911613a26a391e05ba9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- software_binder (0.1.1)
4
+ software_binder (0.1.2)
5
5
  nokogiri (~> 1.8)
6
6
  require_all
7
7
 
data/README.md CHANGED
@@ -7,21 +7,15 @@ Software Binder is Ruby CLI program that you can search software categories and
7
7
  Add this line to your application's Gemfile:
8
8
 
9
9
  ```ruby
10
- gem 'software_binder'
10
+ $ gem install software_binder
11
11
  ```
12
12
 
13
- And then execute:
14
-
15
- $ bundle
16
-
17
- Or install it yourself as:
18
-
19
- $ gem install software_binder
20
-
21
13
  ## Usage
22
14
 
15
+ Type this line to start the program:
16
+
23
17
  ```ruby
24
- gem 'software_binder'
18
+ $ software_binder
25
19
  ```
26
20
 
27
21
  ## Development
@@ -54,6 +54,7 @@ class SoftwareBinder::CLI
54
54
  def list_softwares
55
55
  puts "Please enter the category index number, or type 'exit' to quit"
56
56
  input = gets.strip
57
+ exit if input == 'exit'
57
58
  if !input.to_i.between?(1, self.class.last_category_search.size)
58
59
  puts "It is not valid input."
59
60
  self.list_softwares
@@ -1,3 +1,3 @@
1
1
  module SoftwareBinder
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: software_binder
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
  - Hoon Lee