paymill_on_rails 0.0.9 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: 522fb572b4a13f7a5ee8c1b824001fcb4f8d430a
4
- data.tar.gz: 3fbf3f664a947ba7c1589e67b26f166df0abc814
5
- !binary "U0hBNTEy":
6
- metadata.gz: 351468f0965396f34de540c5ef59c7cce6bd5b17bf92941006cadb96c13b20c3b7642f0469d3038c93d6ebc3abaf3a3afb626bf6b5a0f6f07b56dbbc1d25e60a
7
- data.tar.gz: e64373732b55ed46118245080531ebc14cf061b097aa0f1b30aed3c43e6d23f2f8fbb17888d96024319a3c820ba6ab07b95c97019aefff250902caedf343ef36
2
+ SHA1:
3
+ metadata.gz: cb332602aae528935de2592fefce3333ded6ddd4
4
+ data.tar.gz: 3052c9565624836237fee35bed7dc8c5593cdf6c
5
+ SHA512:
6
+ metadata.gz: b9ada26a39a31e54c5f9e3775bdd9534c50fe24a35dac908e29e72e84106ba3dd24a1808af9c12a450d47c46360838b9bd155f1bdfae650a06ce114e72dabacf
7
+ data.tar.gz: 9194f5b2fc6f074cd42f14b34d3bead9c27704c55307c5d1586db25e8d5ba1d4a26c167835412f2d00b40eef6318819dde6304f2ae02944d6f361873313a32a1
@@ -1,3 +1,3 @@
1
1
  module PaymillOnRails
2
- VERSION = "0.0.9"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,58 +1,58 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paymill_on_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luca G. Soave
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-19 00:00:00.000000000 Z
11
+ date: 2014-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 4.0.0
19
+ version: 4.1.6
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 4.0.0
26
+ version: 4.1.6
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: paymill
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: 0.4.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: 0.4.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: sqlite3
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ! '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
- type: :development
48
+ type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ! '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description: A rails engine to integrate Paymill subscriptions within your Rails 4
55
+ description: A rails engine to integrate Paymill subscriptions within your Rails 4.1.6
56
56
  application, out of the box
57
57
  email:
58
58
  - luca.soave@gmail.com
@@ -60,89 +60,87 @@ executables: []
60
60
  extensions: []
61
61
  extra_rdoc_files: []
62
62
  files:
63
- - app/models/paymill_on_rails/subscription.rb
64
- - app/models/paymill_on_rails/plan.rb
65
- - app/helpers/paymill_on_rails/subscriptions_helper.rb
63
+ - MIT-LICENSE
64
+ - Rakefile
65
+ - app/assets/javascripts/paymill_on_rails/application.js
66
+ - app/assets/javascripts/paymill_on_rails/plans.js
67
+ - app/assets/javascripts/paymill_on_rails/subscriptions.js
68
+ - app/assets/stylesheets/paymill_on_rails/application.css
69
+ - app/assets/stylesheets/paymill_on_rails/plans.css
70
+ - app/assets/stylesheets/paymill_on_rails/subscriptions.css
71
+ - app/assets/stylesheets/scaffold.css
72
+ - app/controllers/paymill_on_rails/application_controller.rb
73
+ - app/controllers/paymill_on_rails/plans_controller.rb
74
+ - app/controllers/paymill_on_rails/subscriptions_controller.rb
66
75
  - app/helpers/paymill_on_rails/application_helper.rb
67
76
  - app/helpers/paymill_on_rails/plans_helper.rb
77
+ - app/helpers/paymill_on_rails/subscriptions_helper.rb
78
+ - app/models/paymill_on_rails/plan.rb
79
+ - app/models/paymill_on_rails/subscription.rb
68
80
  - app/views/layouts/paymill_on_rails/application.html.erb
69
- - app/views/paymill_on_rails/subscriptions/_form.html.erb
70
- - app/views/paymill_on_rails/subscriptions/edit.html.erb
71
- - app/views/paymill_on_rails/subscriptions/index.html.erb
72
- - app/views/paymill_on_rails/subscriptions/new.html.erb
73
- - app/views/paymill_on_rails/subscriptions/show.html.erb
74
81
  - app/views/paymill_on_rails/plans/_form.html.erb
