dstrelau (owner)

Revisions

gist: 225591 Download_button fork
public
Public Clone URL: git://gist.github.com/225591.git
Embed All Files: show embed
Gemfile #
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
source "http://gems.github.com"
source "http://gemcutter.org"
bundle_path "vendor/bundled_gems"
 
gem "rails", "2.3.4"
 
gem "aasm", "2.1.1"
gem "activemerchant", "1.4.2", :require_as => "active_merchant"
gem "alchemy", "0.11.2" ### A private gem. It depends on "httparty", "> 0.3"
gem "fastercsv", "1.5.0"
gem "mintdigital-has_roles", "1.0.0", :require_as => "has_roles"
gem "minion", "0.1.9", :require_as => false
gem "mintdigital-minty_scopes", "0.9.0", :require_as => "minty_scopes"
gem "newrelic_rpm", "2.9.5"
gem "paperclip", "2.3.1"
gem "multi_db", "0.2.1"
gem "simple-daemon", "0.1.2", :require_as => false
gem "smurf", "1.0.3"
gem "thinking-sphinx", "1.2.12"
gem "validatable", "1.6.7"
gem "whenever", "0.3.7"
gem "will_paginate", "2.3.11"
gem "ya2yaml", "0.26"
 
only :test do
  gem "cucumber", "0.4.2"
  gem "flexmock", "0.8.6"
  gem "langalex-culerity", "0.2.2"
  gem "thoughtbot-shoulda", "2.10.2"
  gem "factory_girl", "1.2.3"
end
 
Text only #
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
58
59
60
61
62
63
64
65
ActionView::TemplateError (undefined method `content_for' for #<ActionView::Base:0x43f3fdc>) on line #1 of app/views/users/index.html.erb:
1: <% content_for :body_class, 'users' -%>
2: <% content_for :body_id, 'users-index' -%>
3: <% content_for :page_title, t(:application_people) -%>
4: <% content_for :stylesheets do %>
 
    app/views/users/index.html.erb:1
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_view/renderable.rb:34:in `send'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_view/renderable.rb:34:in `render_without_trace_View___path__Rendering'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_view/base.rb:301:in `with_template'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_view/renderable.rb:30:in `render_without_trace_View___path__Rendering'
    vendor/bundled_gems/gems/newrelic_rpm-2.9.5/lib/new_relic/agent/method_tracer.rb:161:in `render'
    vendor/bundled_gems/gems/newrelic_rpm-2.9.5/lib/new_relic/agent/method_tracer.rb:62:in `trace_method_execution_with_scope'
    vendor/bundled_gems/gems/newrelic_rpm-2.9.5/lib/new_relic/agent/method_tracer.rb:160:in `render'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_view/template.rb:199:in `render_template'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_view/base.rb:260:in `render'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_view/base.rb:343:in `_render_with_layout'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_view/base.rb:257:in `render'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/base.rb:1250:in `render_for_file'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/base.rb:945:in `render_without_benchmark'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:51:in `render'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/base.rb:1326:in `default_render'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/base.rb:1332:in `perform_action_without_filters'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/filters.rb:617:in `call_filters'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/filters.rb:638:in `run_before_filters'
    lib/mint_authorization.rb:11:in `ensure_validate_rights_was_called'
    vendor/bundled_gems/gems/activesupport-2.3.4/lib/active_support/callbacks.rb:178:in `send'
    vendor/bundled_gems/gems/activesupport-2.3.4/lib/active_support/callbacks.rb:178:in `evaluate_method'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/filters.rb:186:in `call'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/filters.rb:635:in `run_before_filters'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/filters.rb:615:in `call_filters'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/rescue.rb:160:in `perform_action_without_flash'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/flash.rb:146:in `perform_action_without_newrelic_trace'
    vendor/bundled_gems/gems/newrelic_rpm-2.9.5/lib/new_relic/agent/instrumentation/controller_instrumentation.rb:138:in `perform_action'
    vendor/bundled_gems/gems/newrelic_rpm-2.9.5/lib/new_relic/agent/method_tracer.rb:62:in `trace_method_execution_with_scope'
    vendor/bundled_gems/gems/newrelic_rpm-2.9.5/lib/new_relic/agent/instrumentation/controller_instrumentation.rb:122:in `perform_action'
    vendor/bundled_gems/gems/newrelic_rpm-2.9.5/lib/new_relic/agent/method_tracer.rb:38:in `trace_method_execution_no_scope'
    vendor/bundled_gems/gems/newrelic_rpm-2.9.5/lib/new_relic/agent/instrumentation/controller_instrumentation.rb:117:in `perform_action'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `send'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/base.rb:532:in `process_without_filters'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/filters.rb:606:in `process'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/base.rb:391:in `process'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/base.rb:386:in `call'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/routing/route_set.rb:437:in `call'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:87:in `dispatch'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:121:in `_call'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack'
    vendor/bundled_gems/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call'
    vendor/bundled_gems/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:29:in `call'
    vendor/bundled_gems/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache'
    vendor/bundled_gems/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:9:in `cache'
    vendor/bundled_gems/gems/activerecord-2.3.4/lib/active_record/query_cache.rb:28:in `call'
    vendor/bundled_gems/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/params_parser.rb:15:in `call'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/session/cookie_store.rb:93:in `call'
    vendor/bundled_gems/gems/activesupport-2.3.4/lib/active_support/cache/strategy/local_cache.rb:24:in `call'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/failsafe.rb:26:in `call'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:114:in `call'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/reloader.rb:34:in `run'
    vendor/bundled_gems/gems/actionpack-2.3.4/lib/action_controller/dispatcher.rb:108:in `call'