forked from iancanderson/hangry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hangry.gemspec
25 lines (23 loc) · 1.05 KB
/
hangry.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/hangry/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Ian C. Anderson"]
gem.email = ["[email protected]"]
gem.description = %q{A recipe microformat parser.}
gem.summary = %q{Parses microformatted recipe HTML into a plain-old-ruby Recipe object.}
gem.homepage = "https://github.com/iancanderson/hangry"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.add_development_dependency('rake')
gem.add_development_dependency('rspec', '>= 3.0')
gem.add_development_dependency('pry')
gem.add_development_dependency('httparty')
gem.add_dependency('activesupport', '>= 3.0')
gem.add_dependency('iso8601', '>= 0.4.0')
gem.add_dependency('nokogiri', '>= 1.5')
gem.add_development_dependency('rspec-its')
gem.name = "hangry"
gem.require_paths = ["lib"]
gem.version = Hangry::VERSION
end