75
82
  - app/views/paymill_on_rails/plans/edit.html.erb
76
83
  - app/views/paymill_on_rails/plans/index.html.erb
77
84
  - app/views/paymill_on_rails/plans/new.html.erb
78
85
  - app/views/paymill_on_rails/plans/show.html.erb
79
- - app/assets/stylesheets/scaffold.css
80
- - app/assets/stylesheets/paymill_on_rails/application.css
81
- - app/assets/stylesheets/paymill_on_rails/plans.css
82
- - app/assets/stylesheets/paymill_on_rails/subscriptions.css
83
- - app/assets/javascripts/paymill_on_rails/subscriptions.js
84
- - app/assets/javascripts/paymill_on_rails/application.js
85
- - app/assets/javascripts/paymill_on_rails/plans.js
86
- - app/controllers/paymill_on_rails/plans_controller.rb
87
- - app/controllers/paymill_on_rails/application_controller.rb
88
- - app/controllers/paymill_on_rails/subscriptions_controller.rb
89
- - config/routes.rb
86
+ - app/views/paymill_on_rails/subscriptions/_form.html.erb
87
+ - app/views/paymill_on_rails/subscriptions/edit.html.erb
88
+ - app/views/paymill_on_rails/subscriptions/index.html.erb
89
+ - app/views/paymill_on_rails/subscriptions/new.html.erb
90
+ - app/views/paymill_on_rails/subscriptions/show.html.erb
90
91
  - config/initializers/paymill.rb
92
+ - config/routes.rb
91
93
  - db/migrate/20131111122533_create_paymill_on_rails_plans.rb
92
94
  - db/migrate/20131111132308_create_paymill_on_rails_subscriptions.rb
93
- - lib/tasks/paymill_on_rails.rake
95
+ - lib/paymill_on_rails.rb
94
96
  - lib/paymill_on_rails/engine.rb
95
97
  - lib/paymill_on_rails/version.rb
96
- - lib/paymill_on_rails.rb
97
- - MIT-LICENSE
98
- - Rakefile
99
- - test/dummy/db/migrate/20131111135532_create_paymill_on_rails_subscriptions.paymill_on_rails.rb
100
- - test/dummy/db/migrate/20131111135531_create_paymill_on_rails_plans.paymill_on_rails.rb
101
- - test/dummy/db/development.sqlite3
102
- - test/dummy/db/schema.rb
103
- - test/dummy/config.ru
104
- - test/dummy/log/development.log
98
+ - lib/tasks/paymill_on_rails.rake
99
+ - test/controllers/paymill_on_rails/plans_controller_test.rb
100
+ - test/controllers/paymill_on_rails/subscriptions_controller_test.rb
101
+ - test/dummy/README.rdoc
105
102
  - test/dummy/Rakefile
106
- - test/dummy/app/helpers/application_helper.rb
107
- - test/dummy/app/views/layouts/application.html.erb
108
- - test/dummy/app/assets/stylesheets/application.css
109
103
  - test/dummy/app/assets/javascripts/application.js
104
+ - test/dummy/app/assets/stylesheets/application.css
110
105
  - test/dummy/app/controllers/application_controller.rb
111
- - test/dummy/public/500.html
112
- - test/dummy/public/favicon.ico
113
- - test/dummy/public/404.html
114
- - test/dummy/public/422.html
115
- - test/dummy/README.rdoc
116
- - test/dummy/config/routes.rb
106
+ - test/dummy/app/helpers/application_helper.rb
107
+ - test/dummy/app/views/layouts/application.html.erb
108
+ - test/dummy/bin/bundle
109
+ - test/dummy/bin/rails
110
+ - test/dummy/bin/rake
111
+ - test/dummy/config.ru
117
112
  - test/dummy/config/application.rb
113
+ - test/dummy/config/boot.rb
118
114
  - test/dummy/config/database.yml
119
- - test/dummy/config/environments/production.rb
115
+ - test/dummy/config/environment.rb
120
116
  - test/dummy/config/environments/development.rb
117
+ - test/dummy/config/environments/production.rb
121
118
  - test/dummy/config/environments/test.rb
