Sha256: 430fd0de7c5311f4c1048cceebdf766151f79e3065e8980cf89dd8ff75b436d2

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

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_development_dependency "minitest"
  s.add_development_dependency 'home_run'
  s.add_development_dependency 'rake'
  s.add_runtime_dependency 'activesupport', '>=2.3.5'
  s.add_runtime_dependency 'i18n'
  s.add_runtime_dependency 'multi_json'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
timeframe-0.1.0 timeframe.gemspec