forked from cajun-code/datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datatables.gemspec
30 lines (24 loc) · 1.44 KB
/
datatables.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'datatables/version'
Gem::Specification.new do |spec|
spec.name = "datatables"
spec.version = Datatables::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["Raul Alexis Betancor Santana"]
spec.email = ["[email protected]"]
spec.homepage = "http://github.com/rbetancor/datatables"
spec.summary = %q{Datatables is a Rails 3 & Rails 4 plugin that enables the easy creation of dynamic datatable views on top of any ActiveRecord model}
spec.description = %q{Datatables is a Rails 3 & Rails 4 plugin that enables the easy creation of dynamic datatable views on top of any ActiveRecord model. Datatables provides a simple helper that can be utilized in the view to automatically display a dynamic view on top of a model. Datatables handles the entire front end and backend support to do thispec. }
spec.add_dependency('rails','>= 3.1')
spec.add_dependency('jquery-rails')
spec.license = 'MIT'
spec.rubyforge_project = "datatables"
spec.files = `git ls-files`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.5"
spec.add_development_dependency "rake"
end