forked from UDProducts/multi-select
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmulti-select.gemspec
More file actions
18 lines (17 loc) · 819 Bytes
/
multi-select.gemspec
File metadata and controls
18 lines (17 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'multi-select/version'
Gem::Specification.new do |gem|
gem.name = "multi-select"
gem.version = Multi::Select::VERSION
gem.authors = ["Alagunambi Welkin"]
gem.email = ["welkin@udproducts.in"]
gem.description = %q{A gem to integrate Jquery multi-select js}
gem.summary = %q{Simple integrator of Jquery multi-select js(http://loudev.com/)}
gem.homepage = "https://github.com/udproducts/multi-select"
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", "vendor"]
end