##// END OF EJS Templates
Gemfile: remove builder (#24924)...
Toshi MARUYAMA -
r15882:fa286638f2cc
parent child
Show More
@@ -1,117 +1,116
1 1 source 'https://rubygems.org'
2 2
3 3 if Gem::Version.new(Bundler::VERSION) < Gem::Version.new('1.5.0')
4 4 abort "Redmine requires Bundler 1.5.0 or higher (you're using #{Bundler::VERSION}).\nPlease update with 'gem update bundler'."
5 5 end
6 6
7 7 gem "rails", "4.2.7.1"
8 8 gem "addressable", "2.4.0" if RUBY_VERSION < "2.0"
9 9 gem "jquery-rails", "~> 3.1.4"
10 10 gem "coderay", "~> 1.1.1"
11 gem "builder", ">= 3.0.4"
12 11 gem "request_store", "1.0.5"
13 12 gem "mime-types", (RUBY_VERSION >= "2.0" ? "~> 3.0" : "~> 2.99")
14 13 gem "protected_attributes"
15 14 gem "actionpack-xml_parser"
16 15 gem "roadie-rails"
17 16 gem "mimemagic"
18 17
19 18 gem "nokogiri", "~> 1.6.8"
20 19
21 20 # Request at least rails-html-sanitizer 1.0.3 because of security advisories
22 21 gem "rails-html-sanitizer", ">= 1.0.3"
23 22
24 23 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
25 24 gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin, :jruby]
26 25 gem "rbpdf", "~> 1.19.0"
27 26
28 27 # Optional gem for LDAP authentication
29 28 group :ldap do
30 29 gem "net-ldap", "~> 0.12.0"
31 30 end
32 31
33 32 # Optional gem for OpenID authentication
34 33 group :openid do
35 34 gem "ruby-openid", "~> 2.3.0", :require => "openid"
36 35 gem "rack-openid"
37 36 end
38 37
39 38 platforms :mri, :mingw, :x64_mingw do
40 39 # Optional gem for exporting the gantt to a PNG file, not supported with jruby
41 40 group :rmagick do
42 41 gem "rmagick", ">= 2.14.0"
43 42 end
44 43
45 44 # Optional Markdown support, not for JRuby
46 45 group :markdown do
47 46 gem "redcarpet", "~> 3.3.2"
48 47 end
49 48 end
50 49
51 50 platforms :jruby do
52 51 # jruby-openssl is bundled with JRuby 1.7.0
53 52 gem "jruby-openssl" if Object.const_defined?(:JRUBY_VERSION) && JRUBY_VERSION < '1.7.0'
54 53 gem "activerecord-jdbc-adapter", "~> 1.3.2"
55 54 end
56 55
57 56 # Include database gems for the adapters found in the database
58 57 # configuration file
59 58 require 'erb'
60 59 require 'yaml'
61 60 database_file = File.join(File.dirname(__FILE__), "config/database.yml")
62 61 if File.exist?(database_file)
63 62 database_config = YAML::load(ERB.new(IO.read(database_file)).result)
64 63 adapters = database_config.values.map {|c| c['adapter']}.compact.uniq
65 64 if adapters.any?
66 65 adapters.each do |adapter|
67 66 case adapter
68 67 when 'mysql2'
69 68 gem "mysql2", "~> 0.3.11", :platforms => [:mri, :mingw, :x64_mingw]
70 69 gem "activerecord-jdbcmysql-adapter", :platforms => :jruby
71 70 when 'mysql'
72 71 gem "activerecord-jdbcmysql-adapter", :platforms => :jruby
73 72 when /postgresql/
74 73 gem "pg", "~> 0.18.1", :platforms => [:mri, :mingw, :x64_mingw]
75 74 gem "activerecord-jdbcpostgresql-adapter", :platforms => :jruby
76 75 when /sqlite3/
77 76 gem "sqlite3", :platforms => [:mri, :mingw, :x64_mingw]
78 77 gem "jdbc-sqlite3", ">= 3.8.10.1", :platforms => :jruby
79 78 gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
80 79 when /sqlserver/
81 80 gem "tiny_tds", (RUBY_VERSION >= "2.0" ? "~> 1.0.5" : "~> 0.7.0"), :platforms => [:mri, :mingw, :x64_mingw]
82 81 gem "activerecord-sqlserver-adapter", :platforms => [:mri, :mingw, :x64_mingw]
83 82 else
84 83 warn("Unknown database adapter `#{adapter}` found in config/database.yml, use Gemfile.local to load your own database gems")
85 84 end
86 85 end
87 86 else
88 87 warn("No adapter found in config/database.yml, please configure it first")
89 88 end
90 89 else
91 90 warn("Please configure your config/database.yml first")
92 91 end
93 92
94 93 group :development do
95 94 gem "rdoc", "~> 4.3"
96 95 gem "yard"
97 96 end
98 97
99 98 group :test do
100 99 gem "minitest"
101 100 gem "rails-dom-testing"
102 101 gem "mocha"
103 102 gem "simplecov", "~> 0.9.1", :require => false
104 103 # For running UI tests
105 104 gem "capybara"
106 105 gem "selenium-webdriver", "~> 2.53.4"
107 106 end
108 107
109 108 local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
110 109 if File.exists?(local_gemfile)
111 110 eval_gemfile local_gemfile
112 111 end
113 112
114 113 # Load plugins' Gemfiles
115 114 Dir.glob File.expand_path("../plugins/*/{Gemfile,PluginGemfile}", __FILE__) do |file|
116 115 eval_gemfile file
117 116 end
General Comments 0
You need to be logged in to leave comments. Login now