Commit e04cffe6fc7f001ac19f016e6c504c4a4836f95d

Authored by Lucas Kanashiro
1 parent 46a6dadf
Exists in rails4 and in 1 other branch deps_rails4

Update dependencies from noosfero-1.4

Showing 113 changed files with 313 additions and 169 deletions   Show diff stats

Too many changes.

To preserve performance only 100 of 113 files displayed.

Gemfile
1 1 source "https://rubygems.org"
2   -gem 'rails', '~> 3.2.22'
3   -gem 'minitest', '~> 3.2.0'
4   -gem 'fast_gettext', '~> 0.6.8'
5   -gem 'acts-as-taggable-on', '~> 3.4.2'
  2 +
  3 +platform :ruby do
  4 + gem 'pg', '~> 0.17'
  5 + gem 'rmagick', '~> 2.13'
  6 +end
  7 +platform :jruby do
  8 + gem 'activerecord-jdbcpostgresql-adapter'
  9 + gem 'rmagick4j'
  10 +end
  11 +
  12 +gem 'rails', '~> 4.2.4'
  13 +gem 'fast_gettext', '~> 0.9'
  14 +gem 'acts-as-taggable-on', '~> 3.5'
6 15 gem 'rails_autolink', '~> 1.1.5'
7   -gem 'pg', '~> 0.13.2'
8   -gem 'rmagick', '~> 2.13.1'
9   -gem 'RedCloth', '~> 4.2.9'
10   -gem 'will_paginate', '~> 3.0.3'
  16 +gem 'RedCloth', '~> 4.2'
11 17 gem 'ruby-feedparser', '~> 0.7'
12   -gem 'daemons', '~> 1.1.5'
  18 +gem 'daemons', '~> 1.1'
13 19 gem 'unicorn', '~> 4.8'
14   -gem 'nokogiri', '~> 1.5.5'
  20 +gem 'nokogiri', '~> 1.6.0'
  21 +gem 'will_paginate', '~> 3.0.7'
  22 +gem 'pothoven-attachment_fu', '~> 3.2.16'
  23 +gem 'delayed_job'
  24 +gem 'delayed_job_active_record'
15 25 gem 'rake', :require => false
16   -gem 'rest-client', '~> 1.6.7'
  26 +gem 'rest-client', '~> 1.6'
17 27 gem 'exception_notification', '~> 4.0.1'
18   -gem 'gettext', '~> 2.2.1', :require => false
19   -gem 'locale', '~> 2.0.5'
  28 +gem 'gettext', '~> 3.1', :require => false
  29 +gem 'locale', '~> 2.1'
20 30 gem 'whenever', :require => false
21   -gem 'eita-jrails', '~> 0.9.5', require: 'jrails'
  31 +gem 'eita-jrails', '~> 0.10.0', require: 'jrails'
  32 +gem 'diffy', '~> 3.0'
  33 +gem 'slim'
22 34  
23 35 # API dependencies
24 36 gem 'grape', '~> 0.12'
... ... @@ -30,29 +42,53 @@ gem 'rack-contrib'
30 42 # asset pipeline
31 43 gem 'uglifier', '>= 1.0.3'
32 44 gem 'sass-rails'
  45 +gem 'sprockets-rails', '~> 2.1'
  46 +
  47 +# gems to enable rails3 behaviour
  48 +gem 'protected_attributes'
  49 +gem 'rails-observers'
  50 +gem 'actionpack-page_caching'
  51 +gem 'actionpack-action_caching'
  52 +gem 'activerecord-session_store'
  53 +gem 'activerecord-deprecated_finders', require: 'active_record/deprecated_finders'
33 54  
34 55 group :production do
35 56 gem 'dalli', '~> 2.7.0'
36 57 end
37 58  
  59 +group :development, :test do
  60 + gem 'spring'
  61 +end
  62 +
38 63 group :test do
39   - gem 'rspec', '~> 2.14.0'
40   - gem 'rspec-rails', '~> 2.14.1'
  64 + gem 'rspec', '~> 3.3', require: false
  65 + gem 'rspec-rails', '~> 3.2', require: false
41 66 gem 'mocha', '~> 1.1.0', :require => false
42 67 gem 'test-unit' if RUBY_VERSION >= '2.2.0'
  68 + gem 'minitest'
  69 + gem 'minitest-reporters'
