kiq 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/kiq/helpers/version.rb +1 -1
- data/lib/kiq/run.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f9006b5aeb50009deb737e773e54eb8c100bbf3
|
4
|
+
data.tar.gz: 194dd8fe822f7f2fe4d19b4cc9b4afa4811c33cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85a683b4993a9e44c6b6a6220f9b248b3de42a6cb41afac3b1e3653afe8b032b7cef2303b34e76dd775c768b32a024f773fa70d3278707c1af02a085a1f3f038
|
7
|
+
data.tar.gz: a02fa262e796d4ce7469be89a40e8a0f086426f34214593fcd71f6f472b6210df453d6537b1c1be46111e82cef4e525aed301c0c11b18ded227e40a12e2c01cc
|
data/README.md
CHANGED
@@ -10,7 +10,7 @@ kiq is a crowd funding application that can be run from your command line. This
|
|
10
10
|
* Getting over my Rails addiction to lovely built in libraries and methods.
|
11
11
|
|
12
12
|
## Installation
|
13
|
-
This is a Ruby Gem! It can be found on the rubygems site [here](https://rubygems.org/gems/kiq) and easily implemented on any operating system that has Ruby installed with the command `gem install kiq`.
|
13
|
+
This is a Ruby Gem (Yeah, it's crazy to me that I got this namespacing as well)! It can be found on the rubygems site [here](https://rubygems.org/gems/kiq) and easily implemented on any operating system that has Ruby installed with the command `gem install kiq`.
|
14
14
|
|
15
15
|
I tested this gem out on OSX El Capitan, Yosemite, Microsoft 10, and Linux. Just make sure you have [https://www.ruby-lang.org/en/documentation/installation/](Ruby installed on your OS). RubyGems comes with a Ruby installation.
|
16
16
|
|
data/lib/kiq/helpers/version.rb
CHANGED
data/lib/kiq/run.rb
CHANGED
@@ -98,7 +98,7 @@ module Kiq
|
|
98
98
|
# If Project instance exists, lists all backers for a certain project
|
99
99
|
# @return [String] of backers, or error and help if project does not exist
|
100
100
|
def list(project_name)
|
101
|
-
if !Project.
|
101
|
+
if !Project.project_does_not_exist?(['project', project_name], @projects)
|
102
102
|
project = Project.all_offspring.find { |p| p.name == project_name }
|
103
103
|
puts "Project Name: #{project.name}"
|
104
104
|
puts "Amount Remaining: $#{project.amount}"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kiq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Logan McDonald
|
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
97
|
version: '0'
|
98
98
|
requirements: []
|
99
99
|
rubyforge_project:
|
100
|
-
rubygems_version: 2.
|
100
|
+
rubygems_version: 2.4.5.1
|
101
101
|
signing_key:
|
102
102
|
specification_version: 4
|
103
103
|
summary: Mini Kickstarter Command Line Interface
|