forked from tsechingho/chosen-rails
-
Notifications
You must be signed in to change notification settings - Fork 1
/
chosen-rails.gemspec
23 lines (20 loc) · 1.09 KB
/
chosen-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 -*-
require File.expand_path('../lib/chosen-rails/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Tse-Ching Ho"]
gem.email = ["[email protected]"]
gem.description = %q{Chosen is a javascript library of select box enhancer for jQuery and Protoype. This gem integrates Chosen with Rails asset pipeline for easy of use.}
gem.summary = %q{Integrate Chosen javascript library with Rails asset pipeline}
gem.homepage = "https://github.com/tsechingho/chosen-rails"
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.name = "chosen-rails"
gem.require_paths = ["lib"]
gem.version = Chosen::Rails::VERSION
gem.add_dependency "railties", "~> 3.0"
gem.add_dependency "thor", "~> 0.14"
gem.add_development_dependency "bundler", "~> 1.0"
gem.add_development_dependency "rails", "~> 3.0"
gem.add_development_dependency "sass", "~> 3.1"
end