Commit b3f7df1d06966eae8b292e85ca7c9faa0532affe
1 parent
089ccbfd
Exists in
master
and in
29 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 | 6 | gem 'Selenium', '>= 1.1.14' |
| 7 | 7 | gem 'selenium-client', '>= 1.2.17' |
| 8 | 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 | 22 | def program(name) |
| 12 | 23 | unless system("which #{name} > /dev/null") | ... | ... |
Gemfile.lock
| ... | ... | @@ -2,7 +2,35 @@ GEM |
| 2 | 2 | remote: http://rubygems.org/ |
| 3 | 3 | specs: |
| 4 | 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 | 34 | cucumber (0.4.0) |
| 7 | 35 | builder (>= 2.1.2) |
| 8 | 36 | diff-lcs (>= 1.1.2) |
| ... | ... | @@ -11,19 +39,66 @@ GEM |
| 11 | 39 | treetop (>= 1.4.2) |
| 12 | 40 | database_cleaner (0.7.0) |
| 13 | 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 | 64 | nokogiri (1.5.5) |
| 16 | 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 | 71 | rspec (1.2.9) |
| 19 | 72 | rspec-rails (1.2.9) |
| 20 | 73 | rack (>= 1.0.0) |
| 21 | 74 | rspec (>= 1.2.9) |
| 22 | 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 | 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 | 95 | polyglot |
| 26 | 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 | 102 | webrat (0.5.1) |
| 28 | 103 | nokogiri (>= 1.2.0) |
| 29 | 104 | rack (>= 1.0) |
| ... | ... | @@ -33,9 +108,15 @@ PLATFORMS |
| 33 | 108 | |
| 34 | 109 | DEPENDENCIES |
| 35 | 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 | 117 | cucumber (= 0.4.0) |
| 37 | 118 | database_cleaner |
| 38 | - exception_notification (= 1.0.20090728) | |
| 119 | + exception_notification (~> 3.0.0) | |
| 39 | 120 | rspec (= 1.2.9) |
| 40 | 121 | rspec-rails (= 1.2.9) |
| 41 | 122 | selenium-client (>= 1.2.17) | ... | ... |
MIGRATION_ISSUES
| ... | ... | @@ -6,4 +6,6 @@ |
| 6 | 6 | |
| 7 | 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 | 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 | 13 | \ No newline at end of file | ... | ... |