-
Notifications
You must be signed in to change notification settings - Fork 1
/
jtask.gemspec
27 lines (22 loc) · 1.09 KB
/
jtask.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "jtask/version"
Gem::Specification.new do |s|
s.name = "jtask"
s.version = JTask::VERSION
s.date = JTask::RELEASE_DATE
s.platform = Gem::Platform::RUBY
s.description = "Provides CRUD actions for JSON files, plus a few extra goodies."
s.summary = "CRUD actions for JSON files."
s.homepage = "https://github.com/adammcarthur/jtask"
s.license = "MIT"
s.authors = ["Adam McArthur"]
s.email = ["[email protected]"]
s.files = `git ls-files`.split($/)
s.test_files = s.files.grep(%r{^(spec)/})
s.require_paths = ["lib"]
s.required_ruby_version = ">= 1.9.3"
s.add_runtime_dependency "json", "~> 1.4"
s.add_development_dependency "rspec", "~> 2"
s.post_install_message = "\n- - -\nThanks for installing JTask Beta. Please be aware that this release is not considered stable and is in no way production-ready. JTask v1.0.0 (expected arrival > 1 month) will mark the first stable release of this gem.\n - Adam\n- - -\n"
end