NewKS 0.2.0 → 0.2.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 +4 -4
- data/NewKS Walkthrough.mov +0 -0
- data/NewKS-0.2.0.gem +0 -0
- data/README.md +1 -1
- data/lib/NewKS/cli.rb +3 -1
- data/lib/NewKS/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0c749d839a26d2b824a805a907e93c5a8d020fc4
|
4
|
+
data.tar.gz: 18f190d17bc2991c4d528aa22c0b027c72d4312c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fb9c720e83eb68f9423f54c93bdd5a144e89d3e4a053898bb4f7b926026c18918aa848112e8845bae3a59a0238fb7375300284214f9999d79c7bed488344057
|
7
|
+
data.tar.gz: 647b6712580cb24bf9cdbcd6a3525ba56065674b1b27d94404479cbdb3ea1f04daf6833d74986f662d0d27c6456183a2e09ea70c285b51a78e654602d5103adc
|
Binary file
|
data/NewKS-0.2.0.gem
ADDED
Binary file
|
data/README.md
CHANGED
@@ -22,7 +22,7 @@ Or install it yourself as:
|
|
22
22
|
|
23
23
|
## Usage
|
24
24
|
|
25
|
-
Use this gem to study ruby techniques or just to keep up-to-date with your favorite KS Projects!
|
25
|
+
Once installed just type "NewKS" to bring up list of new Kickstarter projects and menu interface.Use this gem to study ruby techniques or just to keep up-to-date with your favorite KS Projects!
|
26
26
|
|
27
27
|
## Development
|
28
28
|
|
data/lib/NewKS/cli.rb
CHANGED
@@ -27,8 +27,10 @@ class NewKS::CLI
|
|
27
27
|
input = gets.strip.downcase
|
28
28
|
# Start Case Method based on user input
|
29
29
|
case input
|
30
|
+
when "exit"
|
31
|
+
|
30
32
|
when "list"
|
31
|
-
list # Run list method, then prompt question again
|
33
|
+
list # Run list method, then prompt question again
|
32
34
|
else #check if its a number, and add if statment
|
33
35
|
new_input = nil # Define new_input in case next line breaks
|
34
36
|
new_input = input.to_i # make user input a number
|
data/lib/NewKS/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: NewKS
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- IshmaelKhalid
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-06-
|
11
|
+
date: 2016-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -66,9 +66,11 @@ files:
|
|
66
66
|
- Gemfile
|
67
67
|
- Gemfile.lock
|
68
68
|
- LICENSE.txt
|
69
|
+
- NewKS Walkthrough.mov
|
69
70
|
- NewKS-0.1.0.gem
|
70
71
|
- NewKS-0.1.1.gem
|
71
72
|
- NewKS-0.1.2.gem
|
73
|
+
- NewKS-0.2.0.gem
|
72
74
|
- NewKS.gemspec
|
73
75
|
- README.md
|
74
76
|
- Rakefile
|