forked from itmammoth/rails_sortable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rails_sortable.gemspec
29 lines (23 loc) · 1.05 KB
/
rails_sortable.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "rails_sortable/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "rails_sortable"
s.version = RailsSortable::VERSION
s.authors = ["itmammoth"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/itmammoth/rails_sortable"
s.summary = "Easy drag & drop sorting for rails."
s.description = "rails_sortable provides easy drag & drop sorting for rails AR models."
s.licenses = ['MIT']
s.files = Dir["{app,config,lib,vendor/assets}/**/*", "LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "rails", "~> 4.0"
s.add_development_dependency "jquery-rails", "~> 3.0"
s.add_development_dependency "jquery-ui-rails", "~> 4.1"
s.add_development_dependency "sqlite3", "~> 1.3"
s.add_development_dependency "rspec-rails", "~> 2.0"
s.add_development_dependency "pry-rails","~> 0.3"
s.add_development_dependency "pry-byebug", "~> 1.2"
end