-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhuman_date.gemspec
23 lines (20 loc) · 962 Bytes
/
human_date.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/human_date/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Alexander Zaytsev"]
gem.email = ["[email protected]"]
gem.description = %q{View helpers to make your Dates and Times more human like}
gem.summary = %q{Display dates and times for humans, not robots!}
gem.homepage = "http://github.com/AlexanderZaytsev/human_date"
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 = "human_date"
gem.require_paths = ["lib"]
gem.version = HumanDate::VERSION
gem.add_development_dependency "activesupport"
gem.add_development_dependency "actionpack"
gem.add_development_dependency "rspec"
gem.add_development_dependency "timecop"
gem.add_development_dependency "tzinfo"
end