-
Notifications
You must be signed in to change notification settings - Fork 28
/
timeliness.gemspec
37 lines (31 loc) · 1.33 KB
/
timeliness.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
36
37
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "timeliness/version"
Gem::Specification.new do |s|
github_url = 'https://github.com/adzap/timeliness'
s.name = "timeliness"
s.version = Timeliness::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Adam Meehan"]
s.email = %q{[email protected]}
s.homepage = %q{http://github.com/adzap/timeliness}
s.summary = %q{Date/time parsing for the control freak.}
s.description = %q{Fast date/time parser with customisable formats, timezone and I18n support.}
s.license = "MIT"
s.metadata = {
"rubygems_mfa_required" => "true",
"bug_tracker_uri" => "#{github_url}/issues",
"changelog_uri" => "#{github_url}/blob/master/CHANGELOG.rdoc",
"source_code_uri" => "#{github_url}",
"wiki_uri" => "#{github_url}/wiki",
}
s.add_development_dependency 'activesupport', '>= 3.2'
s.add_development_dependency 'tzinfo', '>= 0.3.31'
s.add_development_dependency 'rspec', '~> 3.4'
s.add_development_dependency 'timecop'
s.add_development_dependency 'i18n'
s.files = `git ls-files`.split("\n")
s.files = `git ls-files`.split("\n") - %w{ .gitignore .rspec Gemfile Gemfile.lock }
s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc"]
s.require_paths = ["lib"]
end