Skip to content

Update dependencies to sassc-rails. #234

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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