-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimetrello.gemspec
More file actions
24 lines (19 loc) · 921 Bytes
/
timetrello.gemspec
File metadata and controls
24 lines (19 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'time_trello/version'
Gem::Specification.new do |spec|
spec.name = 'timetrello'
spec.version = TimeTrello::VERSION
spec.license = 'MIT'
spec.authors = ['Caio Tarifa', 'Ronaldo Faria Lima']
spec.email = ['caiotarifa@gmail.com', 'ronaldo@nineteen.com.br']
spec.description = %q{Trello time tracking.}
spec.summary = %q{Trello time tracking with Ruby.}
spec.homepage = 'http://formaweb.github.io/timetrello'
spec.files = `git ls-files lib`.split($/)
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.rdoc_options = ['--charset=UTF-8']
spec.extra_rdoc_files = ['readme.md']
spec.add_runtime_dependency 'ruby-trello', '~> 1.4', '>= 1.4.1'
end