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