Sha256: ce16a70ea4244e273ccc0f6c43b7c9adac33ce733c155a38db14e3f486f59f88

Contents?: true

Size: 1.25 KB

Versions: 6

Compression:

Stored size: 1.25 KB

Contents

# 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 = ['radarlistener@gmail.com', 'github@lauranjansen.com']
  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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
dotiw-5.3.3 dotiw.gemspec
dotiw-5.3.2 dotiw.gemspec
dotiw-5.3.1 dotiw.gemspec
dotiw-5.3.0 dotiw.gemspec
dotiw-5.2.0 dotiw.gemspec
dotiw-5.1.0 dotiw.gemspec