forked from zpaulovics/datetimepicker-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datetimepicker-rails.gemspec
23 lines (20 loc) · 1.13 KB
/
datetimepicker-rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'datetimepicker-rails/version'
Gem::Specification.new do |gem|
gem.name = "datetimepicker-rails"
gem.version = Datetimepicker::Rails::VERSION
gem.authors = ["zpaulovics"]
gem.email = ["[email protected]"]
gem.description = %q{A date and time picker for Twitter Bootstrap in Rails using Simple Form}
gem.summary = %q{This gem packages the bootstrap-datetimepicker for Rails 3.1+ asset pipeline, and creates the Simple Form custom fields. The current version is compatible with Bootstrap 3+, Rails 4+ and SimpleForm 3.1+}
gem.homepage = "https://github.com/zpaulovics/datetimepicker-rails.git"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency 'bundler', '~> 1.3'
gem.add_development_dependency 'rake'
gem.add_runtime_dependency 'momentjs-rails', '>= 2.9.0'
end