forked from cookpad/ingreedy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathingreedy.gemspec
26 lines (21 loc) · 839 Bytes
/
ingreedy.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require File.expand_path("../lib/ingreedy/version", __FILE__)
Gem::Specification.new do |s|
s.name = "ingreedy"
s.version = Ingreedy::VERSION
s.licenses = ["MIT"]
s.authors = ["Ian C. Anderson"]
s.email = ["ian@iancanderson.com"]
s.summary = "Recipe parser"
s.description = <<-MSG
Natural language recipe ingredient parser that supports numeric amount,
units, and ingredient
MSG
s.homepage = "http://github.com/iancanderson/ingreedy"
s.files = `git ls-files`.split("\n")
s.require_path = "lib"
s.add_dependency "parslet", "~> 1.7.0", ">= 1.7.0"
s.add_development_dependency "rake", "~> 0.9", ">= 0.9"
s.add_development_dependency "rspec", "~> 3.3.0", ">= 3.3.0"
s.add_development_dependency "coveralls", "~> 0.7.0", ">= 0.7.0"
s.add_development_dependency "pry"
end