-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
114 lines (102 loc) · 2.87 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
source 'https://rubygems.org'
gem 'rails', '3.2.19'
gem 'rake'
gem "jquery-rails", "~> 2.0.2"
gem "i18n", "~> 0.6.0"
gem "coderay", "~> 1.0.6"
gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby]
gem "builder", "3.0.0"
gem 'sprockets'
# Optional gem for LDAP authentication
group :ldap do
gem "net-ldap", "~> 0.3.1"
end
# Optional gem for OpenID authentication
group :openid do
gem "ruby-openid", "~> 2.1.4", :require => "openid"
gem "rack-openid"
end
# Optional gem for exporting the gantt to a PNG file, not supported with jruby
platforms :mri, :mingw do
group :rmagick do
# RMagick 2 supports ruby 1.9
# RMagick 1 would be fine for ruby 1.8 but Bundler does not support
# different requirements for the same gem on different platforms
gem "rmagick", ">= 2.0.0"
end
end
group :production do
gem "mysql2", "~> 0.3.10"
gem "passenger"
gem "sentry-raven"
end
group :development do
gem "rdoc", ">= 2.4.2"
gem "yard"
gem "sqlite3"
end
group :test do
gem "shoulda", "~> 2.11"
# Shoulda does not work nice on Ruby 1.9.3 and JRuby 1.7.
# It seems to need test-unit explicitely.
platforms = [:mri_19]
platforms << :jruby if defined?(JRUBY_VERSION) && JRUBY_VERSION >= "1.7"
gem "test-unit", :platforms => platforms
gem 'minitest', '4.7.5'
gem 'minitest-reporters'
gem "mocha", "~>0.13.3", :require => false
gem 'cane', '~> 2.6.2'
gem 'flay'
gem 'timecop'
# for rolling back each modification during a test
gem 'database_cleaner'
end
local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
if File.exists?(local_gemfile)
puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v`
instance_eval File.read(local_gemfile)
end
# Load plugins' Gemfiles
Dir.glob File.expand_path("../plugins/*/Gemfile", __FILE__) do |file|
puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v`
instance_eval File.read(file)
end
group :development, :test do
gem 'railroady'
gem "byebug"
end
gem "thin"
gem "SyslogLogger" # in production mode log to syslog
gem "acts-as-taggable-on", '3.5.0'
#piwik analytics
gem 'piwik_analytics', '~> 1.0.0'
#gem 'turbolinks'
#pry console no need for readline
gem "pry"
#dropbox plugin
gem "oauth"
gem "multipart-post"
# htmlentities are needed for decoding wysiwyg into wiki
gem "htmlentities"
gem "rghost"
gem 'render_parent', '>= 0.0.4'
gem "xml-object"
# Activities rendering
gem "nokogiri"
# for redmine_social_plugin
gem "meta_search"
gem "will_paginate"
gem "power_enum"
gem 'acts_as_commentable', '3.0.1'
gem 'cocaine','0.3.2'
gem 'paperclip','3.1.4'
gem 'docsplit', '~> 0.7.5'
gem 'iconv'
gem 'capit'
gem 'rqrcode_png'
gem 'pismo'
gem 'sys-proctable'
gem 'simplecov', :require => false, :group => :test
gem 'simplecov-json', :require => false, :group => :test
gem 'simplecov-rcov', :require => false, :group => :test
gem "galetahub-simple_captcha", :require => "simple_captcha"