This repository has been archived by the owner on Jun 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
66 lines (58 loc) · 1.53 KB
/
Gemfile
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
66
source :rubygems
gem 'bundler'
gem 'rack', '1.3.6'
gem 'rack-flash', '0.1.1'
gem 'i18n', '0.6.0'
gem 'sinatra', '1.3.2'
gem 'sinatra-contrib', '1.3.1'
gem 'dm-core', '1.2.0'
gem 'dm-migrations', '1.2.0'
gem 'dm-timestamps', '1.2.0'
gem 'dm-validations', '1.2.0'
gem 'dm-types', '1.2.0'
gem 'dm-is-tree', '1.2.0'
gem 'dm-tags', '1.2.0'
gem 'dm-is-searchable', '1.2.0'
gem 'dm-pager', :git => 'git://github.com/yayugu/dm-pagination.git'
gem 'dm-aggregates', '1.2.0'
gem 'data_objects', :git => 'git://github.com/datamapper/do.git', :ref => 'd7cb262d89a1'
gem 'builder', '3.0.0'
gem 'haml', '3.1.1'
gem 'sass', '3.1.1'
gem 'slim', '0.9.2'
gem 'rake', '0.9.2'
gem 'erubis', '2.6.6'
gem 'activesupport', '3.1.1'
gem 'nokogiri', '1.5.2'
gem 'tux'
gem 'padrino-helpers', '0.10.5'
gem 'coderay', '1.0.5'
gem 'kramdown'
gem 'RedCloth', '4.2.9'
gem 'wikicloth', '0.7.1'
gem 'yard-sinatra', '1.0.0'
gem 'stringex', '1.3.2'
gem 'backports', '2.3.0'
Dir["public/plugin/lokka-*/Gemfile"].each {|path| eval(open(path) {|f| f.read }) }
group :production do
end
group :development do
gem 'tapp', '1.3.0'
end
group :test do
gem 'tapp', '1.3.0'
gem 'rack-test', '0.6.1', :require => 'rack/test'
gem 'rspec', '2.8.0'
gem 'simplecov', :require => false if RUBY_VERSION >= '1.9'
gem 'factory_girl', '2.6.1'
gem 'database_cleaner', '0.7.1'
end
group :mysql do
gem 'dm-mysql-adapter', '1.2.0'
end
group :postgresql do
gem 'dm-postgres-adapter', '1.2.0'
end
group :sqlite do
gem 'dm-sqlite-adapter', '1.2.0'
end