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 +5 -5
- data/.gitignore +9 -17
- data/.travis.yml +9 -0
- data/Gemfile +2 -0
- data/LICENSE.txt +17 -18
- data/README.md +18 -10
- data/Rakefile +10 -1
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/cats.gemspec +15 -11
- data/{bin → exe}/cats +0 -0
- data/lib/cats.rb +4 -24
- data/lib/cats/cli.rb +20 -0
- data/lib/cats/version.rb +4 -0
- data/lib/facts.txt +6 -6
- metadata +63 -31
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 4e9947613f57fcabd5722ac686e1b77c7eb71c5d79572b9b029be606ef41baca
|
4
|
+
data.tar.gz: 4b96b1572cf919678666bffb60a8e36227a64257acdc4af07b506b311ac9c11d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40f127b74986bdda279e028257ee5b02d4c7c588d4026006b886bd95ae4f30a2ef6a2410f9ff0861459d31fa0dca2f85c2e089ca0348f4052ae6225c8a8db7e5
|
7
|
+
data.tar.gz: d48b40d8aaf52002cf195ebc87dfecf99ec68665e26013513824f8836c2e403f7388df6bf025c2889f52eace62cd1f32cfa41299b8850eae85b26be2e0cfb929
|
data/.gitignore
CHANGED
@@ -1,17 +1,9 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
.
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
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/
|
data/.travis.yml
ADDED
data/Gemfile
CHANGED
data/LICENSE.txt
CHANGED
@@ -1,22 +1,21 @@
|
|
1
|
-
|
1
|
+
The MIT License (MIT)
|
2
2
|
|
3
|
-
|
3
|
+
Copyright (c) 2013 Nick McCurdy
|
4
4
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
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
|
-
|
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
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
OF
|
22
|
-
|
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
|
-
[![
|
3
|
-
[![
|
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
|
8
|
+
acts as a command line client and library for receiving cat facts.
|
7
9
|
|
8
|
-
## [Documentation](http://rubydoc.info/github/
|
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
|
-
|
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
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
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
|
data/bin/console
ADDED
@@ -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__)
|
data/bin/setup
ADDED
data/cats.gemspec
CHANGED
@@ -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 = ['
|
10
|
-
spec.email = ['
|
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/
|
15
|
+
spec.homepage = 'https://github.com/nickmccurdy/cats'
|
16
16
|
spec.license = 'MIT'
|
17
17
|
|
18
|
-
spec.files
|
19
|
-
|
20
|
-
|
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.
|
26
|
-
spec.add_development_dependency '
|
27
|
-
spec.add_development_dependency '
|
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
|
data/{bin → exe}/cats
RENAMED
File without changes
|
data/lib/cats.rb
CHANGED
@@ -1,13 +1,10 @@
|
|
1
|
-
require '
|
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
|
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
|
data/lib/cats/cli.rb
ADDED
@@ -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
|
data/lib/cats/version.rb
ADDED
data/lib/facts.txt
CHANGED
@@ -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
|
56
|
-
There are more than 500 million domestic cats in the world, with
|
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
|
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
|
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.'
|
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 ° and 102.5 °F.A cat is sick if its temperature goes below 100 ° or above 103 °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 ⅓ 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
|
133
|
+
The largest cat breed is the Ragdoll. Male Ragdolls weigh between 12 and 20 lbs (5.4–9.0 k). Females weigh between 10 and 15 lbs (4.5–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.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Nick McCurdy
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
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.
|
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.
|
40
|
+
version: '1.16'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
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:
|
56
|
+
name: rake
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - ~>
|
59
|
+
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '0
|
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
|
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
|
-
-
|
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/
|
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/
|
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.
|
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:
|