summaryrefslogtreecommitdiff
path: root/www/redmine/files/patch-Gemfile
blob: 4fa68435be8e8017ffd28daa571e23b16bb8a7bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
--- Gemfile.orig	2014-07-30 01:55:20.626312191 +0400
+++ Gemfile	2014-07-30 01:55:52.188247285 +0400
@@ -1,11 +1,11 @@
 source 'https://rubygems.org'
 
-gem "rails", "3.2.19"
-gem "rake", "~> 10.1.1"
-gem "jquery-rails", "~> 2.0.2"
+gem "rails", "~> 3.2"
+gem "rake", "~> 10.3"
+gem "jquery-rails", "~> 3.0"
 gem "coderay", "~> 1.1.0"
 gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby]
-gem "builder", "3.0.0"
+gem "builder", "~> 3.0"
 gem "mime-types"
 gem "awesome_nested_set", "2.1.6"
 
@@ -19,7 +19,7 @@
 
 # Optional gem for OpenID authentication
 group :openid do
-  gem "ruby-openid", "~> 2.3.0", :require => "openid"
+  gem "ruby-openid", "~> 2.3", :require => "openid"
   gem "rack-openid"
 end
 
@@ -35,7 +35,7 @@
   # Optional Markdown support, not for JRuby
   group :markdown do
     # TODO: upgrade to redcarpet 3.x when ruby1.8 support is dropped
-    gem "redcarpet", "~> 2.3.0"
+    gem "redcarpet", "~> 3.0"
   end
 end
 
@@ -82,20 +82,6 @@
   warn("Please configure your config/database.yml first")
 end
 
-group :development do
-  gem "rdoc", ">= 2.4.2"
-  gem "yard"
-end
-
-group :test do
-  gem "shoulda", "~> 3.3.2"
-  gem "mocha", "~> 1.0.0", :require => 'mocha/api'
-  if RUBY_VERSION >= '1.9.3'
-    gem "capybara", "~> 2.1.0"
-    gem "selenium-webdriver"
-  end
-end
-
 local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
 if File.exists?(local_gemfile)
   puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v`