43 70 end
44 71  
45 72 group :cucumber do
46   - gem 'cucumber-rails', '~> 1.0.6', :require => false
47   - gem 'capybara', '~> 2.1.0'
48   - gem 'cucumber', '~> 1.0.6'
49   - gem 'database_cleaner', '~> 1.2.0'
50   - gem 'selenium-webdriver', '~> 2.39.0'
  73 + gem 'capybara', '~> 2.2'
  74 + gem 'launchy'
  75 + gem 'cucumber'
  76 + gem 'cucumber-rails', '~> 1.4.2', :require => false
  77 + gem 'database_cleaner', '~> 1.3'
  78 + gem 'selenium-webdriver', '>= 2.50'
51 79 end
52 80  
53 81 # Requires custom dependencies
54 82 eval(File.read('config/Gemfile'), binding) rescue nil
55 83  
  84 +vendor = Dir.glob('vendor/{,plugins/}*') - ['vendor/plugins']
  85 +vendor.each do |dir|
  86 + plugin = File.basename dir
  87 + version = if Dir.glob("#{dir}/*.gemspec").length > 0 then '> 0.0.0' else '0.0.0' end
  88 +
  89 + gem plugin, version, path: dir
  90 +end
  91 +
56 92 # include gemfiles from enabled plugins
57 93 # plugins in baseplugins/ are not included on purpose. They should not have any
58 94 # dependencies.
... ...
Gemfile.lock
  1 +PATH
  2 + remote: vendor/bundle
  3 + specs:
  4 + bundle (0.0.0)
  5 +
  6 +PATH
  7 + remote: vendor/cache
  8 + specs:
  9 + cache (0.0.0)
  10 +
  11 +PATH
  12 + remote: vendor/prototype_legacy_helper
  13 + specs:
  14 + prototype_legacy_helper (0.0.0)
  15 +
1 16 GEM
2 17 remote: https://rubygems.org/
3 18 specs:
4 19 RedCloth (4.2.9)
5   - actionmailer (3.2.22)
6   - actionpack (= 3.2.22)
7   - mail (~> 2.5.4)
8   - actionpack (3.2.22)
9   - activemodel (= 3.2.22)
10   - activesupport (= 3.2.22)
11   - builder (~> 3.0.0)
  20 + actionmailer (4.2.5.1)
  21 + actionpack (= 4.2.5.1)
  22 + actionview (= 4.2.5.1)
  23 + activejob (= 4.2.5.1)
  24 + mail (~> 2.5, >= 2.5.4)
  25 + rails-dom-testing (~> 1.0, >= 1.0.5)
  26 + actionpack (4.2.5.1)
  27 + actionview (= 4.2.5.1)
  28 + activesupport (= 4.2.5.1)
  29 + rack (~> 1.6)
  30 + rack-test (~> 0.6.2)
  31 + rails-dom-testing (~> 1.0, >= 1.0.5)
  32 + rails-html-sanitizer (~> 1.0, >= 1.0.2)
  33 + actionpack-action_caching (1.1.1)
  34 + actionpack (>= 4.0.0, < 5.0)
  35 + actionpack-page_caching (1.0.2)
  36 + actionpack (>= 4.0.0, < 5)
  37 + actionview (4.2.5.1)
  38 + activesupport (= 4.2.5.1)
  39 + builder (~> 3.1)
12 40 erubis (~> 2.7.0)
13   - journey (~> 1.0.4)
14   - rack (~> 1.4.5)
15   - rack-cache (~> 1.2)
16   - rack-test (~> 0.6.1)
17   - sprockets (~> 2.2.1)
18   - activemodel (3.2.22)
19   - activesupport (= 3.2.22)
20   - builder (~> 3.0.0)
21   - activerecord (3.2.22)
22   - activemodel (= 3.2.22)
23   - activesupport (= 3.2.22)
24   - arel (~> 3.0.2)
25   - tzinfo (~> 0.3.29)
26   - activeresource (3.2.22)
27   - activemodel (= 3.2.22)
28   - activesupport (= 3.2.22)
29   - activesupport (3.2.22)
30   - i18n (~> 0.6, >= 0.6.4)
31   - multi_json (~> 1.0)
32   - acts-as-taggable-on (3.4.4)
  41 + rails-dom-testing (~> 1.0, >= 1.0.5)
  42 + rails-html-sanitizer (~> 1.0, >= 1.0.2)
  43 + activejob (4.2.5.1)
  44 + activesupport (= 4.2.5.1)
  45 + globalid (>= 0.3.0)
  46 + activemodel (4.2.5.1)
  47 + activesupport (= 4.2.5.1)
  48 + builder (~> 3.1)
  49 + activerecord (4.2.5.1)
  50 + activemodel (= 4.2.5.1)
  51 + activesupport (= 4.2.5.1)
  52 + arel (~> 6.0)
  53 + activerecord-deprecated_finders (1.0.4)
  54 + activerecord-session_store (0.1.2)
  55 + actionpack (>= 4.0.0, < 5)
  56 + activerecord (>= 4.0.0, < 5)
  57 + railties (>= 4.0.0, < 5)
  58 + activesupport (4.2.5.1)
  59 + i18n (~> 0.7)
  60 + json (~> 1.7, >= 1.7.7)
  61 + minitest (~> 5.1)
  62 + thread_safe (~> 0.3, >= 0.3.4)
  63 + tzinfo (~> 1.1)
  64 + acts-as-taggable-on (3.5.0)
