forked from gryphon/simple_datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple_datatables.gemspec
More file actions
24 lines (19 loc) · 891 Bytes
/
simple_datatables.gemspec
File metadata and controls
24 lines (19 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$:.push File.expand_path("../lib", __FILE__)
require "simple_datatables/version"
Gem::Specification.new do |s|
s.name = "simple_datatables"
s.version = SimpleDatatables::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Grigory"]
s.email = ["grigory@snsk.ru"]
s.homepage = "http://github.com/gryphon/simple_datatables"
s.summary = %q{Simple datatables to rails mapping using meta_search, will_paginage and jsonify}
s.description = %q{Simple datatables to rails mapping using meta_search, will_paginage and jsonify}
s.rubyforge_project = "data_table"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency "rails", "~> 3.1.0"
s.add_dependency "meta_search", '~> 1.1.0'
s.add_dependency "jsonify-rails"
end