forked from rweng/jquery-datatables-rails
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
d486b31
commit de7cabe
Showing
1 changed file
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,20 @@ require "jquery/datatables/rails/version" | |
Gem::Specification.new do |s| | ||
s.name = "jquery-datatables-rails" | ||
s.version = Jquery::Datatables::Rails::VERSION | ||
s.authors = ["Robin Wenglewski"] | ||
s.email = ["[email protected]"] | ||
s.homepage = "https://github.com/rweng/jquery-datatables-rails" | ||
s.authors = ["Marlin W. Pierce"] | ||
s.email = ["[email protected]"] | ||
s.homepage = "https://github.com/marlinpierce/jquery-datatables-rails" | ||
s.summary = %q{jquery datatables for rails} | ||
s.description = %q{} | ||
s.description = <<-HEREDOC | ||
This gem gathers components for datatables for rails. | ||
Datatables is a jquery javascript library for efficient rendering of tables of data fetched from a web service. | ||
This gem does the following: | ||
- Includes the javascript, stylesheets, and other files from database and installs them in the rails asset pipeline. | ||
- Has dependencies to collect the gems needed to use datatables with rails. | ||
- Provides rails generators for datatables and datatables plugins. | ||
HEREDOC | ||
s.license = 'MIT' | ||
|
||
s.files = `git ls-files`.split("\n") | ||
|
@@ -18,8 +27,8 @@ Gem::Specification.new do |s| | |
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | ||
s.require_paths = ["lib"] | ||
|
||
s.add_dependency "jquery-rails" | ||
s.add_dependency "sass-rails" | ||
s.add_dependency "jquery-rails", '~> 4.3' | ||
s.add_dependency "sassc-rails", '~> 2.0' | ||
s.add_dependency 'railties', '>= 3.1' | ||
s.add_dependency 'actionpack', '>= 3.1' | ||
s.add_development_dependency 'rake' | ||
|