forked from Sology/smart_listing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
smart_listing.gemspec
32 lines (25 loc) · 1.17 KB
/
smart_listing.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
31
32
$:.push File.expand_path("../lib", __FILE__)
require "smart_listing/version"
Gem::Specification.new do |s|
s.name = "smart_listing"
s.version = SmartListing::VERSION
s.authors = ["Sology"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/Sology/smart_listing"
s.description = "Ruby on Rails data listing gem with built-in sorting, filtering and in-place editing."
s.summary = "SmartListing helps creating sortable lists of ActiveRecord collections with pagination, filtering and inline editing."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
s.add_dependency "rails", ">=3.2"
s.add_dependency "coffee-rails"
s.add_dependency "kaminari", ">= 0.17"
s.add_dependency "jquery-rails"
s.add_development_dependency "bootstrap-sass"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "guard-rspec"
s.add_development_dependency "byebug"
s.add_development_dependency "capybara", "< 2.14"
s.add_development_dependency "capybara-webkit", "~> 1.14"
s.add_development_dependency "database_cleaner"
end