forked from edavis10/redmine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
154 lines (127 loc) · 3.99 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# source 'http://rubygems.org'
source :rubygems
source :rubyforge
source :gemcutter
# gem 'bundler', '~> 1.0.0'
gem 'rails', '3.1.3'
gem 'dynamic_form'
# gem 'rubytree', '0.5.2', :require => 'tree'
gem 'rubytree', '0.7.0'
# gem 'rack' , '~> 1.1.1'
# gem 'i18n', '>= 0.4.2'
# gem 'coderay', '~> 0.9.7'
gem 'coderay'
gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :jruby, :mingw_18]
# gem 'ruby-prof', :git => 'http://github.com/wycats/ruby-prof.git'
gem 'ruby-prof'
# gem 'jquery-rails'
# gem 'prototype-rails'
# gem 'prototype-rails', :git => "https://github.com/rails/prototype-rails.git"
gem 'prototype-rails'
gem 'therubyracer', :platforms => [:mri_18, :mri_19]
# Gems used only for assets and not required
# in production environments by default.
group :assets do
# gem 'sass-rails', " ~> 3.1.1"
# gem 'coffee-rails', "~> 3.1.1"
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
# TODO rails-3.1: review the core changes to awesome_nested_set and decide on actions
gem 'awesome_nested_set'
## TODO rails-3.1: review the core changes to open_id_authentication and decide on actions
# gem 'open_id_authentication'
gem 'net-ldap'
gem 'rails_autolink'
gem 'rails_legacy_mapper'
group :development do
# gem 'thin'
# gem 'autotest'
# gem 'autotest-growl'
# gem 'autotest-fsevent'
# gem 'mynyml-redgreen'
gem 'rails-dev-tweaks', '~> 0.5.1'
end
group :production do
end
group :test do
gem 'test-unit'
# gem 'shoulda', '~> 2.10.3'
# gem 'shoulda', :git => 'http://github.com/redox/shoulda', :branch => 'rails3'
gem 'shoulda'
gem 'mocha'
## ruby script/rails plugin install git://github.com/awebneck/object_daddy.git
# gem 'edavis10-object_daddy', :require => 'object_daddy'
# gem 'object_daddy', :git => 'https://github.com/awebneck/object_daddy.git'
# cannot install on mingw due to fail installing linecache with native extensions
platforms :mri_18 do gem 'ruby-debug' end
platforms :mri_19 do gem 'ruby-debug19', :require => 'ruby-debug' end
end
group :openid do
gem "ruby-openid", '~> 2.1.4', :require => 'openid'
end
group :rmagick do
platforms :mri_18 do gem "rmagick", "~> 1.15.17" end
## You cannot specify the same gem twice with different version requirements.
## You specified: rmagick (~> 1.15.17) and rmagick (>= 0)
## https://github.com/carlhuda/bundler/issues/751
# platforms :mri_19 do gem "rmagick" end
end
# Use the commented pure ruby gems, if you have not the needed prerequisites on
# board to compile the native ones. Note, that their use is discouraged, since
# their integration is propbably not that well tested and their are slower in
# orders of magnitude compared to their native counterparts. You have been
# warned.
#
platforms :mri, :mingw do
group :mysql do
gem "mysql"
# gem "ruby-mysql"
end
group :postgres do
gem "pg", "~> 0.9.0"
# gem "postgres-pr"
end
end
platforms :mri_18, :mingw_18 do
group :sqlite do
# gem "sqlite3-ruby", "< 1.3", :require => "sqlite3"
gem "sqlite3"
end
end
platforms :mri_19 do
## Add Windows support
## https://github.com/brianmario/mysql2/issues/8
## Getting mysql2 gem to work with Ruby on Rails 3.0 and Windows 7 64bit
## http://paul-wong-jr.blogspot.com/2011/06/getting-mysql2-gem-to-work-with-ruby-on.html
group :mysql2 do
gem "mysql2"
end
group :sqlite do
gem "sqlite3"
end
end
platforms :jruby do
gem "jruby-openssl"
group :mysql do
gem "activerecord-jdbcmysql-adapter"
end
group :postgres do
gem "activerecord-jdbcpostgresql-adapter"
end
group :sqlite do
gem "activerecord-jdbcsqlite3-adapter"
end
end
# Load a "local" Gemfile
gemfile_local = File.join(File.dirname(__FILE__), "Gemfile.local")
if File.readable?(gemfile_local)
puts "Loading #{gemfile_local} ..." if $DEBUG
instance_eval(File.read(gemfile_local))
end
# Load plugins Gemfiles
Dir.glob(File.join(File.dirname(__FILE__), %w(vendor plugins * Gemfile))) do |file|
puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v`
instance_eval File.read(file)
end