Sha256: 1e213163e60b3916cd9de571eded7f8725a2b29f01d39643b3f5d2fa0a143718

Contents?: true

Size: 1013 Bytes

Versions: 1

Compression:

Stored size: 1013 Bytes

Contents

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

Gem::Specification.new do |s|
  s.name        = "timeframe"
  s.version     = Timeframe::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Andy Rossmeissl", "Seamus Abshere", "Derek Kastner"]
  s.email       = ["andy@rossmeissl.net"]
  s.homepage    = "http://github.com/rossmeissl/timeframe"
  s.summary     = %Q{Date intervals}
  s.description = %Q{A Ruby class for describing and interacting with timeframes.}

  s.rubyforge_project = "timeframe"

  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.5'
  s.add_runtime_dependency 'i18n'

  s.add_development_dependency "bundler"
  s.add_development_dependency "rake"
  s.add_development_dependency "rspec"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
timeframe-1.0.0 timeframe.gemspec