Commit b3f7df1d06966eae8b292e85ca7c9faa0532affe
1 parent
089ccbfd
Exists in
staging
and in
42 other branches
Excepetion notifier uptaded to 3.0.0 (compatible with Rails 3)
Showing
3 changed files
with
101 additions
and
7 deletions
Show diff stats
Gemfile
@@ -6,7 +6,18 @@ gem 'rspec-rails', '1.2.9' | @@ -6,7 +6,18 @@ gem 'rspec-rails', '1.2.9' | ||
6 | gem 'Selenium', '>= 1.1.14' | 6 | gem 'Selenium', '>= 1.1.14' |
7 | gem 'selenium-client', '>= 1.2.17' | 7 | gem 'selenium-client', '>= 1.2.17' |
8 | gem 'database_cleaner' | 8 | gem 'database_cleaner' |
9 | -gem 'exception_notification', '1.0.20090728' | 9 | +gem 'exception_notification', '~> 3.0.0' |
10 | + | ||
11 | +#Forcing to use Debian version of this gems | ||
12 | +#Without this, exception_notification uses 3.1.3 | ||
13 | +gem 'actionmailer', '3.2.6' | ||
14 | +gem 'actionpack', '3.2.6' | ||
15 | +gem 'activemodel', '3.2.6' | ||
16 | +gem 'activerecord', '3.2.6' | ||
17 | +gem 'activeresource', '3.2.6' | ||
18 | +gem 'activesupport', '3.2.6' | ||
19 | + | ||
20 | + | ||
10 | 21 | ||
11 | def program(name) | 22 | def program(name) |
12 | unless system("which #{name} > /dev/null") | 23 | unless system("which #{name} > /dev/null") |
Gemfile.lock
@@ -2,7 +2,35 @@ GEM | @@ -2,7 +2,35 @@ GEM | ||
2 | remote: http://rubygems.org/ | 2 | remote: http://rubygems.org/ |
3 | specs: | 3 | specs: |
4 | Selenium (1.1.14) | 4 | Selenium (1.1.14) |
5 | - builder (3.0.0) | 5 | + actionmailer (3.2.6) |
6 | + actionpack (= 3.2.6) | ||
7 | + mail (~> 2.4.4) | ||
8 | + actionpack (3.2.6) | ||
9 | + activemodel (= 3.2.6) | ||
10 | + activesupport (= 3.2.6) | ||
11 | + builder (~> 3.0.0) | ||
12 | + erubis (~> 2.7.0) | ||
13 | + journey (~> 1.0.1) | ||
14 | + rack (~> 1.4.0) | ||
15 | + rack-cache (~> 1.2) | ||
16 | + rack-test (~> 0.6.1) | ||
17 | + sprockets (~> 2.1.3) | ||
18 | + activemodel (3.2.6) | ||
19 | + activesupport (= 3.2.6) | ||
20 | + builder (~> 3.0.0) | ||
21 | + activerecord (3.2.6) | ||
22 | + activemodel (= 3.2.6) | ||
23 | + activesupport (= 3.2.6) | ||
24 | + arel (~> 3.0.2) | ||
25 | + tzinfo (~> 0.3.29) | ||
26 | + activeresource (3.2.6) | ||
27 | + activemodel (= 3.2.6) | ||
28 | + activesupport (= 3.2.6) | ||
29 | + activesupport (3.2.6) | ||
30 | + i18n (~> 0.6) | ||
31 | + multi_json (~> 1.0) | ||
32 | + arel (3.0.2) | ||
33 | + builder (3.0.4) | ||
6 | cucumber (0.4.0) | 34 | cucumber (0.4.0) |
7 | builder (>= 2.1.2) | 35 | builder (>= 2.1.2) |
8 | diff-lcs (>= 1.1.2) | 36 | diff-lcs (>= 1.1.2) |
@@ -11,19 +39,66 @@ GEM | @@ -11,19 +39,66 @@ GEM | ||
11 | treetop (>= 1.4.2) | 39 | treetop (>= 1.4.2) |
12 | database_cleaner (0.7.0) | 40 | database_cleaner (0.7.0) |
13 | diff-lcs (1.1.3) | 41 | diff-lcs (1.1.3) |
14 | - exception_notification (1.0.20090728) | 42 | + erubis (2.7.0) |
43 | + eventmachine (1.0.0) | ||
44 | + exception_notification (3.0.0) | ||
45 | + actionmailer (>= 3.0.4) | ||
46 | + tinder (~> 1.8) | ||
47 | + faraday (0.8.4) | ||
48 | + multipart-post (~> 1.1) | ||
49 | + faraday_middleware (0.9.0) | ||
50 | + faraday (>= 0.7.4, < 0.9) | ||
51 | + hashie (1.2.0) | ||
52 | + hike (1.2.1) | ||
53 | + http_parser.rb (0.5.3) | ||
54 | + i18n (0.6.1) | ||
55 | + journey (1.0.4) | ||
56 | + json (1.7.5) | ||
57 | + mail (2.4.4) | ||
58 | + i18n (>= 0.4.0) | ||
59 | + mime-types (~> 1.16) | ||
60 | + treetop (~> 1.4.8) | ||
61 | + mime-types (1.19) | ||
62 | + multi_json (1.3.7) | ||
63 | + multipart-post (1.1.5) | ||
15 | nokogiri (1.5.5) | 64 | nokogiri (1.5.5) |
16 | polyglot (0.3.3) | 65 | polyglot (0.3.3) |
17 | - rack (1.3.5) | 66 | + rack (1.4.1) |
67 | + rack-cache (1.2) | ||
68 | + rack (>= 0.4) | ||
69 | + rack-test (0.6.2) | ||
70 | + rack (>= 1.0) | ||
18 | rspec (1.2.9) | 71 | rspec (1.2.9) |
19 | rspec-rails (1.2.9) | 72 | rspec-rails (1.2.9) |
20 | rack (>= 1.0.0) | 73 | rack (>= 1.0.0) |
21 | rspec (>= 1.2.9) | 74 | rspec (>= 1.2.9) |
22 | selenium-client (1.2.18) | 75 | selenium-client (1.2.18) |
76 | + simple_oauth (0.1.9) | ||
77 | + sprockets (2.1.3) | ||
78 | + hike (~> 1.2) | ||
79 | + multi_json (~> 1.0) | ||
80 | + rack (~> 1.0) | ||
81 | + tilt (~> 1.1, != 1.3.0) | ||
23 | term-ansicolor (1.0.7) | 82 | term-ansicolor (1.0.7) |
24 | - treetop (1.4.10) | 83 | + tilt (1.3.3) |
84 | + tinder (1.9.1) | ||
85 | + eventmachine (>= 0.12.0, < 2) | ||
86 | + faraday (~> 0.8) | ||
87 | + faraday_middleware (~> 0.8) | ||
88 | + hashie (~> 1.0) | ||
89 | + json (~> 1.6) | ||
90 | + mime-types (~> 1.16) | ||
91 | + multi_json (~> 1.0) | ||
92 | + multipart-post (~> 1.1) | ||
93 | + twitter-stream (~> 0.1) | ||
94 | + treetop (1.4.12) | ||
25 | polyglot | 95 | polyglot |
26 | polyglot (>= 0.3.1) | 96 | polyglot (>= 0.3.1) |
97 | + twitter-stream (0.1.16) | ||
98 | + eventmachine (>= 0.12.8) | ||
99 | + http_parser.rb (~> 0.5.1) | ||
100 | + simple_oauth (~> 0.1.4) | ||
101 | + tzinfo (0.3.35) | ||
27 | webrat (0.5.1) | 102 | webrat (0.5.1) |
28 | nokogiri (>= 1.2.0) | 103 | nokogiri (>= 1.2.0) |
29 | rack (>= 1.0) | 104 | rack (>= 1.0) |
@@ -33,9 +108,15 @@ PLATFORMS | @@ -33,9 +108,15 @@ PLATFORMS | ||
33 | 108 | ||
34 | DEPENDENCIES | 109 | DEPENDENCIES |
35 | Selenium (>= 1.1.14) | 110 | Selenium (>= 1.1.14) |
111 | + actionmailer (= 3.2.6) | ||
112 | + actionpack (= 3.2.6) | ||
113 | + activemodel (= 3.2.6) | ||
114 | + activerecord (= 3.2.6) | ||
115 | + activeresource (= 3.2.6) | ||
116 | + activesupport (= 3.2.6) | ||
36 | cucumber (= 0.4.0) | 117 | cucumber (= 0.4.0) |
37 | database_cleaner | 118 | database_cleaner |
38 | - exception_notification (= 1.0.20090728) | 119 | + exception_notification (~> 3.0.0) |
39 | rspec (= 1.2.9) | 120 | rspec (= 1.2.9) |
40 | rspec-rails (= 1.2.9) | 121 | rspec-rails (= 1.2.9) |
41 | selenium-client (>= 1.2.17) | 122 | selenium-client (>= 1.2.17) |
MIGRATION_ISSUES
@@ -6,4 +6,6 @@ | @@ -6,4 +6,6 @@ | ||
6 | 6 | ||
7 | * config/environment.rb maybe still have some code that should be on the initializers | 7 | * config/environment.rb maybe still have some code that should be on the initializers |
8 | 8 | ||
9 | -* initializers session_store.rb inflections.rb... don't exist | ||
10 | \ No newline at end of file | 9 | \ No newline at end of file |
10 | +* initializers session_store.rb inflections.rb... don't exist | ||
11 | + | ||
12 | +* rails gems version have to be forced on Gemfile or it will use incompatible pre3vious versions (3.1.3) | ||
11 | \ No newline at end of file | 13 | \ No newline at end of file |