-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnunchaku.gemspec
51 lines (38 loc) · 1.51 KB
/
nunchaku.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "nunchaku/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "nunchaku"
s.version = Nunchaku::VERSION
s.authors = ["Marketboomer"]
s.email = ["info@marketboomer.com"]
s.homepage = "http://www.marketboomer.com"
s.summary = "Base engine for Market Boomer"
s.description = "Base engine for Market Boomer"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
# runtime dependencies .......................................................
s.add_dependency "rails", "~> 4.0"
s.add_dependency 'sass-rails', '~> 4.0.0'
s.add_dependency 'bootstrap-sass', '~> 3.1.1'
s.add_dependency "font-awesome-sass"
s.add_dependency "awesome_nested_set", "~> 2.1"
s.add_dependency "state_machine", "~> 1.2"
s.add_dependency 'cancan'
s.add_dependency 'acts_as_list'
s.add_dependency 'sorted'
s.add_dependency 'responders'
s.add_dependency 'has_scope'
s.add_dependency 'kaminari'
s.add_dependency 'draper'
s.add_dependency 'ransack'
s.add_dependency 'simple_form'
s.add_dependency 'chosen-rails'
s.add_dependency 'select2-rails'
s.add_dependency 'bootstrap-datepicker-rails'
s.add_dependency 'super_resources'
# development dependencies ...................................................
s.add_development_dependency "sqlite3"
s.add_development_dependency 'sextant'
end