forked from radar/distance_of_time_in_words
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dotiw.gemspec
35 lines (29 loc) · 1.25 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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
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.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/distance_of_time_in_words'
s.add_dependency 'activesupport'
s.add_dependency 'i18n'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'bundler'
s.add_development_dependency 'pry'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'tzinfo', '~> 1.2.7'
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