cats 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: d3924418b2469a2b0eed380a2fdec52711149f55
4
- data.tar.gz: 0aadd1cc50d70cb253b1c54da5af538927ee82e9
2
+ SHA256:
3
+ metadata.gz: 4e9947613f57fcabd5722ac686e1b77c7eb71c5d79572b9b029be606ef41baca
4
+ data.tar.gz: 4b96b1572cf919678666bffb60a8e36227a64257acdc4af07b506b311ac9c11d
5
5
  SHA512:
6
- metadata.gz: 41956eac82a05bde01a6c179b34fdb46889efaca9002e1cbd977c8235379a1a0bd8105ae64790c640ef7167b6f2855013155167c7897ddee7798f170dc89ca2b
7
- data.tar.gz: afd7aace3ee5754e8412885287f7a426bfe591ae5e2cc5ef3124fc86ce4d755e85fbbd6ff2993db3626ed824dc39aecf47f6496e1f2bb434ea7c570dc34678b3
6
+ metadata.gz: 40f127b74986bdda279e028257ee5b02d4c7c588d4026006b886bd95ae4f30a2ef6a2410f9ff0861459d31fa0dca2f85c2e089ca0348f4052ae6225c8a8db7e5
7
+ data.tar.gz: d48b40d8aaf52002cf195ebc87dfecf99ec68665e26013513824f8836c2e403f7388df6bf025c2889f52eace62cd1f32cfa41299b8850eae85b26be2e0cfb929
data/.gitignore CHANGED
@@ -1,17 +1,9 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,9 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9
4
+ - 2.0
5
+ - 2.1
6
+ - 2.2
7
+ - 2.3
8
+ - 2.4
9
+ before_install: gem install bundler -v 1.16.1
data/Gemfile CHANGED
@@ -1,4 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
+ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
4
+
3
5
  # Specify your gem's dependencies in cats.gemspec
4
6
  gemspec
@@ -1,22 +1,21 @@
1
- Copyright (c) 2013 Nicolas McCurdy
1
+ The MIT License (MIT)
2
2
 
3
- MIT License
3
+ Copyright (c) 2013 Nick McCurdy
4
4
 
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
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:
12
11
 
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
15
14
 
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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 CHANGED
@@ -1,16 +1,20 @@
1
1
  # Cats
