forked from kaize/timepad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
timepad.gemspec
25 lines (20 loc) · 921 Bytes
/
timepad.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/timepad/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Andrey Subbota"]
gem.email = ["[email protected]"]
gem.description = %q{Gem that provide access to timepad.ru api}
gem.summary = %q{See description}
gem.homepage = "https://github.com/kaize/timepad/"
gem.files = `git ls-files`.split("\n")
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "timepad"
gem.require_paths = ["lib"]
gem.version = Timepad::VERSION
gem.add_dependency 'activesupport', '~> 3'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'webmock', '>= 1.20.4'
gem.add_development_dependency 'json', '>= 1.8.1'
gem.add_development_dependency 'minitest', '>= 5.4.3'
end