Sha256: de22080f2508b273c69855aa8ea6ba85ca2cf60aaff2c587182122a1103989d2
Contents?: true
Size: 1.37 KB
Versions: 3
Compression:
Stored size: 1.37 KB
Contents
# coding: utf-8 require_relative 'lib/teasy/version' Gem::Specification.new do |spec| spec.name = 'teasy' spec.version = Teasy::VERSION spec.authors = ['Kai Kuchenbecker'] spec.email = ['Kai.Kuchenbecker@invision.de'] spec.summary = %q{Teasy intends to make handling time zones easy.} spec.description = %q{Teasy builds on tzinfo to get time zone data and provides time classes to ease working with time zones. It provides TimeWithZone which is similiar to Rails' ActiveSupport::TimeWithZone but with less quirks. And it provides FloatingTime which is time without a zone. } spec.homepage = '' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_runtime_dependency 'tzinfo', '~> 1.2' spec.add_runtime_dependency 'tzinfo-data', '~> 1.2015.1' spec.add_development_dependency 'bundler', '~> 1.6' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'minitest' spec.add_development_dependency 'minitest-reporters' spec.add_development_dependency 'rubocop' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
teasy-0.1.0 | teasy.gemspec |
teasy-0.0.2 | teasy.gemspec |
teasy-0.0.1 | teasy.gemspec |