-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathgridster-rails.gemspec
More file actions
21 lines (18 loc) · 951 Bytes
/
gridster-rails.gemspec
File metadata and controls
21 lines (18 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/gridster-rails/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["William Van Etten", "Henk van der Veen"]
gem.email = ["bill@bioteam.net", "henk.van.der.veen@gmail.com"]
gem.description = "This gem provides jquery.gridster.js and jquery.gridster.css for your Rails 3+ application."
gem.summary = "Use gridster with Rails 3+"
gem.homepage = "http://rubygems.org/gems/gridster-rails"
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.name = "gridster-rails"
gem.require_paths = ["lib"]
gem.version = Gridster::Rails::VERSION
gem.license = 'MIT'
gem.files = Dir["{lib,vendor}/**/*"] + ["LICENSE", "README.md"]
gem.add_dependency "railties", '>= 3.1.0', '< 6.0'
end