33 65 activerecord (>= 3.2, < 5)
34   - arel (3.0.3)
  66 + addressable (2.4.0)
  67 + ansi (1.5.0)
  68 + arel (6.0.3)
35 69 axiom-types (0.1.1)
36 70 descendants_tracker (~> 0.0.4)
37 71 ice_nine (~> 0.11.0)
38 72 thread_safe (~> 0.3, >= 0.3.1)
39   - builder (3.0.4)
40   - capybara (2.1.0)
  73 + builder (3.2.2)
  74 + capybara (2.6.2)
  75 + addressable
41 76 mime-types (>= 1.16)
42 77 nokogiri (>= 1.3.3)
43 78 rack (>= 1.0.0)
44 79 rack-test (>= 0.5.4)
45 80 xpath (~> 2.0)
46   - childprocess (0.5.6)
  81 + childprocess (0.5.9)
47 82 ffi (~> 1.0, >= 1.0.11)
48 83 chronic (0.10.2)
49 84 coercible (1.0.0)
50 85 descendants_tracker (~> 0.0.1)
51   - cucumber (1.0.6)
  86 + concurrent-ruby (1.0.0)
  87 + cucumber (2.3.2)
52 88 builder (>= 2.1.2)
53   - diff-lcs (>= 1.1.2)
54   - gherkin (~> 2.4.18)
55   - json (>= 1.4.6)
56   - term-ansicolor (>= 1.0.6)
57   - cucumber-rails (1.0.6)
58   - capybara (>= 1.1.1)
59   - cucumber (>= 1.0.6)
60   - nokogiri (>= 1.5.0)
61   - daemons (1.1.9)
62   - dalli (2.7.4)
63   - database_cleaner (1.2.0)
  89 + cucumber-core (~> 1.4.0)
  90 + cucumber-wire (~> 0.0.1)
  91 + diff-lcs (>= 1.1.3)
  92 + gherkin (~> 3.2.0)
  93 + multi_json (>= 1.7.5, < 2.0)
  94 + multi_test (>= 0.1.2)
  95 + cucumber-core (1.4.0)
  96 + gherkin (~> 3.2.0)
  97 + cucumber-rails (1.4.3)
  98 + capybara (>= 1.1.2, < 3)
  99 + cucumber (>= 1.3.8, < 3)
  100 + mime-types (>= 1.16, < 4)
  101 + nokogiri (~> 1.5)
  102 + railties (>= 3, < 5)
  103 + cucumber-wire (0.0.1)
  104 + daemons (1.2.3)
  105 + dalli (2.7.6)
  106 + database_cleaner (1.5.1)
  107 + delayed_job (4.1.1)
  108 + activesupport (>= 3.0, < 5.0)
  109 + delayed_job_active_record (4.1.0)
  110 + activerecord (>= 3.0, < 5)
  111 + delayed_job (>= 3.0, < 5)
64 112 descendants_tracker (0.0.4)
65 113 thread_safe (~> 0.3, >= 0.3.1)
66 114 diff-lcs (1.2.5)
67   - eita-jrails (0.9.8)
  115 + diffy (3.1.0)
  116 + domain_name (0.5.20160128)
  117 + unf (>= 0.0.5, < 1.0.0)
  118 + eita-jrails (0.10.0)
68 119 actionpack (>= 3.1.0)
69 120 activesupport (>= 3.0.0)
70 121 equalizer (0.0.11)
... ... @@ -73,14 +124,16 @@ GEM
73 124 actionmailer (>= 3.0.4)
74 125 activesupport (>= 3.0.4)
75 126 execjs (2.6.0)
76   - fast_gettext (0.6.12)
  127 + fast_gettext (0.9.2)
