-
Notifications
You must be signed in to change notification settings - Fork 2
/
flexible_date.gemspec
28 lines (22 loc) · 1001 Bytes
/
flexible_date.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require 'flexible_date/version'
Gem::Specification.new do |s|
s.name = 'flexible_date'
s.version = FlexibleDate::VERSION
s.date = %q{2012-02-10}
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.author = 'Rodrigo Manhães'
s.description = 'Make ActiveRecord understand any date format you want.'
s.email = '[email protected]'
s.homepage = 'https://github.com/rodrigomanhaes/flexible_date'
s.summary = 'Make possible enter date fields in any format into your ActiveRecord models'
s.rdoc_options = ['--charset=UTF-8']
s.require_paths = ['lib']
s.files = Dir.glob('lib/**/*.rb') + %w(README.rdoc LICENSE.txt)
s.add_dependency('rails', '~> 3.0')
s.add_development_dependency('sqlite3-ruby', '~> 1.3.3')
s.add_development_dependency('rspec-rails', '~> 2.11.0')
s.add_development_dependency('bundler')
s.add_development_dependency('capybara')
end