kiq 0.1.6 → 0.1.7

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: 8738b2a749f8c6959b25142fd004b6b4afd9a22d
4
- data.tar.gz: b294d68b568e765289461654a299ea702fc6d8ee
3
+ metadata.gz: 1f9006b5aeb50009deb737e773e54eb8c100bbf3
4
+ data.tar.gz: 194dd8fe822f7f2fe4d19b4cc9b4afa4811c33cb
5
5
  SHA512:
6
- metadata.gz: c1a743f005a75273f63e9547b7425a5db88984ec7ce0d75fe422de321ccda91cbe27ce20e817aebd0cb12ef67468dcc04e62c44ad44fb84f32c179271a758c91
7
- data.tar.gz: 71c3e03e2c1ecf0d8386d828044b481d25aa7c65436f92b73547169b3cc1ecc7394d490036e7d97782e8cc584b7cf8a72ab73184d1e441338996fa88bab0aa20
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
 
@@ -1,4 +1,4 @@
1
1
  # Current version of Kiq gem
2
2
  module Kiq
3
- VERSION = "0.1.6"
3
+ VERSION = "0.1.7"
4
4
  end
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.project_does_not_ exist?(['project', project_name], @projects)
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.6
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.6.6
100
+ rubygems_version: 2.4.5.1
101
101
  signing_key:
102
102
  specification_version: 4
103
103
  summary: Mini Kickstarter Command Line Interface