cryptozoologist 1.0.0 → 1.1.0

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.
@@ -1,25 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'cryptozoologist/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "cryptozoologist"
8
- spec.version = Cryptozoologist::VERSION
9
- spec.authors = ["Liz Abinante"]
10
- spec.email = ["me@liz.codes"]
11
-
12
- spec.summary = "Generates random strings from animal, clothing item, and color pairings."
13
- spec.description = "Cryptozoologist generates random strings from animal, clothing item, and color pairings. You could get something like 'orange-clownfish-turtleneck' or 'magenta-three-toed-sloth-shoe-horn'. It's fun and silly - it's also very simple, which is why it is used as an example for the Gem guide project."
14
- spec.homepage = "https://github.com/feministy/cryptozoologist"
15
- spec.license = "MIT"
16
-
17
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
- spec.bindir = "exe"
19
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
- spec.require_paths = ["lib"]
21
-
22
- spec.add_development_dependency "bundler", "~> 1.11"
23
- spec.add_development_dependency "rake", "~> 10.0"
24
- spec.add_development_dependency "rspec", "~> 3.0"
25
- end