-
Notifications
You must be signed in to change notification settings - Fork 1
/
iso8601-js.gemspec
24 lines (20 loc) · 1.06 KB
/
iso8601-js.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/iso8601-js/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'iso8601-js'
gem.version = ISO8601JS::VERSION
gem.authors = ['Gopal Patel', 'David Yung', 'Sai Tun']
gem.license = 'MIT'
gem.homepage = 'https://github.com/Do/iso8601.js'
gem.summary = 'Sprockets asset gem for the iso8601.js EC5.1 polyfill library'
gem.description = 'Adds cross-browser ISO 8601 support to the JavaScript Date object based on EC5.1. This is a Sprockets gem to simplify inclusion of the client-side library.'
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.require_paths = ['lib']
# Dependencies
gem.add_dependency 'sprockets', '~> 2.0'
gem.add_dependency 'coffee-script', '~> 2.2'
gem.add_development_dependency 'rake'
end