77 128 ffi (1.9.10)
78   - gettext (2.2.1)
79   - locale
80   - gherkin (2.4.21)
81   - json (>= 1.4.6)
  129 + gettext (3.2.1)
  130 + locale (>= 2.0.5)
  131 + text (>= 1.3.0)
  132 + gherkin (3.2.0)
82 133 git-version-bump (0.15.1)
83   - grape (0.13.0)
  134 + globalid (0.3.6)
  135 + activesupport (>= 4.1.0)
  136 + grape (0.14.0)
84 137 activesupport
85 138 builder
86 139 hashie (>= 2.1.0)
... ... @@ -90,120 +143,155 @@ GEM
90 143 rack-accept
91 144 rack-mount
92 145 virtus (>= 1.0.0)
93   - grape-entity (0.4.8)
  146 + grape-entity (0.5.0)
94 147 activesupport
95 148 multi_json (>= 1.3.2)
96 149 grape_logging (1.1.2)
97 150 grape
98   - hashie (3.4.2)
99   - hike (1.2.3)
  151 + hashie (3.4.3)
  152 + http-cookie (1.0.2)
  153 + domain_name (~> 0.5)
100 154 i18n (0.7.0)
101   - ice_nine (0.11.1)
102   - journey (1.0.4)
  155 + ice_nine (0.11.2)
103 156 json (1.8.3)
104 157 kgio (2.10.0)
105   - locale (2.0.9)
  158 + launchy (2.4.3)
  159 + addressable (~> 2.3)
  160 + locale (2.1.2)
  161 + loofah (2.0.3)
  162 + nokogiri (>= 1.5.9)
106 163 magic (0.2.9)
107 164 ffi (>= 0.6.3)
108   - mail (2.5.4)
109   - mime-types (~> 1.16)
110   - treetop (~> 1.4.8)
  165 + mail (2.6.3)
  166 + mime-types (>= 1.16, < 3)
111 167 metaclass (0.0.4)
112   - mime-types (1.25.1)
113   - minitest (3.2.0)
  168 + mime-types (2.99)
  169 + mini_portile2 (2.0.0)
  170 + minitest (5.8.4)
  171 + minitest-reporters (1.1.7)
  172 + ansi
  173 + builder
  174 + minitest (>= 5.0)
  175 + ruby-progressbar
114 176 mocha (1.1.0)
115 177 metaclass (~> 0.0.1)
116 178 multi_json (1.11.2)
  179 + multi_test (0.1.2)
117 180 multi_xml (0.5.5)
118   - nokogiri (1.5.11)
119   - pg (0.13.2)
120   - polyglot (0.3.5)
121   - rack (1.4.7)
  181 + netrc (0.11.0)
  182 + nokogiri (1.6.7.2)
  183 + mini_portile2 (~> 2.0.0.rc2)
  184 + pg (0.18.4)
  185 + pothoven-attachment_fu (3.2.16)
  186 + protected_attributes (1.1.3)
  187 + activemodel (>= 4.0.1, < 5.0)
  188 + rack (1.6.4)
122 189 rack-accept (0.4.5)
123 190 rack (>= 0.4)
124   - rack-cache (1.2)
125   - rack (>= 0.4)
126 191 rack-contrib (1.4.0)
127 192 git-version-bump (~> 0.15)
128 193 rack (~> 1.4)
129 194 rack-cors (0.4.0)
130 195 rack-mount (0.8.3)
131 196 rack (>= 1.0.0)
132   - rack-ssl (1.3.4)
133   - rack
134 197 rack-test (0.6.3)
135 198 rack (>= 1.0)
136   - rails (3.2.22)
137   - actionmailer (= 3.2.22)
138   - actionpack (= 3.2.22)
139   - activerecord (= 3.2.22)
140   - activeresource (= 3.2.22)
141   - activesupport (= 3.2.22)
142   - bundler (~> 1.0)
143   - railties (= 3.2.22)
  199 + rails (4.2.5.1)
  200 + actionmailer (= 4.2.5.1)
  201 + actionpack (= 4.2.5.1)
  202 + actionview (= 4.2.5.1)
  203 + activejob (= 4.2.5.1)
  204 + activemodel (= 4.2.5.1)
  205 + activerecord (= 4.2.5.1)
  206 + activesupport (= 4.2.5.1)
  207 + bundler (>= 1.3.0, < 2.0)
  208 + railties (= 4.2.5.1)
  209 + sprockets-rails
  210 + rails-deprecated_sanitizer (1.0.3)
  211 + activesupport (>= 4.2.0.alpha)
  212 + rails-dom-testing (1.0.7)
  213 + activesupport (>= 4.2.0.beta, < 5.0)
  214 + nokogiri (~> 1.6.0)
  215 + rails-deprecated_sanitizer (>= 1.0.1)
  216 + rails-html-sanitizer (1.0.3)
  217 + loofah (~> 2.0)
  218 + rails-observers (0.1.2)
  219 + activemodel (~> 4.0)
