forked from radar/distance_of_time_in_words
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotiw.gemspec
37 lines (31 loc) · 1.26 KB
/
dotiw.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
# dotiw.gemspec
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'dotiw/version'
Gem::Specification.new do |s|
s.name = 'dotiw'
s.version = DOTIW::VERSION
s.licenses = ["MIT"]
s.authors = ["Ryan Bigg", "Lauran Jansen"]
s.date = %q{2016-03-08}
s.description = "dotiw is a gem for Rails that overrides the
default distance_of_time_in_words and provides
a more accurate output. Do you crave accuracy
down to the second? So do I. That's why I made
this gem. - Ryan"
s.summary = "Better distance_of_time_in_words for Rails"
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/radar/dotiw"
s.add_dependency "actionpack", ">= 4"
s.add_dependency "i18n"
s.add_development_dependency "rake"
s.add_development_dependency "bundler"
s.add_development_dependency "rspec", "~> 3.0"
s.add_development_dependency "tzinfo"
s.add_development_dependency "appraisal"
s.add_development_dependency "pry"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end