Skip to content

Commit

Permalink
Resolve #2, Resolve rweng#231, Update dependencies to sassy-rails.
Browse files Browse the repository at this point in the history
  • Loading branch information
marlinpierce committed Jan 13, 2019
1 parent d486b31 commit de7cabe
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions jquery-datatables-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -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'
Expand Down

0 comments on commit de7cabe

Please sign in to comment.