144 220 rails_autolink (1.1.6)
145 221 rails (> 3.1)
146   - railties (3.2.22)
147   - actionpack (= 3.2.22)
148   - activesupport (= 3.2.22)
149   - rack-ssl (~> 1.3.2)
  222 + railties (4.2.5.1)
  223 + actionpack (= 4.2.5.1)
  224 + activesupport (= 4.2.5.1)
150 225 rake (>= 0.8.7)
151   - rdoc (~> 3.4)
152   - thor (>= 0.14.6, < 2.0)
  226 + thor (>= 0.18.1, < 2.0)
153 227 raindrops (0.15.0)
154   - rake (10.4.2)
155   - rdoc (3.12.2)
156   - json (~> 1.4)
157   - rest-client (1.6.9)
158   - mime-types (~> 1.16)
159   - rmagick (2.13.4)
160   - rspec (2.14.1)
161   - rspec-core (~> 2.14.0)
162   - rspec-expectations (~> 2.14.0)
163   - rspec-mocks (~> 2.14.0)
164   - rspec-core (2.14.8)
165   - rspec-expectations (2.14.5)
166   - diff-lcs (>= 1.1.3, < 2.0)
167   - rspec-mocks (2.14.6)
168   - rspec-rails (2.14.2)
169   - actionpack (>= 3.0)
170   - activemodel (>= 3.0)
171   - activesupport (>= 3.0)
172   - railties (>= 3.0)
173   - rspec-core (~> 2.14.0)
174   - rspec-expectations (~> 2.14.0)
175   - rspec-mocks (~> 2.14.0)
  228 + rake (10.5.0)
  229 + rest-client (1.8.0)
  230 + http-cookie (>= 1.0.2, < 2.0)
  231 + mime-types (>= 1.16, < 3.0)
  232 + netrc (~> 0.7)
  233 + rmagick (2.15.4)
  234 + rspec (3.4.0)
  235 + rspec-core (~> 3.4.0)
  236 + rspec-expectations (~> 3.4.0)
  237 + rspec-mocks (~> 3.4.0)
  238 + rspec-core (3.4.2)
  239 + rspec-support (~> 3.4.0)
  240 + rspec-expectations (3.4.0)
  241 + diff-lcs (>= 1.2.0, < 2.0)
  242 + rspec-support (~> 3.4.0)
  243 + rspec-mocks (3.4.1)
  244 + diff-lcs (>= 1.2.0, < 2.0)
  245 + rspec-support (~> 3.4.0)
  246 + rspec-rails (3.4.2)
  247 + actionpack (>= 3.0, < 4.3)
  248 + activesupport (>= 3.0, < 4.3)
  249 + railties (>= 3.0, < 4.3)
  250 + rspec-core (~> 3.4.0)
  251 + rspec-expectations (~> 3.4.0)
  252 + rspec-mocks (~> 3.4.0)
  253 + rspec-support (~> 3.4.0)
  254 + rspec-support (3.4.1)
176 255 ruby-feedparser (0.9.3)
177 256 magic
  257 + ruby-progressbar (1.7.5)
178 258 rubyzip (1.1.7)
179   - sass (3.4.18)
180   - sass-rails (3.2.6)
181   - railties (~> 3.2.0)
182   - sass (>= 3.1.10)
183   - tilt (~> 1.3)
184   - selenium-webdriver (2.39.0)
185   - childprocess (>= 0.2.5)
  259 + sass (3.4.21)
  260 + sass-rails (5.0.4)
  261 + railties (>= 4.0.0, < 5.0)
  262 + sass (~> 3.1)
  263 + sprockets (>= 2.8, < 4.0)
  264 + sprockets-rails (>= 2.0, < 4.0)
  265 + tilt (>= 1.1, < 3)
  266 + selenium-webdriver (2.52.0)
  267 + childprocess (~> 0.5)
