-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathr2do.gemspec
25 lines (22 loc) · 1.03 KB
/
r2do.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/r2do/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["cgiacomi"]
gem.email = ["[email protected]"]
gem.summary = %q{r2do is a simple todo gem for the CLI}
gem.description = %q{r2do is a simple todo gem which allows you to create Tasks and group them by Category. r2do is meant for the CLI. }
gem.homepage = "https://github.com/cgiacomi/r2do"
gem.add_development_dependency "rspec"
gem.add_development_dependency "rake"
gem.add_development_dependency "yard"
gem.add_development_dependency "simplecov"
gem.add_development_dependency "redcarpet"
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.name = "r2do"
gem.require_paths = ["lib"]
gem.version = R2do::VERSION
gem.license = "Apache v2"
gem.post_install_message = "Thanks for installing r2do."
end