Sha256: b3e68303fdde6b8f0a03ab89f8ed0774a76dd5e50e60e97d9db66707d80fb18f
Contents?: true
Size: 934 Bytes
Versions: 3
Compression:
Stored size: 934 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_runtime_dependency 'multi_json' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
timeframe-0.2.1 | timeframe.gemspec |
timeframe-0.2.0 | timeframe.gemspec |
timeframe-0.1.1 | timeframe.gemspec |