money-rails 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. data/README.md +51 -0
  2. data/lib/money-rails/monetize.rb +16 -4
  3. data/lib/money-rails/railtie.rb +5 -1
  4. data/lib/money-rails/version.rb +1 -1
  5. data/money-rails.gemspec +11 -8
  6. data/spec/dummy/README.rdoc +261 -0
  7. data/spec/dummy/Rakefile +7 -0
  8. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  9. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  10. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  11. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  12. data/spec/dummy/app/models/product.rb +14 -0
  13. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  14. data/spec/dummy/config/application.rb +61 -0
  15. data/spec/dummy/config/boot.rb +10 -0
  16. data/spec/dummy/config/database.yml +25 -0
  17. data/spec/dummy/config/environment.rb +5 -0
  18. data/spec/dummy/config/environments/development.rb +37 -0
  19. data/spec/dummy/config/environments/production.rb +67 -0
  20. data/spec/dummy/config/environments/test.rb +37 -0
  21. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  22. data/spec/dummy/config/initializers/inflections.rb +15 -0
  23. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  24. data/spec/dummy/config/initializers/money.rb +1 -0
  25. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  26. data/spec/dummy/config/initializers/session_store.rb +8 -0
  27. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  28. data/spec/dummy/config/locales/en.yml +5 -0
  29. data/spec/dummy/config/routes.rb +3 -0
  30. data/spec/dummy/config.ru +4 -0
  31. data/spec/dummy/db/development.sqlite3 +0 -0
  32. data/spec/dummy/db/migrate/20120331190108_create_products.rb +10 -0
  33. data/spec/dummy/db/migrate/20120402080348_add_bonus_cents_to_product.rb +6 -0
  34. data/spec/dummy/db/migrate/20120402080614_add_currency_to_product.rb +6 -0
  35. data/spec/dummy/db/schema.rb +25 -0
  36. data/spec/dummy/db/test.sqlite3 +0 -0
  37. data/spec/dummy/log/development.log +21 -0
  38. data/spec/dummy/log/test.log +169 -0
  39. data/spec/dummy/public/404.html +26 -0
  40. data/spec/dummy/public/422.html +26 -0
  41. data/spec/dummy/public/500.html +25 -0
  42. data/spec/dummy/public/favicon.ico +0 -0
  43. data/spec/dummy/script/rails +6 -0
  44. data/spec/monetize_spec.rb +23 -0
  45. data/spec/spec_helper.rb +23 -0
  46. metadata +155 -11
