forked from Yellowen/Faalis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaalis.gemspec
executable file
·65 lines (50 loc) · 2.04 KB
/
faalis.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
$:.push File.expand_path('../lib', __FILE__)
# Maintain Faalis gem's version:
require 'faalis/version'
# Describe Faalis gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'faalis'
s.version = Faalis::VERSION
s.authors = ['Sameer Rahmani', 'Behnam Ahmad Khan Beigi']
s.email = ['lxsameer@gnu.org', 'yottanami@gnu.org']
s.homepage = 'http://faalis.io'
s.summary = 'Faalis is a ruby on rails engine which provides a platform to easily build a web application'
s.description = 'Faalis is a ruby on rails engine which provides a platform to easily build a web application. Features like Dashboard, complex code generation and other awesome features. For more information checkout the docs.'
s.required_ruby_version = '~> 2.0'
s.licenses = ['GPL-2.0']
s.files = Dir["{app,config,db,lib}/**/*", 'LICENSE', 'Rakefile',
'README.md']
s.test_files = Dir['test/**/*']
s.require_paths = ['lib']
s.cert_chain = ['certs/lxsameer.pem']
s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
s.add_dependency 'rails', '~> 5.1.0'
s.add_dependency 'railties'
# Authentication
s.add_dependency 'devise', '~>4.3.0'
#s.add_dependency 'admin_lte-rails', '~> 2.3.0'
# Authorization
s.add_dependency 'pundit', '~>1.1.0'
# Forms
s.add_dependency 'formtastic', '~>3.1.5'
# TODO: Move this gem to template gems
s.add_dependency 'formtastic-bootstrap'
# Assets
s.add_dependency 'sass-rails'
s.add_dependency 'coffee-rails'
s.add_dependency 'slim-rails'
s.add_dependency 'sprockets', '~>3.7.1'
s.add_dependency 'kaminari'
# i18n
s.add_dependency 'i18n'
s.add_dependency 'rails-i18n'
s.add_dependency 'colorize'
# model_discovery
s.add_dependency 'model_discovery', '~> 0.3.8'
# To support multiple ORM at once
s.add_dependency 'orm_adapter'
# We need to use next version of did you mean gem
# for JRuby support. current version: 0.9.5
#s.add_development_dependency 'did_you_mean'
s.add_development_dependency 'annotate'
end