forked from zflat/select2-foundation
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathselect2-foundation.gemspec
More file actions
27 lines (22 loc) · 995 Bytes
/
select2-foundation.gemspec
File metadata and controls
27 lines (22 loc) · 995 Bytes
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
$:.push File.expand_path("../lib", __FILE__)
require "select2-foundation/version"
Gem::Specification.new do |s|
s.name = "select2-foundation"
s.version = Select2Foundation::VERSION
s.authors = ["William Wedler"]
s.email = ["wwedler@riseup.net"]
s.homepage = "https://github.com/zflat/select2-foundation"
s.source = "https://github.com/zflat/select2-foundation"
s.summary = "select2 theme for ZURB foundation on SASS"
s.description = "Simple css to make select2 widgets fit in with foundation"
s.license = "MIT"
s.files = Dir["{lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "sass", [">= 3.3.0", "< 3.5"]
s.add_dependency "railties", [">= 3.1.0"]
s.add_dependency "select2-rails", "~> 4.0.1"
s.add_dependency "foundation-rails", ">= 5"
s.add_development_dependency "bundler", "~> 1.3"
s.add_development_dependency "rails"
s.add_development_dependency "rake"
end