-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathedgarj.gemspec
37 lines (32 loc) · 1.41 KB
/
edgarj.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
33
34
35
36
37
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "edgarj/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "edgarj"
s.version = Edgarj::VERSION
s.licenses = ['MIT']
s.authors = ["Fuminori Ido"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/fuminori-ido/edgarj"
s.summary = "Scaffold with Ajax, search, sort, 'belongs_to' popup, and more."
s.description = <<EOM
Edgarj is an Ajax-based scaffold with QBE(Query By Example) search form,
column sort on record list,
popup view & controller for 'belongs_to' relation table to pick up a parent record,
csv download, and
user-role based access control.
EOM
s.files = Dir["{app,config,db,lib,locale}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.required_ruby_version = '>= 2.5.0'
s.add_dependency "rails", '~> 4.0'
s.add_dependency 'jquery-rails', '~> 4.4', '>= 4.4.0'
s.add_dependency 'jquery-ui-rails', '>= 5', '< 7'
s.add_dependency "kaminari", '>= 0.15', '< 2.0'
s.add_dependency "remotipart", '~> 1.2'
s.add_dependency 'awesome_nested_set', '~> 3'
s.add_dependency 'activerecord-session_store', '~> 0.1'
s.add_dependency 'sprockets', '~> 3.7.2'
s.add_development_dependency "mysql2", '~> 0.3.20'
end