@@ -0,0 +1,67 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to Rails.root.join("public/assets")
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ # Log the query plan for queries taking more than this (works
65
+ # with SQLite, MySQL, and PostgreSQL)
66
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+ end
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1 @@
1
+ Money.default_currency = Money::Currency.new("USD")
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 'a296fb1735faa781e147a1a15f644e9a5c74f9fec357b6d0c94983a0700db240c8c1e020f5ed6413f2025f0092cf8a8db9990ab554ee59964c6ef40fe4ba884a'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters :format => [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+
3
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
Binary file
@@ -0,0 +1,10 @@
1
+ class CreateProducts < ActiveRecord::Migration
2
+ def change
3
+ create_table :products do |t|
4
+ t.integer :price_cents
5
+ t.integer :discount
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,6 @@
1
+ class AddBonusCentsToProduct < ActiveRecord::Migration
2
+ def change
3
+ add_column :products, :bonus_cents, :integer
4
+
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ class AddCurrencyToProduct < ActiveRecord::Migration
2
+ def change
3
+ add_column :products, :currency, :string
4
+
5
+ end
6
+ end
@@ -0,0 +1,25 @@
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 to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20120402080614) do
15
+
16
+ create_table "products", :force => true do |t|
17
+ t.integer "price_cents"
18
+ t.integer "discount"
19
+ t.datetime "created_at", :null => false
20
+ t.datetime "updated_at", :null => false
21
+ t.integer "bonus_cents"
22
+ t.string "currency"
23
+ end
24
+
25
+ end
Binary file
@@ -0,0 +1,21 @@
1
+  (0.1ms) select sqlite_version(*)
2
+  (123.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.1ms) PRAGMA index_list("schema_migrations")
4
+  (83.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreateProducts (20120331190108)
7
+  (0.1ms) begin transaction
8
+  (1.0ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "price_cents" integer, "discount" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
9
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120331190108')
10
+  (176.2ms) commit transaction
11
+  (0.3ms) select sqlite_version(*)
12
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
13
+  (0.0ms) PRAGMA index_list("products")
14
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15
+  (0.3ms) select sqlite_version(*)
16
+  (127.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "price_cents" integer, "discount" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
17
+  (113.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
18
+  (0.0ms) PRAGMA index_list("schema_migrations")
19
+  (133.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20
+  (0.1ms) SELECT version FROM "schema_migrations"
21
+  (115.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120331190108')
@@ -0,0 +1,169 @@
1
+  (0.5ms) begin transaction
2
+  (0.1ms) rollback transaction
3
+  (0.5ms) begin transaction
4
+  (0.0ms) rollback transaction
5
+  (0.5ms) begin transaction
6
+  (0.0ms) SAVEPOINT active_record_1
7
+ SQL (59.1ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:26:24 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:26:24 UTC +00:00]]
8
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9
+  (0.1ms) rollback transaction
10
+  (0.5ms) begin transaction
11
+  (0.1ms) SAVEPOINT active_record_1
12
+ SQL (4.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:27:21 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:27:21 UTC +00:00]]
13
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14
+  (0.1ms) rollback transaction
15
+  (0.5ms) begin transaction
16
+  (0.1ms) SAVEPOINT active_record_1
17
+ SQL (4.2ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:29:56 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:29:56 UTC +00:00]]
18
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19
+  (0.1ms) rollback transaction
20
+  (0.0ms) begin transaction
21
+  (0.0ms) SAVEPOINT active_record_1
22
+ SQL (0.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:29:56 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:29:56 UTC +00:00]]
23
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24
+  (0.1ms) rollback transaction
25
+  (0.5ms) begin transaction
26
+  (0.1ms) SAVEPOINT active_record_1
27
+ SQL (4.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:38:16 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:38:16 UTC +00:00]]
28
+  (0.1ms) RELEASE SAVEPOINT active_record_1
29
+  (0.1ms) rollback transaction
30
+  (0.0ms) begin transaction
31
+  (0.0ms) SAVEPOINT active_record_1
32
+ SQL (0.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:38:16 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:38:16 UTC +00:00]]
33
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34
+  (0.1ms) rollback transaction
35
+  (0.5ms) begin transaction
36
+  (0.1ms) SAVEPOINT active_record_1
37
+ SQL (4.2ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:49:06 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:49:06 UTC +00:00]]
38
+  (0.1ms) RELEASE SAVEPOINT active_record_1
39
+  (0.1ms) rollback transaction
40
+  (0.0ms) begin transaction
41
+  (0.0ms) SAVEPOINT active_record_1
42
+ SQL (0.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:49:06 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:49:06 UTC +00:00]]
43
+  (0.0ms) RELEASE SAVEPOINT active_record_1
44
+  (0.1ms) rollback transaction
45
+  (0.5ms) begin transaction
46
+  (0.1ms) SAVEPOINT active_record_1
47
+ SQL (4.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 20:10:53 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 20:10:53 UTC +00:00]]
48
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49
+  (0.1ms) rollback transaction
50
+  (0.0ms) begin transaction
51
+  (0.0ms) SAVEPOINT active_record_1
52
+ SQL (0.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 20:10:53 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 20:10:53 UTC +00:00]]
53
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54
+  (0.1ms) rollback transaction
55
+  (0.5ms) begin transaction
56
+  (0.1ms) SAVEPOINT active_record_1
57
+ SQL (4.2ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 20:11:22 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 20:11:22 UTC +00:00]]
58
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59
+  (0.1ms) rollback transaction
60
+  (0.0ms) begin transaction
61
+  (0.0ms) SAVEPOINT active_record_1
62
+ SQL (0.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 20:11:22 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 20:11:22 UTC +00:00]]
63
+  (0.0ms) RELEASE SAVEPOINT active_record_1
64
+  (0.1ms) rollback transaction
65
+  (0.4ms) begin transaction
66
+  (0.1ms) SAVEPOINT active_record_1
67
+ SQL (27.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:55:26 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:55:26 UTC +00:00]]
68
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69
+  (0.1ms) rollback transaction
70
+  (0.0ms) begin transaction
71
+  (0.0ms) SAVEPOINT active_record_1
72
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:55:26 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:55:26 UTC +00:00]]
73
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74
+  (0.1ms) rollback transaction
75
+  (0.1ms) begin transaction
76
+  (0.0ms) SAVEPOINT active_record_1
77
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:55:26 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:55:26 UTC +00:00]]
78
+  (0.0ms) RELEASE SAVEPOINT active_record_1
79
+  (0.1ms) rollback transaction
80
+  (0.6ms) begin transaction
81
+  (0.1ms) SAVEPOINT active_record_1
82
+ SQL (27.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:56:38 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:56:38 UTC +00:00]]
83
+  (0.1ms) RELEASE SAVEPOINT active_record_1
84
+  (0.1ms) rollback transaction
85
+  (0.1ms) begin transaction
86
+  (0.0ms) SAVEPOINT active_record_1
87
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:56:38 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:56:38 UTC +00:00]]
88
+  (0.0ms) RELEASE SAVEPOINT active_record_1
89
+  (0.1ms) rollback transaction
90
+  (0.0ms) begin transaction
91
+  (0.0ms) SAVEPOINT active_record_1
92
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:56:38 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:56:38 UTC +00:00]]
93
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94
+  (0.1ms) rollback transaction
95
+  (0.5ms) begin transaction
96
+  (0.1ms) SAVEPOINT active_record_1
97
+ SQL (26.9ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:56:53 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:56:53 UTC +00:00]]
98
+  (0.1ms) RELEASE SAVEPOINT active_record_1
99
+  (0.1ms) rollback transaction
100
+  (0.0ms) begin transaction
101
+  (0.0ms) SAVEPOINT active_record_1
102
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:56:53 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:56:53 UTC +00:00]]
103
+  (0.0ms) RELEASE SAVEPOINT active_record_1
104
+  (0.1ms) rollback transaction
105
+  (0.0ms) begin transaction
106
+  (0.0ms) SAVEPOINT active_record_1
107
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:56:53 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:56:53 UTC +00:00]]
108
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109
+  (0.1ms) rollback transaction
110
+  (0.4ms) begin transaction
111
+  (0.1ms) SAVEPOINT active_record_1
112
+ SQL (26.5ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:08:23 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:08:23 UTC +00:00]]
113
+  (0.1ms) RELEASE SAVEPOINT active_record_1
114
+  (0.1ms) rollback transaction
115
+  (0.0ms) begin transaction
116
+  (0.0ms) SAVEPOINT active_record_1
117
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:08:23 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:08:23 UTC +00:00]]
118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
119
+  (0.1ms) rollback transaction
120
+  (0.0ms) begin transaction
121
+  (0.0ms) SAVEPOINT active_record_1
122
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:08:23 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:08:23 UTC +00:00]]
123
+  (0.0ms) RELEASE SAVEPOINT active_record_1
124
+  (0.1ms) rollback transaction
125
+  (0.4ms) begin transaction
126
+  (0.1ms) SAVEPOINT active_record_1
127
+ SQL (28.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:08:40 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:08:40 UTC +00:00]]
128
+  (0.1ms) RELEASE SAVEPOINT active_record_1
129
+  (0.1ms) rollback transaction
130
+  (0.0ms) begin transaction
131
+  (0.0ms) SAVEPOINT active_record_1
132
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:08:40 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:08:40 UTC +00:00]]
133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
134
+  (0.1ms) rollback transaction
135
+  (0.0ms) begin transaction
136
+  (0.0ms) SAVEPOINT active_record_1
137
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:08:40 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:08:40 UTC +00:00]]
138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
139
+  (0.1ms) rollback transaction
140
+  (0.4ms) begin transaction
141
+  (0.1ms) SAVEPOINT active_record_1
142
+ SQL (26.7ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:11:13 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:11:13 UTC +00:00]]
143
+  (0.1ms) RELEASE SAVEPOINT active_record_1
144
+  (0.1ms) rollback transaction
145
+  (0.1ms) begin transaction
146
+  (0.0ms) SAVEPOINT active_record_1
147
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:11:14 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:11:14 UTC +00:00]]
148
+  (0.0ms) RELEASE SAVEPOINT active_record_1
149
+  (0.1ms) rollback transaction
150
+  (0.0ms) begin transaction
151
+  (0.0ms) SAVEPOINT active_record_1
152
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:11:14 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:11:14 UTC +00:00]]
153
+  (0.0ms) RELEASE SAVEPOINT active_record_1
154
+  (0.1ms) rollback transaction
155
+  (0.4ms) begin transaction
156
+  (0.1ms) SAVEPOINT active_record_1
157
+ SQL (24.8ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 21 Apr 2012 10:56:06 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 21 Apr 2012 10:56:06 UTC +00:00]]
158
+  (0.1ms) RELEASE SAVEPOINT active_record_1
159
+  (0.1ms) rollback transaction
160
+  (0.0ms) begin transaction
161
+  (0.0ms) SAVEPOINT active_record_1
162
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 21 Apr 2012 10:56:06 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 21 Apr 2012 10:56:06 UTC +00:00]]
163
+  (0.0ms) RELEASE SAVEPOINT active_record_1
164
+  (0.2ms) rollback transaction
165
+  (0.1ms) begin transaction
166
+  (0.1ms) SAVEPOINT active_record_1
167
+ SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 21 Apr 2012 10:56:06 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 21 Apr 2012 10:56:06 UTC +00:00]]
168
+  (0.1ms) RELEASE SAVEPOINT active_record_1
169
+  (0.2ms) rollback transaction
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,23 @@
1
+ require 'spec_helper'
2
+
3
+ describe MoneyRails::Monetizable do
4
+
5
+ describe "monetize" do
6
+ before :each do
7
+ @product = Product.create(:price_cents => 3000, :discount => 150,
8
+ :bonus_cents => 200)
9
+ end
10
+
11
+ it "attaches a Money object to model field" do
12
+ @product.price.should == Money.new(3000)
13
+ end
14
+
15
+ it "respects :target_name argument" do
16
+ @product.discount_value.should == Money.new(150)
17
+ end
18
+
19
+ it "overrides table currency with a field specific" do
20
+ @product.bonus.currency.should == Money::Currency.find(:eur)
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,23 @@
1
+ ENV["RAILS_ENV"] = 'test'
2
+
3
+ # Require dummy Rails app
4
+ require File.expand_path("../../spec/dummy/config/environment", __FILE__)
5
+
6
+ require 'rspec/rails'
7
+ require 'rspec/autorun'
8
+
9
+ # Requires supporting ruby files with custom matchers and macros, etc,
10
+ # in spec/support/ and its subdirectories.
11
+ Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
12
+
13
+ RSpec.configure do |config|
14
+ # If you're not using ActiveRecord, or you'd prefer not to run each of your
15
+ # examples within a transaction, remove the following line or assign false
16
+ # instead of true.
17
+ config.use_transactional_fixtures = true
18
+
19
+ # If true, the base class of anonymous controllers will be inferred
20
+ # automatically. This will be the default behavior in future versions of
21
+ # rspec-rails.
22
+ config.infer_base_class_for_anonymous_controllers = false
23
+ end