File tree 1 file changed +22
-0
lines changed
1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change
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
+
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
You can’t perform that action at this time.
0 commit comments