-
Notifications
You must be signed in to change notification settings - Fork 20
/
ajax-chosen-rails.gemspec
24 lines (21 loc) · 1.1 KB
/
ajax-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
24
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ajax-chosen-rails/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Nathan Broadbent"]
gem.email = ["[email protected]"]
gem.description = %q{Chosen is a javascript library of select box enhancer for jQuery and Protoype. This gem integrates Ajax-Chosen with Rails asset pipeline for ease of use.}
gem.summary = %q{Integrate Ajax-Chosen javascript library with Rails asset pipeline}
gem.homepage = "https://github.com/fatfreecrm/ajax-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 = "ajax-chosen-rails"
gem.require_paths = ["lib"]
gem.version = AjaxChosen::Rails::VERSION
gem.add_dependency "railties"
gem.add_dependency "thor"
gem.add_dependency "chosen-rails_ffcrm"
gem.add_development_dependency "bundler"
gem.add_development_dependency "rails"
gem.add_development_dependency "sass"
end