186 268 multi_json (~> 1.0)
187 269 rubyzip (~> 1.0)
188   - websocket (~> 1.0.4)
189   - sprockets (2.2.3)
190   - hike (~> 1.2)
191   - multi_json (~> 1.0)
192   - rack (~> 1.0)
193   - tilt (~> 1.1, != 1.3.0)
194   - term-ansicolor (1.3.2)
195   - tins (~> 1.0)
  270 + websocket (~> 1.0)
  271 + slim (3.0.6)
  272 + temple (~> 0.7.3)
  273 + tilt (>= 1.3.3, < 2.1)
  274 + spring (1.6.3)
  275 + sprockets (3.5.2)
  276 + concurrent-ruby (~> 1.0)
  277 + rack (> 1, < 3)
  278 + sprockets-rails (2.3.3)
  279 + actionpack (>= 3.0)
  280 + activesupport (>= 3.0)
  281 + sprockets (>= 2.8, < 4.0)
  282 + temple (0.7.6)
  283 + text (1.3.1)
196 284 thor (0.19.1)
197 285 thread_safe (0.3.5)
198   - tilt (1.4.1)
199   - tins (1.6.0)
200   - treetop (1.4.15)
201   - polyglot
202   - polyglot (>= 0.3.1)
203   - tzinfo (0.3.44)
  286 + tilt (2.0.2)
  287 + tzinfo (1.2.2)
  288 + thread_safe (~> 0.1)
204 289 uglifier (2.7.2)
205 290 execjs (>= 0.3.0)
206 291 json (>= 1.8.0)
  292 + unf (0.1.4)
  293 + unf_ext
  294 + unf_ext (0.0.7.2)
207 295 unicorn (4.9.0)
208 296 kgio (~> 2.6)
209 297 rack
... ... @@ -213,7 +301,7 @@ GEM
213 301 coercible (~> 1.0)
214 302 descendants_tracker (~> 0.0, >= 0.0.3)
215 303 equalizer (~> 0.0, >= 0.0.9)
216   - websocket (1.0.7)
  304 + websocket (1.2.2)
217 305 whenever (0.9.4)
218 306 chronic (>= 0.6.3)
219 307 will_paginate (3.0.7)
... ... @@ -224,39 +312,59 @@ PLATFORMS
224 312 ruby
225 313  
226 314 DEPENDENCIES
227   - RedCloth (~> 4.2.9)
228   - acts-as-taggable-on (~> 3.4.2)
229   - capybara (~> 2.1.0)
230   - cucumber (~> 1.0.6)
231   - cucumber-rails (~> 1.0.6)
232   - daemons (~> 1.1.5)
  315 + RedCloth (~> 4.2)
  316 + actionpack-action_caching
  317 + actionpack-page_caching
  318 + activerecord-deprecated_finders
  319 + activerecord-jdbcpostgresql-adapter
  320 + activerecord-session_store
  321 + acts-as-taggable-on (~> 3.5)
  322 + bundle (= 0.0.0)!
  323 + cache (= 0.0.0)!
  324 + capybara (~> 2.2)
  325 + cucumber
  326 + cucumber-rails (~> 1.4.2)
  327 + daemons (~> 1.1)
233 328 dalli (~> 2.7.0)
234   - database_cleaner (~> 1.2.0)
235   - eita-jrails (~> 0.9.5)
  329 + database_cleaner (~> 1.3)
  330 + delayed_job
  331 + delayed_job_active_record
  332 + diffy (~> 3.0)
  333 + eita-jrails (~> 0.10.0)
236 334 exception_notification (~> 4.0.1)
237   - fast_gettext (~> 0.6.8)
238   - gettext (~> 2.2.1)
  335 + fast_gettext (~> 0.9)
  336 + gettext (~> 3.1)
239 337 grape (~> 0.12)
240 338 grape-entity
241 339 grape_logging
242   - locale (~> 2.0.5)
243   - minitest (~> 3.2.0)
  340 + launchy
  341 + locale (~> 2.1)
  342 + minitest
  343 + minitest-reporters
244 344 mocha (~> 1.1.0)
245   - nokogiri (~> 1.5.5)
246   - pg (~> 0.13.2)
  345 + nokogiri (~> 1.6.0)
  346 + pg (~> 0.17)
  347 + pothoven-attachment_fu (~> 3.2.16)
  348 + protected_attributes
  349 + prototype_legacy_helper (= 0.0.0)!
247 350 rack-contrib
248 351 rack-cors
249   - rails (~> 3.2.22)
  352 + rails (~> 4.2.4)
  353 + rails-observers