122
- - test/dummy/config/initializers/filter_parameter_logging.rb
123
- - test/dummy/config/initializers/wrap_parameters.rb
124
119
  - test/dummy/config/initializers/backtrace_silencers.rb
120
+ - test/dummy/config/initializers/filter_parameter_logging.rb
125
121
  - test/dummy/config/initializers/inflections.rb
126
- - test/dummy/config/initializers/session_store.rb
127
122
  - test/dummy/config/initializers/mime_types.rb
128
123
  - test/dummy/config/initializers/secret_token.rb
129
- - test/dummy/config/boot.rb
130
- - test/dummy/config/environment.rb
124
+ - test/dummy/config/initializers/session_store.rb
125
+ - test/dummy/config/initializers/wrap_parameters.rb
131
126
  - test/dummy/config/locales/en.yml
132
- - test/dummy/bin/bundle
133
- - test/dummy/bin/rails
134
- - test/dummy/bin/rake
135
- - test/models/paymill_on_rails/subscription_test.rb
136
- - test/models/paymill_on_rails/plan_test.rb
137
- - test/paymill_on_rails_test.rb
138
- - test/helpers/paymill_on_rails/subscriptions_helper_test.rb
139
- - test/helpers/paymill_on_rails/plans_helper_test.rb
127
+ - test/dummy/config/routes.rb
128
+ - test/dummy/db/migrate/20131111135531_create_paymill_on_rails_plans.paymill_on_rails.rb
129
+ - test/dummy/db/migrate/20131111135532_create_paymill_on_rails_subscriptions.paymill_on_rails.rb
130
+ - test/dummy/db/schema.rb
131
+ - test/dummy/public/404.html
132
+ - test/dummy/public/422.html
133
+ - test/dummy/public/500.html
134
+ - test/dummy/public/favicon.ico
140
135
  - test/fixtures/paymill_on_rails/plans.yml
141
136
  - test/fixtures/paymill_on_rails/subscriptions.yml
142
- - test/test_helper.rb
143
- - test/controllers/paymill_on_rails/plans_controller_test.rb
144
- - test/controllers/paymill_on_rails/subscriptions_controller_test.rb
137
+ - test/helpers/paymill_on_rails/plans_helper_test.rb
138
+ - test/helpers/paymill_on_rails/subscriptions_helper_test.rb
145
139
  - test/integration/navigation_test.rb
140
+ - test/models/paymill_on_rails/plan_test.rb
141
+ - test/models/paymill_on_rails/subscription_test.rb
142
+ - test/paymill_on_rails_test.rb
143
+ - test/test_helper.rb
146
144
  homepage: https://github.com/lgs/paymill_on_rails
147
145
  licenses:
148
146
  - MIT
@@ -153,65 +151,63 @@ require_paths:
153
151
  - lib
154
152
  required_ruby_version: !ruby/object:Gem::Requirement
155
153
  requirements:
156
- - - ! '>='
154
+ - - ">="
157
155
  - !ruby/object:Gem::Version
158
156
  version: '0'
159
157
  required_rubygems_version: !ruby/object:Gem::Requirement
160
158
  requirements:
161
- - - ! '>='
159
+ - - ">="
162
160
  - !ruby/object:Gem::Version
163
161
  version: '0'
164
162
  requirements: []
165
163
  rubyforge_project:
166
- rubygems_version: 2.0.3
164
+ rubygems_version: 2.2.2
167
165
  signing_key:
168
166
  specification_version: 4
169
- summary: Paymill subscriptions with Rails 4
167
+ summary: Paymill subscriptions with Rails 4.1.6
170
168
  test_files:
171
- - test/dummy/db/migrate/20131111135532_create_paymill_on_rails_subscriptions.paymill_on_rails.rb
172
- - test/dummy/db/migrate/20131111135531_create_paymill_on_rails_plans.paymill_on_rails.rb
173
- - test/dummy/db/development.sqlite3
174
- - test/dummy/db/schema.rb
169
+ - test/integration/navigation_test.rb
170
+ - test/models/paymill_on_rails/subscription_test.rb
171
+ - test/models/paymill_on_rails/plan_test.rb
172
+ - test/test_helper.rb
173
+ - test/fixtures/paymill_on_rails/subscriptions.yml
174
+ - test/fixtures/paymill_on_rails/plans.yml
175
+ - test/helpers/paymill_on_rails/subscriptions_helper_test.rb
176
+ - test/helpers/paymill_on_rails/plans_helper_test.rb
177
+ - test/controllers/paymill_on_rails/plans_controller_test.rb
178
+ - test/controllers/paymill_on_rails/subscriptions_controller_test.rb
179
+ - test/paymill_on_rails_test.rb
175
180
  - test/dummy/config.ru
