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