Sha256: c5dc52c17dd55fa7aff696d28ac44e2b6597acf922c559d993a773702a239483
Contents?: true
Size: 1004 Bytes
Versions: 1
Compression:
Stored size: 1004 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'time_with_zone/version' Gem::Specification.new do |spec| spec.name = "time_with_zone" spec.version = TimeWithZone::VERSION spec.authors = ["sonots"] spec.email = ["sonots@gmail.com"] spec.summary = %q{Handle Time with Timezone withtout ActiveSupport or ENV['TZ']} spec.description = %q{Handle Time with Timezone withtout ActiveSupport or ENV['TZ']} spec.homepage = "https://github.com/sonots/time_with_zone" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "tzinfo" spec.add_development_dependency "bundler", "~> 1.11" spec.add_development_dependency "rake", "~> 10.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
time_with_zone-0.1.0 | time_with_zone.gemspec |