-
Notifications
You must be signed in to change notification settings - Fork 1
/
importu.gemspec
35 lines (28 loc) · 1.27 KB
/
importu.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
27
28
29
30
31
32
33
34
35
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "importu/version"
Gem::Specification.new do |s|
s.name = "importu"
s.version = Importu::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Daniel Hedlund"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/dhedlund/importu"
s.summary = "Because an import should be defined by a contract, not " +
"a sequence of commands"
s.description = "Importu simplifies the process of defining and sharing " +
"contracts that structured data must conform to in order " +
"to be importable into your application."
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.licenses = ["MIT"]
s.add_dependency "multi_json", ["~> 1.0"]
s.add_dependency "nokogiri"
s.add_development_dependency "bundler", [">= 1.0.0"]
s.add_development_dependency "rspec", ["~> 3.6"]
s.add_development_dependency "simplecov", ["~> 0.14"]
s.add_development_dependency "appraisal"
# YARD Documentation
s.add_development_dependency "redcarpet" # For README.md
s.add_development_dependency "yard"
end