Sha256: 34cfdd251fd4b9264c99aa1be080bd8ebd7531cee4f26eb68124b22449656a30
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'interpret_date/version' Gem::Specification.new do |spec| spec.name = "interpret_date" spec.version = InterpretDate::VERSION spec.authors = ["Squaremouth"] spec.email = ["developers@squaremouth.com"] spec.summary = %q{Mixin for easily parsing American formatted date strings into Date objects.} spec.description = %q{Module to provide helper methods for interpreting American formatted date strings.} spec.homepage = "https://github.com/sqm/interpret_date" 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 'activerecord', '< 8' spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
interpret_date-1.3.7 | interpret_date.gemspec |