Sha256: e8e6415c43faba1d98bc61f1d417df0f56c1e93cfdb9ce1a16e61bacb9449383

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "time_ext/version"

Gem::Specification.new do |s|
  s.name        = "time_ext"
  s.version     = TimeExt::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Jim Myhrberg"]
  s.email       = ["contact@jimeh.me"]
  s.homepage    = "http://github.com/jimeh/time_ext"
  s.summary     = "Extends the abilities of Ruby's built-in Time class by building on top of ActiveSupport."
  s.description = "Extends the abilities of Ruby's built-in Time class by building on top of ActiveSupport."

  s.rubyforge_project = "time_ext"

  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"]
  
  s.add_runtime_dependency 'activesupport', '>= 2.3.2'
  s.add_runtime_dependency 'i18n', '>= 0.4.2'
  
  s.add_development_dependency 'rake', '>= 0.8.7'
  s.add_development_dependency 'rspec', '>= 2.1.0'
  s.add_development_dependency 'yard', '>= 0.6.3'
  s.add_development_dependency 'ruby-debug'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
time_ext-0.2.9 time_ext.gemspec