176
- - test/dummy/log/development.log
177
- - test/dummy/Rakefile
178
- - test/dummy/app/helpers/application_helper.rb
179
- - test/dummy/app/views/layouts/application.html.erb
180
- - test/dummy/app/assets/stylesheets/application.css
181
- - test/dummy/app/assets/javascripts/application.js
182
- - test/dummy/app/controllers/application_controller.rb
183
- - test/dummy/public/500.html
184
- - test/dummy/public/favicon.ico
185
- - test/dummy/public/404.html
186
- - test/dummy/public/422.html
187
- - test/dummy/README.rdoc
188
- - test/dummy/config/routes.rb
189
- - test/dummy/config/application.rb
190
- - test/dummy/config/database.yml
191
- - test/dummy/config/environments/production.rb
192
181
  - test/dummy/config/environments/development.rb
193
182
  - test/dummy/config/environments/test.rb
183
+ - test/dummy/config/environments/production.rb
184
+ - test/dummy/config/routes.rb
194
185
  - test/dummy/config/initializers/filter_parameter_logging.rb
195
186
  - test/dummy/config/initializers/wrap_parameters.rb
196
- - test/dummy/config/initializers/backtrace_silencers.rb
197
- - test/dummy/config/initializers/inflections.rb
198
187
  - test/dummy/config/initializers/session_store.rb
199
- - test/dummy/config/initializers/mime_types.rb
188
+ - test/dummy/config/initializers/backtrace_silencers.rb
200
189
  - test/dummy/config/initializers/secret_token.rb
201
- - test/dummy/config/boot.rb
202
- - test/dummy/config/environment.rb
190
+ - test/dummy/config/initializers/mime_types.rb
191
+ - test/dummy/config/initializers/inflections.rb
203
192
  - test/dummy/config/locales/en.yml
204
- - test/dummy/bin/bundle
205
- - test/dummy/bin/rails
193
+ - test/dummy/config/application.rb
194
+ - test/dummy/config/environment.rb
195
+ - test/dummy/config/database.yml
196
+ - test/dummy/config/boot.rb
197
+ - test/dummy/db/migrate/20131111135531_create_paymill_on_rails_plans.paymill_on_rails.rb
198
+ - test/dummy/db/migrate/20131111135532_create_paymill_on_rails_subscriptions.paymill_on_rails.rb
199
+ - test/dummy/db/schema.rb
206
200
  - test/dummy/bin/rake
