forked from kiso-io/rrt-gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrrt.gemspec
42 lines (32 loc) · 1.14 KB
/
rrt.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
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'rrt/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'rrt'
s.version = RRT::VERSION
s.authors = ['RRT']
s.email = ['john@rapidrailsthemes.com']
s.homepage = 'https://rapidrailsthemes.com/'
s.summary =
s.description = 'RRT Themes'
s.files = Dir['{app,config,db,lib,support}/**/*'] +
Dir['*.gemspec'] +
['VERSION', 'CHANGELOG', 'LICENSE', 'Rakefile', 'README.rdoc']
s.add_runtime_dependency 'jquery-rails'
s.add_runtime_dependency 'rails', '>= 3.1'
s.add_runtime_dependency 'sass-rails'
s.add_development_dependency 'aws-sdk'
s.add_development_dependency 'byebug'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'version_bumper'
s.post_install_message = <<-DOC
All done!
Any questions? Log into your account and submit an issue via
the support area.
Need help? Check out the Documentation first:
https://rapidrailsthemes.com/docs
and then the FAQ:
https://rapidrailsthemes.com/faq
DOC
end