Sha256: ab916f8f7db080194740e413f9df287ef457668544b251c2137ffb267bba783d
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 KB
Contents
# coding: utf-8 require File.expand_path("../lib/teasy/version", __FILE__) 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.require_paths = ['lib'] spec.required_ruby_version = '> 2.0' spec.add_runtime_dependency 'tzinfo', '~> 2.0' spec.add_runtime_dependency 'tzinfo-data', '~> 1.2019.2' spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' spec.add_development_dependency 'minitest' spec.add_development_dependency 'minitest-reporters' spec.add_development_dependency 'rubocop' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
teasy-0.2.6 | teasy.gemspec |