207
- - test/models/paymill_on_rails/subscription_test.rb
208
- - test/models/paymill_on_rails/plan_test.rb
209
- - test/paymill_on_rails_test.rb
210
- - test/helpers/paymill_on_rails/subscriptions_helper_test.rb
211
- - test/helpers/paymill_on_rails/plans_helper_test.rb
212
- - test/fixtures/paymill_on_rails/plans.yml
213
- - test/fixtures/paymill_on_rails/subscriptions.yml
214
- - test/test_helper.rb
215
- - test/controllers/paymill_on_rails/plans_controller_test.rb
216
- - test/controllers/paymill_on_rails/subscriptions_controller_test.rb
217
- - test/integration/navigation_test.rb
201
+ - test/dummy/bin/rails
202
+ - test/dummy/bin/bundle
203
+ - test/dummy/public/favicon.ico
204
+ - test/dummy/public/422.html
205
+ - test/dummy/public/404.html
206
+ - test/dummy/public/500.html
207
+ - test/dummy/README.rdoc
208
+ - test/dummy/app/helpers/application_helper.rb
209
+ - test/dummy/app/controllers/application_controller.rb
210
+ - test/dummy/app/assets/javascripts/application.js
211
+ - test/dummy/app/assets/stylesheets/application.css
212
+ - test/dummy/app/views/layouts/application.html.erb
213
+ - test/dummy/Rakefile
Binary file
@@ -1,440 +0,0 @@
1
-
2
-
3
- Started GET "/" for 127.0.0.1 at 2013-11-17 20:58:46 +0100
4
-
5
- Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile.):
6
- activerecord (4.0.1) lib/active_record/connection_adapters/connection_specification.rb:58:in `rescue in resolve_hash_connection'
7
- activerecord (4.0.1) lib/active_record/connection_adapters/connection_specification.rb:55:in `resolve_hash_connection'
8
- activerecord (4.0.1) lib/active_record/connection_adapters/connection_specification.rb:46:in `resolve_string_connection'
9
- activerecord (4.0.1) lib/active_record/connection_adapters/connection_specification.rb:30:in `spec'
10
- activerecord (4.0.1) lib/active_record/connection_handling.rb:39:in `establish_connection'
11
- activerecord (4.0.1) lib/active_record/railtie.rb:176:in `block (2 levels) in <class:Railtie>'
12
- activesupport (4.0.1) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
13
- activesupport (4.0.1) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
14
- activesupport (4.0.1) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
15
- activesupport (4.0.1) lib/active_support/lazy_load_hooks.rb:44:in `each'
16
- activesupport (4.0.1) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
17
- activerecord (4.0.1) lib/active_record/base.rb:322:in `<module:ActiveRecord>'
18
- activerecord (4.0.1) lib/active_record/base.rb:22:in `<top (required)>'
19
- activesupport (4.0.1) lib/active_support/dependencies.rb:229:in `require'
20
- activesupport (4.0.1) lib/active_support/dependencies.rb:229:in `block in require'
21
- activesupport (4.0.1) lib/active_support/dependencies.rb:214:in `load_dependency'
22
- activesupport (4.0.1) lib/active_support/dependencies.rb:229:in `require'
23
- activerecord (4.0.1) lib/active_record/schema_migration.rb:3:in `<top (required)>'
24
- activerecord (4.0.1) lib/active_record/migration.rb:783:in `schema_migrations_table_name'
25
- activerecord (4.0.1) lib/active_record/migration.rb:791:in `current_version'
26
- activerecord (4.0.1) lib/active_record/migration.rb:800:in `needs_migration?'
27
- activerecord (4.0.1) lib/active_record/migration.rb:379:in `check_pending!'
28
- activerecord (4.0.1) lib/active_record/migration.rb:366:in `call'
29
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
30
- activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__3845439862725707820__call__callbacks'
31
- activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
32
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
33
- actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
34
- actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
35
- actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
36
- actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
37
- railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
38
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
39
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
40
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
41
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
42
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
43
- actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
44
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
45
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
46
- activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
47
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
48
- actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
49
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
50
- railties (4.0.1) lib/rails/engine.rb:511:in `call'
51
- railties (4.0.1) lib/rails/application.rb:97:in `call'
52
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
53
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
54
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
55
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
56
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
57
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
58
-
59
-
60
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
61
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
62
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
63
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (32.4ms)
64
-
65
-
66
- Started GET "/" for 127.0.0.1 at 2013-11-17 21:00:00 +0100
67
-
68
- ActiveRecord::PendingMigrationError (Migrations are pending; run 'bin/rake db:migrate RAILS_ENV=development' to resolve this issue.):
69
- activerecord (4.0.1) lib/active_record/migration.rb:379:in `check_pending!'
70
- activerecord (4.0.1) lib/active_record/migration.rb:366:in `call'
71
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
72
- activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__225276387816991816__call__callbacks'
73
- activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
74
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
75
- actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
76
- actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
77
- actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
78
- actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
79
- railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
80
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
81
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
82
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
83
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
84
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
85
- actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
86
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
87
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
88
- activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
89
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
90
- actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
91
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
92
- railties (4.0.1) lib/rails/engine.rb:511:in `call'
93
- railties (4.0.1) lib/rails/application.rb:97:in `call'
94
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
95
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
96
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
97
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
98
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
99
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
100
-
101
-
102
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
103
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
104
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
105
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.5ms)
106
-
107
-
108
- Started GET "/" for 127.0.0.1 at 2013-11-17 21:01:38 +0100
109
-
110
- ActiveRecord::PendingMigrationError (Migrations are pending; run 'bin/rake db:migrate RAILS_ENV=development' to resolve this issue.):
111
- activerecord (4.0.1) lib/active_record/migration.rb:379:in `check_pending!'
112
- activerecord (4.0.1) lib/active_record/migration.rb:366:in `call'
113
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
114
- activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__2801642933617787383__call__callbacks'
115
- activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
116
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
117
- actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
118
- actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
119
- actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
120
- actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
121
- railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
122
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
123
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
124
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
125
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
126
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
127
- actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
128
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
129
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
130
- activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
131
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
132
- actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
133
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
134
- railties (4.0.1) lib/rails/engine.rb:511:in `call'
135
- railties (4.0.1) lib/rails/application.rb:97:in `call'
136
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
137
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
138
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
139
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
140
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
141
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
142
-
143
-
144
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
145
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
146
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
147
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.6ms)
148
-
149
-
150
- Started GET "/" for 127.0.0.1 at 2013-11-17 21:02:13 +0100
151
-
152
- ActiveRecord::PendingMigrationError (Migrations are pending; run 'bin/rake db:migrate RAILS_ENV=development' to resolve this issue.):
153
- activerecord (4.0.1) lib/active_record/migration.rb:379:in `check_pending!'
154
- activerecord (4.0.1) lib/active_record/migration.rb:366:in `call'
155
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
156
- activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__980320804305833009__call__callbacks'
157
- activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
158
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
159
- actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
160
- actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
161
- actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
162
- actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
163
- railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
164
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
165
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
166
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
167
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
168
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
169
- actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
170
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
171
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
172
- activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
173
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
174
- actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
175
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
176
- railties (4.0.1) lib/rails/engine.rb:511:in `call'
177
- railties (4.0.1) lib/rails/application.rb:97:in `call'
178
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
179
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
180
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
181
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
182
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
183
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
184
-
185
-
186
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
187
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
188
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
189
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.7ms)
190
-
191
-
192
- Started GET "/" for 127.0.0.1 at 2013-11-17 21:02:15 +0100
193
-
194
- ActiveRecord::PendingMigrationError (Migrations are pending; run 'bin/rake db:migrate RAILS_ENV=development' to resolve this issue.):
195
- activerecord (4.0.1) lib/active_record/migration.rb:379:in `check_pending!'
196
- activerecord (4.0.1) lib/active_record/migration.rb:366:in `call'
197
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
198
- activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__980320804305833009__call__callbacks'
199
- activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
200
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
201
- actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
202
- actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
203
- actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
204
- actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
205
- railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
206
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
207
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
208
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
209
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
210
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
211
- actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
212
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
213
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
214
- activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
215
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
216
- actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
217
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
218
- railties (4.0.1) lib/rails/engine.rb:511:in `call'
219
- railties (4.0.1) lib/rails/application.rb:97:in `call'
220
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
221
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
222
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
223
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
224
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
225
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
226
-
227
-
228
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
229
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
230
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
231
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.9ms)
232
-
233
-
234
- Started GET "/" for 127.0.0.1 at 2013-11-17 21:02:16 +0100
235
-
236
- ActiveRecord::PendingMigrationError (Migrations are pending; run 'bin/rake db:migrate RAILS_ENV=development' to resolve this issue.):
237
- activerecord (4.0.1) lib/active_record/migration.rb:379:in `check_pending!'
238
- activerecord (4.0.1) lib/active_record/migration.rb:366:in `call'
239
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
240
- activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__980320804305833009__call__callbacks'
241
- activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
242
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
243
- actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
244
- actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
245
- actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
246
- actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
247
- railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
248
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
249
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
250
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
251
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
252
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
253
- actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
254
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
255
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
256
- activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
257
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
258
- actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
259
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
260
- railties (4.0.1) lib/rails/engine.rb:511:in `call'
261
- railties (4.0.1) lib/rails/application.rb:97:in `call'
262
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
263
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
264
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
265
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
266
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
267
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
268
-
269
-
270
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (35.2ms)
271
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
272
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
273
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (47.8ms)
274
-  (14.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
275
-  (8.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
276
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
277
- Migrating to CreatePaymillOnRailsPlans (20131111135531)
278
-  (0.1ms) begin transaction
279
-  (0.6ms) CREATE TABLE "paymill_on_rails_plans" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
280
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131111135531"]]
281
-  (9.2ms) commit transaction
282
- Migrating to CreatePaymillOnRailsSubscriptions (20131111135532)
283
-  (0.1ms) begin transaction
284
-  (0.3ms) CREATE TABLE "paymill_on_rails_subscriptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
285
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131111135532"]]
286
-  (8.2ms) commit transaction
287
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
288
-
289
-
290
- Started GET "/" for 127.0.0.1 at 2013-11-17 21:02:53 +0100
291
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
292
- Processing by Rails::WelcomeController#index as HTML
293
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/railties-4.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.7ms)
294
- Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms)
295
-
296
-
297
- Started GET "/paymill_on_rails" for 127.0.0.1 at 2013-11-17 21:02:58 +0100
298
- Processing by PaymillOnRails::PlansController#index as HTML
299
- PaymillOnRails::Plan Load (0.3ms) SELECT "paymill_on_rails_plans".* FROM "paymill_on_rails_plans" ORDER BY price
300
- SQLite3::SQLException: no such column: price: SELECT "paymill_on_rails_plans".* FROM "paymill_on_rails_plans" ORDER BY price
301
- Rendered /home/github/paymill_on_rails/app/views/paymill_on_rails/plans/index.html.erb within layouts/paymill_on_rails/application (3.4ms)
302
- Completed 500 Internal Server Error in 77ms
303
-
304
- ActionView::Template::Error (SQLite3::SQLException: no such column: price: SELECT "paymill_on_rails_plans".* FROM "paymill_on_rails_plans" ORDER BY price):
305
- 2: <div class="jumbotron">
306
- 3: <h1>Awesome Plans</h1> <br> <br>
307
- 4: <div class="row">
308
- 5: <% @plans.each do |plan| %>
309
- 6: <div class="span2">
310
- 7: <div class="lead">
311
- 8: <div class="name"><%= plan.name %></div>
312
- sqlite3 (1.3.8) lib/sqlite3/database.rb:91:in `initialize'
313
- sqlite3 (1.3.8) lib/sqlite3/database.rb:91:in `new'
314
- sqlite3 (1.3.8) lib/sqlite3/database.rb:91:in `prepare'
315
- activerecord (4.0.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:299:in `block in exec_query'
316
- activerecord (4.0.1) lib/active_record/connection_adapters/abstract_adapter.rb:435:in `block in log'
317
- activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
318
- activerecord (4.0.1) lib/active_record/connection_adapters/abstract_adapter.rb:430:in `log'
319
- activerecord (4.0.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:295:in `exec_query'
320
- activerecord (4.0.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:507:in `select'
321
- activerecord (4.0.1) lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_all'
322
- activerecord (4.0.1) lib/active_record/connection_adapters/abstract/query_cache.rb:61:in `block in select_all'
323
- activerecord (4.0.1) lib/active_record/connection_adapters/abstract/query_cache.rb:76:in `cache_sql'
324
- activerecord (4.0.1) lib/active_record/connection_adapters/abstract/query_cache.rb:61:in `select_all'
325
- activerecord (4.0.1) lib/active_record/querying.rb:36:in `find_by_sql'
326
- activerecord (4.0.1) lib/active_record/relation.rb:585:in `exec_queries'
327
- activerecord (4.0.1) lib/active_record/relation.rb:471:in `load'
328
- activerecord (4.0.1) lib/active_record/relation.rb:220:in `to_a'
329
- activerecord (4.0.1) lib/active_record/relation/delegation.rb:12:in `each'
330
- /home/github/paymill_on_rails/app/views/paymill_on_rails/plans/index.html.erb:5:in `__home_github_paymill_on_rails_app_views_paymill_on_rails_plans_index_html_erb__3217977625484840936_13072980'
331
- actionpack (4.0.1) lib/action_view/template.rb:143:in `block in render'
332
- activesupport (4.0.1) lib/active_support/notifications.rb:161:in `instrument'
333
- actionpack (4.0.1) lib/action_view/template.rb:141:in `render'
334
- actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
335
- actionpack (4.0.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
336
- activesupport (4.0.1) lib/active_support/notifications.rb:159:in `block in instrument'
337
- activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
338
- activesupport (4.0.1) lib/active_support/notifications.rb:159:in `instrument'
339
- actionpack (4.0.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
340
- actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
341
- actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
342
- actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
343
- actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
344
- actionpack (4.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
345
- actionpack (4.0.1) lib/action_view/renderer/renderer.rb:23:in `render'
346
- actionpack (4.0.1) lib/abstract_controller/rendering.rb:127:in `_render_template'
347
- actionpack (4.0.1) lib/action_controller/metal/streaming.rb:219:in `_render_template'
348
- actionpack (4.0.1) lib/abstract_controller/rendering.rb:120:in `render_to_body'
349
- actionpack (4.0.1) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
350
- actionpack (4.0.1) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
351
- actionpack (4.0.1) lib/abstract_controller/rendering.rb:97:in `render'
352
- actionpack (4.0.1) lib/action_controller/metal/rendering.rb:16:in `render'
353
- actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
354
- activesupport (4.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
355
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
356
- activesupport (4.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
357
- actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
358
- actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
359
- activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
360
- actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
361
- actionpack (4.0.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
362
- actionpack (4.0.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
363
- actionpack (4.0.1) lib/abstract_controller/base.rb:189:in `process_action'
364
- actionpack (4.0.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
365
- actionpack (4.0.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
366
- activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__1336537030074473742__process_action__callbacks'
367
- activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
368
- actionpack (4.0.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
369
- actionpack (4.0.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
370
- actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
371
- activesupport (4.0.1) lib/active_support/notifications.rb:159:in `block in instrument'
372
- activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
373
- activesupport (4.0.1) lib/active_support/notifications.rb:159:in `instrument'
374
- actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
375
- actionpack (4.0.1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
376
- activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
377
- actionpack (4.0.1) lib/abstract_controller/base.rb:136:in `process'
378
- actionpack (4.0.1) lib/abstract_controller/rendering.rb:44:in `process'
379
- actionpack (4.0.1) lib/action_controller/metal.rb:195:in `dispatch'
380
- actionpack (4.0.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
381
- actionpack (4.0.1) lib/action_controller/metal.rb:231:in `block in action'
382
- actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
383
- actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
384
- actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
385
- actionpack (4.0.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
386
- actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `each'
387
- actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `call'
388
- actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:680:in `call'
389
- railties (4.0.1) lib/rails/engine.rb:511:in `call'
390
- railties (4.0.1) lib/rails/railtie/configurable.rb:30:in `method_missing'
391
- actionpack (4.0.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
392
- actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `each'
393
- actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `call'
394
- actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:680:in `call'
395
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
396
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
397
- rack (1.5.2) lib/rack/head.rb:11:in `call'
398
- actionpack (4.0.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
399
- actionpack (4.0.1) lib/action_dispatch/middleware/flash.rb:241:in `call'
400
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
401
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
402
- actionpack (4.0.1) lib/action_dispatch/middleware/cookies.rb:486:in `call'
403
- activerecord (4.0.1) lib/active_record/query_cache.rb:36:in `call'
404
- activerecord (4.0.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
405
- activerecord (4.0.1) lib/active_record/migration.rb:369:in `call'
406
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
407
- activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__2528608950352516944__call__callbacks'
408
- activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
409
- actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
410
- actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
411
- actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
412
- actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
413
- actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
414
- railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
415
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
416
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
417
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
418
- activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
419
- railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
420
- actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
421
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
422
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
423
- activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
424
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
425
- actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
426
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
427
- railties (4.0.1) lib/rails/engine.rb:511:in `call'
428
- railties (4.0.1) lib/rails/application.rb:97:in `call'
429
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
430
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
431
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
432
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
433
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
434
- /home/lsoave/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
435
-
436
-
437
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
438
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (24.6ms)
439
- Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p247@rails-4.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (32.2ms)
440
- PaymillOnRails::Plan Load (0.8ms) SELECT "paymill_on_rails_plans".* FROM "paymill_on_rails_plans"