250 354 rails_autolink (~> 1.1.5)
251 355 rake
252   - rest-client (~> 1.6.7)
253   - rmagick (~> 2.13.1)
254   - rspec (~> 2.14.0)
255   - rspec-rails (~> 2.14.1)
  356 + rest-client (~> 1.6)
  357 + rmagick (~> 2.13)
  358 + rmagick4j
  359 + rspec (~> 3.3)
  360 + rspec-rails (~> 3.2)
256 361 ruby-feedparser (~> 0.7)
257 362 sass-rails
258   - selenium-webdriver (~> 2.39.0)
  363 + selenium-webdriver (>= 2.50)
  364 + slim
  365 + spring
  366 + sprockets-rails (~> 2.1)
259 367 uglifier (>= 1.0.3)
260 368 unicorn (~> 4.8)
261 369 whenever
262   - will_paginate (~> 3.0.3)
  370 + will_paginate (~> 3.0.7)
... ...
vendor/cache/actionmailer-3.2.22.gem
No preview for this file type
vendor/cache/actionmailer-4.2.5.1.gem 0 → 100644
No preview for this file type
vendor/cache/actionpack-3.2.22.gem
No preview for this file type
vendor/cache/actionpack-4.2.5.1.gem 0 → 100644
No preview for this file type
vendor/cache/actionpack-action_caching-1.1.1.gem 0 → 100644
No preview for this file type
vendor/cache/actionpack-page_caching-1.0.2.gem 0 → 100644
No preview for this file type
vendor/cache/actionview-4.2.5.1.gem 0 → 100644
No preview for this file type
vendor/cache/activejob-4.2.5.1.gem 0 → 100644
No preview for this file type
vendor/cache/activemodel-3.2.22.gem
No preview for this file type
vendor/cache/activemodel-4.2.5.1.gem 0 → 100644
No preview for this file type
vendor/cache/activerecord-3.2.22.gem
No preview for this file type
vendor/cache/activerecord-4.2.5.1.gem 0 → 100644
No preview for this file type
vendor/cache/activerecord-deprecated_finders-1.0.4.gem 0 → 100644
No preview for this file type
vendor/cache/activerecord-session_store-0.1.2.gem 0 → 100644
No preview for this file type
vendor/cache/activeresource-3.2.22.gem
No preview for this file type
vendor/cache/activesupport-3.2.22.gem
No preview for this file type
vendor/cache/activesupport-4.2.5.1.gem 0 → 100644
No preview for this file type
vendor/cache/acts-as-taggable-on-3.4.4.gem
No preview for this file type
vendor/cache/acts-as-taggable-on-3.5.0.gem 0 → 100644
No preview for this file type
vendor/cache/arel-3.0.3.gem
No preview for this file type
vendor/cache/arel-6.0.3.gem 0 → 100644
No preview for this file type
vendor/cache/builder-3.0.4.gem
No preview for this file type
vendor/cache/builder-3.2.2.gem 0 → 100644
No preview for this file type
vendor/cache/capybara-2.1.0.gem
No preview for this file type
vendor/cache/concurrent-ruby-1.0.0.gem 0 → 100644
No preview for this file type
vendor/cache/cucumber-1.0.6.gem
No preview for this file type
vendor/cache/cucumber-rails-1.0.6.gem
No preview for this file type
vendor/cache/daemons-1.1.9.gem
No preview for this file type
vendor/cache/daemons-1.2.3.gem 0 → 100644
No preview for this file type
vendor/cache/dalli-2.7.4.gem
No preview for this file type
vendor/cache/dalli-2.7.6.gem 0 → 100644
No preview for this file type
vendor/cache/database_cleaner-1.2.0.gem
No preview for this file type
vendor/cache/delayed_job-4.1.1.gem 0 → 100644
No preview for this file type
vendor/cache/delayed_job_active_record-4.1.0.gem 0 → 100644
No preview for this file type
vendor/cache/diffy-3.1.0.gem 0 → 100644
No preview for this file type
vendor/cache/domain_name-0.5.20160128.gem 0 → 100644
No preview for this file type
vendor/cache/eita-jrails-0.10.0.gem 0 → 100644
No preview for this file type
vendor/cache/eita-jrails-0.9.8.gem
No preview for this file type
vendor/cache/fast_gettext-0.6.12.gem
No preview for this file type
vendor/cache/fast_gettext-0.9.2.gem 0 → 100644
No preview for this file type
vendor/cache/gettext-2.2.1.gem
No preview for this file type
vendor/cache/gettext-3.2.1.gem 0 → 100644
No preview for this file type
vendor/cache/gherkin-2.4.21.gem
No preview for this file type
vendor/cache/globalid-0.3.6.gem 0 → 100644
No preview for this file type
vendor/cache/grape-0.13.0.gem
No preview for this file type
vendor/cache/grape-0.14.0.gem 0 → 100644
No preview for this file type
vendor/cache/grape-entity-0.4.8.gem
No preview for this file type
vendor/cache/grape-entity-0.5.0.gem 0 → 100644
No preview for this file type
vendor/cache/hashie-3.4.2.gem
No preview for this file type
vendor/cache/hashie-3.4.3.gem 0 → 100644
No preview for this file type
vendor/cache/hike-1.2.3.gem
No preview for this file type
vendor/cache/http-cookie-1.0.2.gem 0 → 100644
No preview for this file type
vendor/cache/ice_nine-0.11.1.gem
No preview for this file type
vendor/cache/ice_nine-0.11.2.gem 0 → 100644
No preview for this file type
vendor/cache/journey-1.0.4.gem
No preview for this file type
vendor/cache/locale-2.0.9.gem
No preview for this file type
vendor/cache/locale-2.1.2.gem 0 → 100644
No preview for this file type
vendor/cache/loofah-2.0.3.gem 0 → 100644
No preview for this file type
vendor/cache/mail-2.5.4.gem
No preview for this file type
vendor/cache/mail-2.6.3.gem 0 → 100644
No preview for this file type
vendor/cache/mime-types-1.25.1.gem
No preview for this file type
vendor/cache/mime-types-2.99.gem 0 → 100644
No preview for this file type
vendor/cache/mini_portile2-2.0.0.gem 0 → 100644
No preview for this file type
vendor/cache/minitest-3.2.0.gem
No preview for this file type
vendor/cache/minitest-5.8.4.gem 0 → 100644
No preview for this file type
vendor/cache/netrc-0.11.0.gem 0 → 100644
No preview for this file type
vendor/cache/nokogiri-1.5.11.gem
No preview for this file type
vendor/cache/nokogiri-1.6.7.2.gem 0 → 100644
No preview for this file type
vendor/cache/pg-0.13.2.gem
No preview for this file type
vendor/cache/pg-0.18.4.gem 0 → 100644
No preview for this file type
vendor/cache/polyglot-0.3.5.gem
No preview for this file type
vendor/cache/pothoven-attachment_fu-3.2.16.gem 0 → 100644
No preview for this file type
vendor/cache/protected_attributes-1.1.3.gem 0 → 100644
No preview for this file type
vendor/cache/rack-1.4.7.gem
No preview for this file type
vendor/cache/rack-1.6.4.gem 0 → 100644
No preview for this file type
vendor/cache/rack-cache-1.2.gem
No preview for this file type
vendor/cache/rack-ssl-1.3.4.gem
No preview for this file type
vendor/cache/rails-3.2.22.gem
No preview for this file type
vendor/cache/rails-4.2.5.1.gem 0 → 100644
No preview for this file type
vendor/cache/rails-deprecated_sanitizer-1.0.3.gem 0 → 100644
No preview for this file type
vendor/cache/rails-dom-testing-1.0.7.gem 0 → 100644
No preview for this file type
vendor/cache/rails-html-sanitizer-1.0.3.gem 0 → 100644
No preview for this file type
vendor/cache/rails-observers-0.1.2.gem 0 → 100644
No preview for this file type
vendor/cache/railties-3.2.22.gem
No preview for this file type
vendor/cache/railties-4.2.5.1.gem 0 → 100644
No preview for this file type
vendor/cache/rake-10.4.2.gem
No preview for this file type
vendor/cache/rake-10.5.0.gem 0 → 100644
No preview for this file type
vendor/cache/rdoc-3.12.2.gem
No preview for this file type
vendor/cache/rest-client-1.6.9.gem
No preview for this file type
vendor/cache/rest-client-1.8.0.gem 0 → 100644
No preview for this file type
vendor/cache/rmagick-2.13.4.gem
No preview for this file type
vendor/cache/rmagick-2.15.4.gem 0 → 100644
No preview for this file type
vendor/cache/sass-3.4.18.gem
No preview for this file type
vendor/cache/sass-3.4.21.gem 0 → 100644
No preview for this file type
vendor/cache/sass-rails-3.2.6.gem
No preview for this file type
vendor/cache/sass-rails-5.0.4.gem 0 → 100644
No preview for this file type
vendor/cache/selenium-webdriver-2.39.0.gem
No preview for this file type
vendor/cache/slim-3.0.6.gem 0 → 100644
No preview for this file type