forked from cainlevy/recordselect
-
Notifications
You must be signed in to change notification settings - Fork 6
/
recordselect_vho.gemspec
28 lines (25 loc) · 1.13 KB
/
recordselect_vho.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
25
26
27
28
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'record_select/version'
Gem::Specification.new do |s|
s.name = %q{recordselect_vho}
s.version = RecordSelect::Version::STRING
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Sergio Cambra", "Volker Hochstein", "Lance Ivy"]
s.email = %q{activescaffold@googlegroups.com}
s.homepage = %q{http://github.com/vhochstein/recordselect}
s.summary = %q{RecordSelect widget as a replacement for massive drop down lists}
s.description = %q{RecordSelect is a Rails widget to help you pick one record out of many. I designed it as a more usable and performant alternative to generating a massive dropdown list}
s.extra_rdoc_files = [
"README"
]
s.files = Dir["{app,lib}/**/*"] + %w[MIT-LICENSE CHANGELOG README]
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.test_files = [
"test/recordselect_test.rb"
]
s.add_development_dependency(%q<shoulda>, [">= 0"])
s.add_development_dependency(%q<bundler>, ["> 1.0.0"])
s.add_runtime_dependency(%q<rails>, [">= 3.1.0"])
end