Skip to content

Commit 7335494

Browse files
committed
add gemspec
1 parent 22fe141 commit 7335494

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

jquery-datatables-rails.gemspec

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
require File.expand_path('../lib/jquery_datatables/rails/version', __FILE__)
2+
3+
Gem::Specification.new do |s|
4+
s.name = "jquery-datatables-rails"
5+
s.version = JqueryDatatables::Rails::VERSION
6+
s.platform = Gem::Platform::RUBY
7+
s.authors = ["Kristina Clair"]
8+
s.email = ["[email protected]"]
9+
s.homepage = "https://github.com/kclair/jquery-datatables-rails"
10+
s.summary = "Use the jQuery Datatables plugin with Rails 3.1"
11+
s.description = "This gem provides the jQuery plugin datatables for your Rails 3.1 application."
12+
13+
s.required_rubygems_version = ">= 1.3.6"
14+
15+
s.add_dependency "railties", "~> 3.0"
16+
s.add_development_dependency "bundler", "~> 1.0.0"
17+
s.add_development_dependency "rails", "~> 3.1"
18+
19+
s.files = `git ls-files`.split("\n")
20+
s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
21+
s.require_path = 'lib'
22+
end

0 commit comments

Comments
 (0)