2
- [![Dependency Status](https://gemnasium.com/thenickperson/cats.png)](https://gemnasium.com/thenickperson/cats)
3
- [![Code Climate](https://codeclimate.com/github/thenickperson/cats.png)](https://codeclimate.com/github/thenickperson/cats)
2
+ [![Gem Version](https://badge.fury.io/rb/cats.png)](http://badge.fury.io/rb/cats)
3
+ [![Build Status](https://secure.travis-ci.org/nickmccurdy/cats.png?branch=master)](http://travis-ci.org/nickmccurdy/cats)
4
+ [![Dependency Status](https://gemnasium.com/nickmccurdy/cats.png)](https://gemnasium.com/nickmccurdy/cats)
5
+ [![Code Climate](https://codeclimate.com/github/nickmccurdy/cats.png)](https://codeclimate.com/github/nickmccurdy/cats)
4
6
 
5
7
  A library/tool that does a small number of cat-related tasks. Cats currently
6
- acts as a command line client and library for recieving cat facts.
8
+ acts as a command line client and library for receiving cat facts.
7
9
 
8
- ## [Documentation](http://rubydoc.info/github/thenickperson/cats/frames)
10
+ ## [Documentation](http://rubydoc.info/github/nickmccurdy/cats/frames)
9
11
 
10
12
  ## Installation
11
13
  Add this line to your application's Gemfile:
12
14
 
13
- gem 'cats'
15
+ ```ruby
16
+ gem 'cats'
17
+ ```
14
18
 
15
19
  And then execute:
16
20
 
@@ -40,9 +44,13 @@ puts Cats.fact
40
44
  - List of cat facts: [CatFactsApi](https://github.com/pieces029/CatFactsApi)
41
45
  (MIT License)
42
46
 
47
+ ## Development
48
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
49
+
50
+ 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).
51
+
43
52
  ## Contributing
44
- 1. Fork it
45
- 2. Create your feature branch (`git checkout -b my-new-feature`)
46
- 3. Commit your changes (`git commit -am 'Add some feature'`)
47
- 4. Push to the branch (`git push origin my-new-feature`)
48
- 5. Create new Pull Request
53
+ Bug reports and pull requests are welcome on GitHub at https://github.com/nickmccurdy/cats.
54
+
55
+ ## License
56
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile CHANGED
@@ -1,4 +1,13 @@
1
1
  require 'bundler/gem_tasks'
2
-
2
+ require 'rake/testtask'
3
3
  require 'yard'
4
+
5
+ Rake::TestTask.new(:test) do |t|
6
+ t.libs << 'test'
7
+ t.libs << 'lib'
8
+ t.test_files = FileList['test/**/*_test.rb']
9
+ end
10
+
4
11
  YARD::Rake::YardocTask.new
12
+
13
+ task default: :test
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'cats'
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
+ IRB.start(__FILE__)
@@ -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
@@ -1,29 +1,33 @@
1
- # coding: utf-8
2
1
  lib = File.expand_path('../lib', __FILE__)
3
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'cats'
3
+ require 'cats/version'
5
4
 
6
5
  Gem::Specification.new do |spec|
7
6
  spec.name = 'cats'
8
7
  spec.version = Cats::VERSION
9
- spec.authors = ['Nicolas McCurdy']
10
- spec.email = ['thenickperson@gmail.com']
8
+ spec.authors = ['Nick McCurdy']
9
+ spec.email = ['nick@nickmccurdy.com']
10
+
11
11
  spec.description = 'A library/tool that does a small number of cat-related
12
12
  tasks.'
13
13
  spec.summary = 'A library/tool that does a small number of cat-related
14
14
  tasks.'
15
- spec.homepage = 'https://github.com/thenickperson/cats'
15
+ spec.homepage = 'https://github.com/nickmccurdy/cats'
16
16
  spec.license = 'MIT'
17
17
 
18
- spec.files = `git ls-files`.split($/)
19
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
19
+ f.match(%r{^(test|spec|features)/})
20
+ end
21
+ spec.bindir = 'exe'
22
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
23
  spec.require_paths = ['lib']
22
24
 
23
25
  spec.add_runtime_dependency 'thor', '~> 0.18'
24
26
 
25
- spec.add_development_dependency 'bundler', '~> 1.3'
26
- spec.add_development_dependency 'rake'
27
- spec.add_development_dependency 'yard', '~> 0.8'
27
+ spec.add_development_dependency 'bundler', '~> 1.16'
28
+ spec.add_development_dependency 'minitest', '~> 5.0'
29
+ spec.add_development_dependency 'rake', '~> 10.0'
28
30
  spec.add_development_dependency 'rdoc', '~> 4.0'
31
+ spec.add_development_dependency 'simplecov', '~> 0.7'
32
+ spec.add_development_dependency 'yard', '~> 0.9.11'
29
33
  end
File without changes
@@ -1,13 +1,10 @@
1
- require 'thor'
1
+ require 'cats/cli'
2
+ require 'cats/version'
2
3
 
3
4
  # The central module for Cats, a library/tool that does a small number of
4
5
  # cat-related tasks
5
6
  module Cats
6
-
7
- extend self
8
-
9
- # The version of the Cats gem
10
- VERSION = '0.1.0'
7
+ module_function
11
8
 
12
9
  # An Array of cat facts. Each string contains one fact. The facts are read
13
10
  # from a simple text file, with one fact on each line.
@@ -17,27 +14,10 @@ module Cats
17
14
  #
18
15
  # TODO: Consider allowing more than 202 cat facts (show duplicates?)
19
16
  #
20
- # @param [Fixnum] quantity the number of cat facts to recieve (0-many)
17
+ # @param [Fixnum] quantity the number of cat facts to receive (0-many)
21
18
  #
22
19
  # @return [Array] an Array of Strings of cat facts
23
20
  def fact(quantity = 1)
24
21
  @facts.sample quantity
25
22
  end
26
-
27
- end
28
-
29
- # The command line interface for Cats. Uses Thor to map each method to a
30
- # command.
31
- class Cats::CLI < Thor
32
-
33
- default_task :fact
34
-
35
- desc 'fact QUANTITY', 'Displays a given number of cat facts'
36
- argument :quantity, type: :numeric, default: 1
37
- # Acts as the UI for Cats.fact by showing each cat fact on a new line of text
38
- def fact
39
- facts = Cats.fact quantity
40
- facts.each { |fact| puts fact }
41
- end
42
-
43
23
  end
@@ -0,0 +1,20 @@
1
+ require 'thor'
2
+
3
+ # The central module for Cats, a library/tool that does a small number of
4
+ # cat-related tasks
5
+ module Cats
6
+ # The command line interface for Cats. Uses Thor to map each method to a
7
+ # command.
8
+ class CLI < Thor
9
+ default_task :fact
10
+
11
+ desc 'fact QUANTITY', 'Displays a given number of cat facts'
12
+ argument :quantity, type: :numeric, default: 1
13
+ # Acts as the UI for Cats.fact by showing each cat fact on a new line of
14
+ # text
15
+ def fact
16
+ facts = Cats.fact quantity
17
+ facts.each { |fact| puts fact }
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,4 @@
1
+ module Cats
2
+ # The version of the Cats gem
3
+ VERSION = '0.1.1'.freeze
4
+ end
@@ -52,13 +52,13 @@ The technical term for a cat's hairball is a 'bezoar.'
52
52
  A group of cats is called a 'clowder.'
53
53
  A cat cannot climb head first down a tree because its claws are curved the wrong way A cat can't climb head first down a tree because every claw on a cat's paw points the same way. To get down from a tree, a cat must back down.
54
54
  Cats make about 100 different sounds. Dogs make only about 10.
55
- A cat's brain is biologically more similar to a human brain than itis to a dog's. Both humans and cats have identical regions in their brains that are responsible for emotions.
56
- There are more than 500 million domestic cats in the world, with approximately40 recognized breeds.
55
+ A cat's brain is biologically more similar to a human brain than it is to a dog's. Both humans and cats have identical regions in their brains that are responsible for emotions.
56
+ There are more than 500 million domestic cats in the world, with approximately 40 recognized breeds.
57
57
  Approximately 24 cat skins can make a coat.
58
58
  While it is commonly thought that the ancient Egyptians were the first to domesticate cats, the oldest known pet cat was recently found in a 9,500-year-old grave on the Mediterranean island of Cyprus. This grave predates early Egyptian art depicting cats by 4,000 years or more.
59
59
  During the time of the Spanish Inquisition, Pope Innocent VIII condemned cats as evil and thousands of cats were burned. Unfortunately, the widespread killing of cats led to an explosion of the rat population, which exacerbated the effects of the Black Death.
60
60
  During the Middle Ages, cats were associated with with craft, and on St. John's Day, people all over Europe would stuff them into sacks and toss the cats into bonfires. On holy days, people celebrated by tossing cats from church towers.
61
- Cats are the most popular pet in North American Cats are North America's most popular pets: there are 73 million cats compared to 63 million dogs. Over 30% of households in North America owna cat.
61
+ Cats are the most popular pet in North American Cats are North America's most popular pets: there are 73 million cats compared to 63 million dogs. Over 30% of households in North America own a cat.
62
62
  The first cat in space was a French cat named Felicette (a.k.a. 'Astrocat') In 1963, France blasted the cat into outer space. Electrodes implanted in her brains sent neurological signals back to Earth. She survived the trip.
63
63
  The group of words associated with cat (catt, cath, chat, katze) stem from the Latin catus, meaning domestic cat, as opposed to feles, or wild cat.
64
64
  The term 'puss' is the root of the principal word for 'cat' in the Romanian term pisica and the root of secondary words in Lithuanian(puz) and Low German puus. Some scholars suggest that 'puss' could be imitative of the hissing sound used to get a cat's attention. A slang word for the female pudenda, it could be associated with the connotation of a cat being soft, warm, and fuzzy.
@@ -112,11 +112,11 @@ Cats have about 130,000 hairs per square inch (20,155 hairs per square centimete
112
112
  The heaviest cat on record is Himmy, a Tabby from Queensland, Australia. He weighed nearly 47 pounds (21 kg). He died at the age of 10.
113
113
  The oldest cat on record was Creme Puff from Austin, Texas, who lived from 1967 to August 6, 2005, three days after her 38th birthday. A cat typically can live up to 20 years, which is equivalent to about 96 human years.
114
114
  The lightest cat on record is a blue point Himalayan called Tinker Toy, who weighed 1 pound, 6 ounces (616 g). Tinker Toy was 2.75 inches (7 cm)tall and 7.5 inches (19 cm) long.
115
- The tiniest cat on record is Mr. Pebbles, a 2-year-old cat that weighed3 lbs (1.3 k) and was 6.1 inches (15.5 cm) high.
115
+ The tiniest cat on record is Mr. Pebbles, a 2-year-old cat that weighed 3 lbs (1.3 k) and was 6.1 inches (15.5 cm) high.
116
116
  A commemorative tower was built in Scotland for a cat named Towser, who caught nearly 30,000 mice in her lifetime.
117
117
  In the 1750s, Europeans introduced cats into the Americas to control pests.
118
118
  The first cat show was organized in 1871 in London. Cat shows later became a worldwide craze.
119
- The first cartoon cat was Felix the Cat in 1919. In 1940, Tom and Jerry starred in the first theatrical cartoon 'Puss Gets the Boot.' In1981 Andrew Lloyd Weber created the musical Cats, based on T.S. Eliot's Old Possum's Book of Practical Cats.
119
+ The first cartoon cat was Felix the Cat in 1919. In 1940, Tom and Jerry starred in the first theatrical cartoon 'Puss Gets the Boot.' In 1981 Andrew Lloyd Weber created the musical Cats, based on T.S. Eliot's Old Possum's Book of Practical Cats.
120
120
  The normal body temperature of a cat is between 100.5 &#176; and 102.5 &#176;F.A cat is sick if its temperature goes below 100 &#176; or above 103 &#176;F.
121
121
  A cat has 230 bones in its body. A human has 206. A cat has no collarbone, so it can fit through any opening the size of its head.
122
122
  A cat's nose pad is ridged with a unique pattern, just like the fingerprint of a human.
@@ -130,7 +130,7 @@ Relative to its body size, the clouded leopard has the biggest canines of all an
130
130
  Cats spend nearly &#8531; of their waking hours cleaning themselves.
131
131
  Grown cats have 30 teeth. Kittens have about 26 temporary teeth, which they lose when they are about 6 months old.
132
132
  A cat called Dusty has the known record for the most kittens. She had more than 420 kittens in her lifetime.
133
- The largest cat breed is the Ragdoll. Male Ragdolls weigh between 12 and20 lbs (5.4&#8211;9.0 k). Females weigh between 10 and 15 lbs (4.5&#8211;6.8 k).
133
+ The largest cat breed is the Ragdoll. Male Ragdolls weigh between 12 and 20 lbs (5.4&#8211;9.0 k). Females weigh between 10 and 15 lbs (4.5&#8211;6.8 k).
134
134
  Cats are extremely sensitive to vibrations. Cats are said to detect earth quake tremors 10 or 15 minutes before humans can.
135
135
  In contrast to dogs, cats have not undergone major changes during their domestication process.
136
136
  A female cat is called a queen or a molly.
metadata CHANGED
@@ -1,106 +1,139 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cats
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - Nicolas McCurdy
7
+ - Nick McCurdy
8
8
  autorequire:
9
- bindir: bin
9
+ bindir: exe
10
10
  cert_chain: []
11
- date: 2013-07-28 00:00:00.000000000 Z
11
+ date: 2017-12-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0.18'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0.18'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.3'
33
+ version: '1.16'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.3'
40
+ version: '1.16'
41
41
  - !ruby/object:Gem::Dependency
42
- name: rake
42
+ name: minitest
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
47
+ version: '5.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '0'
54
+ version: '5.0'
55
55
  - !ruby/object:Gem::Dependency
56
- name: yard
56
+ name: rake
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ~>
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '0.8'
61
+ version: '10.0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ~>
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '0.8'
68
+ version: '10.0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rdoc
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ~>
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
75
  version: '4.0'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ~>
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '4.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: simplecov
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.7'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.7'
97
+ - !ruby/object:Gem::Dependency
98
+ name: yard
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 0.9.11
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 0.9.11
83
111
  description: |-
84
112
  A library/tool that does a small number of cat-related
85
113
  tasks.
86
114
  email:
87
- - thenickperson@gmail.com
115
+ - nick@nickmccurdy.com
88
116
  executables:
89
117
  - cats
90
118
  extensions: []
91
119
  extra_rdoc_files: []
92
120
  files:
93
- - .document
94
- - .gitignore
121
+ - ".document"
122
+ - ".gitignore"
123
+ - ".travis.yml"
95
124
  - Gemfile
96
125
  - LICENSE.txt
97
126
  - README.md
98
127
  - Rakefile
99
- - bin/cats
128
+ - bin/console
129
+ - bin/setup
100
130
  - cats.gemspec
131
+ - exe/cats
101
132
  - lib/cats.rb
133
+ - lib/cats/cli.rb
134
+ - lib/cats/version.rb
102
135
  - lib/facts.txt
103
- homepage: https://github.com/thenickperson/cats
136
+ homepage: https://github.com/nickmccurdy/cats
104
137
  licenses:
105
138
  - MIT
106
139
  metadata: {}
@@ -110,19 +143,18 @@ require_paths:
110
143
  - lib
111
144
  required_ruby_version: !ruby/object:Gem::Requirement
112
145
  requirements:
113
- - - '>='
146
+ - - ">="
114
147
  - !ruby/object:Gem::Version
115
148
  version: '0'
116
149
  required_rubygems_version: !ruby/object:Gem::Requirement
117
150
  requirements:
118
- - - '>='
151
+ - - ">="
119
152
  - !ruby/object:Gem::Version
120
153
  version: '0'
121
154
  requirements: []
122
155
  rubyforge_project:
123
- rubygems_version: 2.0.3
156
+ rubygems_version: 2.7.3
124
157
  signing_key:
125
158
  specification_version: 4
126
159
  summary: A library/tool that does a small number of cat-related tasks.
127
160
  test_files: []
128
- has_rdoc: