paymill_on_rails 0.0.8 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
- metadata.gz: 049fc0f46665d7d2948ef9d91c5fc2b852236639
4
- data.tar.gz: e1cec1b688b3c334d6592fd6a8dd12bd7210fd10
3
+ metadata.gz: 522fb572b4a13f7a5ee8c1b824001fcb4f8d430a
4
+ data.tar.gz: 3fbf3f664a947ba7c1589e67b26f166df0abc814
5
5
  !binary "U0hBNTEy":
6
- metadata.gz: ee50327db322cb584175607dcb414ad21aec626d53e72638778c01abb0a9c0c933fd21a4959fcd65cefeaabb0e9d4606b2949a9df08be917f38e9cdae5da6b97
7
- data.tar.gz: 7facb7a50b4a9b3c8cb0d1c539a0bdda8e378eda573aceef667e4215b207786361e26b63df6f3d5a89aa9cbbb54545f6f7316835dd8e10029165e4db4f3818bf
6
+ metadata.gz: 351468f0965396f34de540c5ef59c7cce6bd5b17bf92941006cadb96c13b20c3b7642f0469d3038c93d6ebc3abaf3a3afb626bf6b5a0f6f07b56dbbc1d25e60a
7
+ data.tar.gz: e64373732b55ed46118245080531ebc14cf061b097aa0f1b30aed3c43e6d23f2f8fbb17888d96024319a3c820ba6ab07b95c97019aefff250902caedf343ef36
@@ -1,5 +1,11 @@
1
1
  module PaymillOnRails
2
2
  class Subscription < ActiveRecord::Base
3
+
4
+ # paymill_card_token is one-time used token
5
+ # and is not stored into DB, but is used by
6
+ # Paymill::Payment.create to get payment,
7
+ # then just payment.id is stored
8
+ # ( see: https://github.com/dkd/paymill-ruby )
3
9
  attr_accessor :paymill_card_token
4
10
 
5
11
  belongs_to :plan
@@ -1,3 +1,3 @@
1
1
  module PaymillOnRails
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
Binary file
@@ -0,0 +1,26 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20131111135532) do
15
+
16
+ create_table "paymill_on_rails_plans", force: true do |t|
17
+ t.datetime "created_at"
18
+ t.datetime "updated_at"
19
+ end
20
+
21
+ create_table "paymill_on_rails_subscriptions", force: true do |t|
22
+ t.datetime "created_at"
23
+ t.datetime "updated_at"
24
+ end
25
+
26
+ end
@@ -0,0 +1,440 @@
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"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paymill_on_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
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-17 00:00:00.000000000 Z
11
+ date: 2013-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - ~>
39
39
  - !ruby/object:Gem::Version
40
40
  version: 0.4.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: sqlite3
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
41
55
  description: A rails engine to integrate Paymill subscriptions within your Rails 4
42
56
  application, out of the box
43
57
  email:
@@ -84,7 +98,10 @@ files:
84
98
  - Rakefile
85
99
  - test/dummy/db/migrate/20131111135532_create_paymill_on_rails_subscriptions.paymill_on_rails.rb
86
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
87
103
  - test/dummy/config.ru
104
+ - test/dummy/log/development.log
88
105
  - test/dummy/Rakefile
89
106
  - test/dummy/app/helpers/application_helper.rb
90
107
  - test/dummy/app/views/layouts/application.html.erb
@@ -127,7 +144,8 @@ files:
127
144
  - test/controllers/paymill_on_rails/subscriptions_controller_test.rb
128
145
  - test/integration/navigation_test.rb
129
146
  homepage: https://github.com/lgs/paymill_on_rails
130
- licenses: []
147
+ licenses:
148
+ - MIT
131
149
  metadata: {}
132
150
  post_install_message:
133
151
  rdoc_options: []
@@ -152,7 +170,10 @@ summary: Paymill subscriptions with Rails 4
152
170
  test_files:
153
171
  - test/dummy/db/migrate/20131111135532_create_paymill_on_rails_subscriptions.paymill_on_rails.rb
154
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
155
175
  - test/dummy/config.ru
176
+ - test/dummy/log/development.log
156
177
  - test/dummy/Rakefile
157
178
  - test/dummy/app/helpers/application_helper.rb
158
179
  - test/dummy/app/views/layouts/application.html.erb