##// END OF EJS Templates
2.6-stable: Gemfile: pin rack-cache 1.2 on Ruby 1.8.7 and 1.9.2...
Toshi MARUYAMA -
r14326:c78a95576c8e
parent child
Show More
@@ -1,112 +1,113
1 1 source 'https://rubygems.org'
2 2
3 3 gem "rails", "3.2.22"
4 gem "rack-cache", "1.2" if RUBY_VERSION < "1.9.3"
4 5 gem "jquery-rails", "~> 3.1.4"
5 6 gem "coderay", "~> 1.1.0"
6 7 gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby]
7 8 gem "builder", ">= 3.0.4"
8 9 gem "request_store", "1.0.5"
9 10 gem "mime-types"
10 11 gem "rbpdf", "~> 1.18.6"
11 12
12 13 gem "i18n", "~> 0.6.11"
13 14
14 15 # Optional gem for LDAP authentication
15 16 group :ldap do
16 17 gem "net-ldap", "~> 0.3.1"
17 18 end
18 19
19 20 # Optional gem for OpenID authentication
20 21 group :openid do
21 22 gem "ruby-openid", "~> 2.3.0", :require => "openid"
22 23 gem "rack-openid"
23 24 end
24 25
25 26 platforms :mri, :mingw do
26 27 # Optional gem for exporting the gantt to a PNG file, not supported with jruby
27 28 group :rmagick do
28 29 # RMagick 2 supports ruby 1.9
29 30 # RMagick 1 would be fine for ruby 1.8 but Bundler does not support
30 31 # different requirements for the same gem on different platforms
31 32 gem "rmagick", (RUBY_VERSION < "1.9" ? "2.13.3" : "~> 2.13.4")
32 33 end
33 34
34 35 # Optional Markdown support, not for JRuby
35 36 group :markdown do
36 37 gem "redcarpet", (RUBY_VERSION < "1.9" ? "~> 2.3.0" : "~> 3.3.2")
37 38 end
38 39 end
39 40
40 41 platforms :jruby do
41 42 # jruby-openssl is bundled with JRuby 1.7.0
42 43 gem "jruby-openssl" if Object.const_defined?(:JRUBY_VERSION) && JRUBY_VERSION < '1.7.0'
43 44 gem "activerecord-jdbc-adapter", "~> 1.3.2"
44 45 end
45 46
46 47 # Include database gems for the adapters found in the database
47 48 # configuration file
48 49 require 'erb'
49 50 require 'yaml'
50 51 database_file = File.join(File.dirname(__FILE__), "config/database.yml")
51 52 if File.exist?(database_file)
52 53 database_config = YAML::load(ERB.new(IO.read(database_file)).result)
53 54 adapters = database_config.values.map {|c| c['adapter']}.compact.uniq
54 55 if adapters.any?
55 56 adapters.each do |adapter|
56 57 case adapter
57 58 when 'mysql2'
58 59 gem "mysql2", "~> 0.3.11", :platforms => [:mri, :mingw]
59 60 gem "activerecord-jdbcmysql-adapter", :platforms => :jruby
60 61 when 'mysql'
61 62 gem "mysql", "~> 2.8.1", :platforms => [:mri, :mingw]
62 63 gem "activerecord-jdbcmysql-adapter", :platforms => :jruby
63 64 when /postgresql/
64 65 gem "pg", "~> 0.17.1", :platforms => [:mri, :mingw]
65 66 gem "activerecord-jdbcpostgresql-adapter", :platforms => :jruby
66 67 when /sqlite3/
67 68 gem "sqlite3", :platforms => [:mri, :mingw]
68 69 gem "jdbc-sqlite3", ">= 3.8.10.1", :platforms => :jruby
69 70 gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
70 71 when /sqlserver/
71 72 gem "tiny_tds", "~> 0.6.2", :platforms => [:mri, :mingw]
72 73 gem "activerecord-sqlserver-adapter", :platforms => [:mri, :mingw]
73 74 else
74 75 warn("Unknown database adapter `#{adapter}` found in config/database.yml, use Gemfile.local to load your own database gems")
75 76 end
76 77 end
77 78 else
78 79 warn("No adapter found in config/database.yml, please configure it first")
79 80 end
80 81 else
81 82 warn("Please configure your config/database.yml first")
82 83 end
83 84
84 85 group :development do
85 86 gem "rdoc", ">= 2.4.2"
86 87 gem "yard"
87 88 end
88 89
89 90 group :test do
90 91 gem "minitest"
91 92 gem "test-unit", "~> 3.0"
92 93 gem "shoulda", "~> 3.3.2"
93 94 gem "shoulda-matchers", "1.4.1"
94 95 gem "mocha", "~> 1.0.0", :require => 'mocha/api'
95 96 if RUBY_VERSION >= '1.9.3'
96 97 gem "capybara"
97 98 gem "selenium-webdriver"
98 99 end
99 100 end
100 101
101 102 local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
102 103 if File.exists?(local_gemfile)
103 104 puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v`
104 105 instance_eval File.read(local_gemfile)
105 106 end
106 107
107 108 # Load plugins' Gemfiles
108 109 Dir.glob File.expand_path("../plugins/*/{Gemfile,PluginGemfile}", __FILE__) do |file|
109 110 puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v`
110 111 #TODO: switch to "eval_gemfile file" when bundler >= 1.2.0 will be required (rails 4)
111 112 instance_eval File.read(file), file
112 113 end
General Comments 0
You need to be logged in to leave comments. Login now