##// END OF EJS Templates
Gemfile: remove rake...
Toshi MARUYAMA -
r10581:fd41840434c3
parent child
Show More
@@ -1,96 +1,95
1 1 source 'http://rubygems.org'
2 2
3 3 gem 'rails', '3.2.8'
4 4 gem "jquery-rails", "~> 2.0.2"
5 5 gem "i18n", "~> 0.6.0"
6 6 gem "coderay", "~> 1.0.6"
7 7 gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby]
8 8 gem "builder", "3.0.0"
9 gem "rake"
10 9
11 10 # Optional gem for LDAP authentication
12 11 group :ldap do
13 12 gem "net-ldap", "~> 0.3.1"
14 13 end
15 14
16 15 # Optional gem for OpenID authentication
17 16 group :openid do
18 17 gem "ruby-openid", "~> 2.1.4", :require => "openid"
19 18 gem "rack-openid"
20 19 end
21 20
22 21 # Optional gem for exporting the gantt to a PNG file, not supported with jruby
23 22 platforms :mri, :mingw do
24 23 group :rmagick do
25 24 # RMagick 2 supports ruby 1.9
26 25 # RMagick 1 would be fine for ruby 1.8 but Bundler does not support
27 26 # different requirements for the same gem on different platforms
28 27 gem "rmagick", ">= 2.0.0"
29 28 end
30 29 end
31 30
32 31 # Database gems
33 32 platforms :mri, :mingw do
34 33 group :postgresql do
35 34 gem "pg", ">= 0.11.0"
36 35 end
37 36
38 37 group :sqlite do
39 38 gem "sqlite3"
40 39 end
41 40 end
42 41
43 42 platforms :mri_18, :mingw_18 do
44 43 group :mysql do
45 44 gem "mysql"
46 45 end
47 46 end
48 47
49 48 platforms :mri_19, :mingw_19 do
50 49 group :mysql do
51 50 gem "mysql2", "~> 0.3.11"
52 51 end
53 52 end
54 53
55 54 platforms :jruby do
56 55 gem "jruby-openssl"
57 56
58 57 group :mysql do
59 58 gem "activerecord-jdbcmysql-adapter"
60 59 end
61 60
62 61 group :postgresql do
63 62 gem "activerecord-jdbcpostgresql-adapter"
64 63 end
65 64
66 65 group :sqlite do
67 66 gem "activerecord-jdbcsqlite3-adapter"
68 67 end
69 68 end
70 69
71 70 group :development do
72 71 gem "rdoc", ">= 2.4.2"
73 72 gem "yard"
74 73 end
75 74
76 75 group :test do
77 76 gem "shoulda", "~> 2.11"
78 77 # Shoulda does not work nice on Ruby 1.9.3 and JRuby 1.7.
79 78 # It seems to need test-unit explicitely.
80 79 platforms = [:mri_19]
81 80 platforms << :jruby if defined?(JRUBY_VERSION) && JRUBY_VERSION >= "1.7"
82 81 gem "test-unit", :platforms => platforms
83 82 gem "mocha", "0.12.3"
84 83 end
85 84
86 85 local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
87 86 if File.exists?(local_gemfile)
88 87 puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v`
89 88 instance_eval File.read(local_gemfile)
90 89 end
91 90
92 91 # Load plugins' Gemfiles
93 92 Dir.glob File.expand_path("../plugins/*/Gemfile", __FILE__) do |file|
94 93 puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v`
95 94 instance_eval File.read(file)
96 95 end
General Comments 0
You need to be logged in to leave comments. Login now