piggybak_bundle_discounts 0.0.1

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.
Files changed (54) hide show
  1. data/LICENSE +339 -0
  2. data/README.md +17 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/javascripts/piggybak_bundle_discounts/piggybak_bundle_discounts.js +30 -0
  5. data/app/assets/stylesheets/piggybak_bundle_discounts/application.css +13 -0
  6. data/app/controllers/piggybak_bundle_discounts/bundle_discount_controller.rb +15 -0
  7. data/app/helpers/piggybak_bundle_discounts/application_helper.rb +4 -0
  8. data/app/models/piggybak_bundle_discounts/bundle_discount.rb +33 -0
  9. data/app/models/piggybak_bundle_discounts/bundle_discount_sellable.rb +15 -0
  10. data/app/views/layouts/piggybak_bundle_discounts/application.html.erb +14 -0
  11. data/app/views/piggybak_bundle_discounts/_apply_bundle_discount.html.erb +5 -0
  12. data/app/views/rails_admin/main/piggybak_bundle_discounts/_sellables.html.haml +9 -0
  13. data/config/routes.rb +3 -0
  14. data/db/migrate/20121109000330_create_bundle_discounts.rb +22 -0
  15. data/lib/piggybak_bundle_discounts.rb +4 -0
  16. data/lib/piggybak_bundle_discounts/engine.rb +83 -0
  17. data/lib/piggybak_bundle_discounts/order_decorator.rb +25 -0
  18. data/lib/piggybak_bundle_discounts/version.rb +3 -0
  19. data/lib/tasks/piggybak_bundle_discounts_tasks.rake +4 -0
  20. data/test/dummy/README.rdoc +261 -0
  21. data/test/dummy/Rakefile +7 -0
  22. data/test/dummy/app/assets/javascripts/application.js +15 -0
  23. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  24. data/test/dummy/app/controllers/application_controller.rb +3 -0
  25. data/test/dummy/app/helpers/application_helper.rb +2 -0
  26. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  27. data/test/dummy/config.ru +4 -0
  28. data/test/dummy/config/application.rb +59 -0
  29. data/test/dummy/config/boot.rb +10 -0
  30. data/test/dummy/config/database.yml +25 -0
  31. data/test/dummy/config/environment.rb +5 -0
  32. data/test/dummy/config/environments/development.rb +37 -0
  33. data/test/dummy/config/environments/production.rb +67 -0
  34. data/test/dummy/config/environments/test.rb +37 -0
  35. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  36. data/test/dummy/config/initializers/inflections.rb +15 -0
  37. data/test/dummy/config/initializers/mime_types.rb +5 -0
  38. data/test/dummy/config/initializers/secret_token.rb +7 -0
  39. data/test/dummy/config/initializers/session_store.rb +8 -0
  40. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  41. data/test/dummy/config/locales/en.yml +5 -0
  42. data/test/dummy/config/routes.rb +4 -0
  43. data/test/dummy/db/schema.rb +25 -0
  44. data/test/dummy/public/404.html +26 -0
  45. data/test/dummy/public/422.html +26 -0
  46. data/test/dummy/public/500.html +25 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/script/rails +6 -0
  49. data/test/fixtures/piggybak_bundle_discounts/bundle_discounts.yml +13 -0
  50. data/test/integration/navigation_test.rb +10 -0
  51. data/test/piggybak_bundle_discounts_test.rb +7 -0
  52. data/test/test_helper.rb +15 -0
  53. data/test/unit/piggybak_bundle_discounts/bundle_discount_test.rb +9 -0
  54. metadata +154 -0
@@ -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,13 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ name: MyString
5
+ discount: 1.5
6
+ multiply: false
7
+ active_until: 2012-11-08
8
+
9
+ two:
10
+ name: MyString
11
+ discount: 1.5
12
+ multiply: false
13
+ active_until: 2012-11-08
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class PiggybakBundleDiscountsTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, PiggybakBundleDiscounts
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module PiggybakBundleDiscounts
4
+ class BundleDiscountTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
metadata ADDED
@@ -0,0 +1,154 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: piggybak_bundle_discounts
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Barrett Griffith, Steph Skardal
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-11-15 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.8
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 3.2.8
30
+ description: Bundle Discount Support in Piggybak.
31
+ email:
32
+ - piggybak@endpoint.com
33
+ executables: []
34
+ extensions: []
35
+ extra_rdoc_files: []
36
+ files:
37
+ - app/controllers/piggybak_bundle_discounts/bundle_discount_controller.rb
38
+ - app/assets/stylesheets/piggybak_bundle_discounts/application.css
39
+ - app/assets/javascripts/piggybak_bundle_discounts/piggybak_bundle_discounts.js
40
+ - app/models/piggybak_bundle_discounts/bundle_discount_sellable.rb
41
+ - app/models/piggybak_bundle_discounts/bundle_discount.rb
42
+ - app/helpers/piggybak_bundle_discounts/application_helper.rb
43
+ - app/views/layouts/piggybak_bundle_discounts/application.html.erb
44
+ - app/views/rails_admin/main/piggybak_bundle_discounts/_sellables.html.haml
45
+ - app/views/piggybak_bundle_discounts/_apply_bundle_discount.html.erb
46
+ - config/routes.rb
47
+ - db/migrate/20121109000330_create_bundle_discounts.rb
48
+ - lib/piggybak_bundle_discounts/order_decorator.rb
49
+ - lib/piggybak_bundle_discounts/engine.rb
50
+ - lib/piggybak_bundle_discounts/version.rb
51
+ - lib/tasks/piggybak_bundle_discounts_tasks.rake
52
+ - lib/piggybak_bundle_discounts.rb
53
+ - LICENSE
54
+ - Rakefile
55
+ - README.md
56
+ - test/integration/navigation_test.rb
57
+ - test/test_helper.rb
58
+ - test/piggybak_bundle_discounts_test.rb
59
+ - test/dummy/script/rails
60
+ - test/dummy/Rakefile
61
+ - test/dummy/README.rdoc
62
+ - test/dummy/app/controllers/application_controller.rb
63
+ - test/dummy/app/assets/stylesheets/application.css
64
+ - test/dummy/app/assets/javascripts/application.js
65
+ - test/dummy/app/helpers/application_helper.rb
66
+ - test/dummy/app/views/layouts/application.html.erb
67
+ - test/dummy/config/locales/en.yml
68
+ - test/dummy/config/environment.rb
69
+ - test/dummy/config/routes.rb
70
+ - test/dummy/config/environments/production.rb
71
+ - test/dummy/config/environments/test.rb
72
+ - test/dummy/config/environments/development.rb
73
+ - test/dummy/config/initializers/wrap_parameters.rb
74
+ - test/dummy/config/initializers/secret_token.rb
75
+ - test/dummy/config/initializers/mime_types.rb
76
+ - test/dummy/config/initializers/session_store.rb
77
+ - test/dummy/config/initializers/backtrace_silencers.rb
78
+ - test/dummy/config/initializers/inflections.rb
79
+ - test/dummy/config/boot.rb
80
+ - test/dummy/config/application.rb
81
+ - test/dummy/config/database.yml
82
+ - test/dummy/public/500.html
83
+ - test/dummy/public/422.html
84
+ - test/dummy/public/favicon.ico
85
+ - test/dummy/public/404.html
86
+ - test/dummy/config.ru
87
+ - test/dummy/db/schema.rb
88
+ - test/fixtures/piggybak_bundle_discounts/bundle_discounts.yml
89
+ - test/unit/piggybak_bundle_discounts/bundle_discount_test.rb
90
+ homepage: http://www.piggybak.org/
91
+ licenses: []
92
+ post_install_message:
93
+ rdoc_options: []
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ segments:
103
+ - 0
104
+ hash: 3800901680484817345
105
+ required_rubygems_version: !ruby/object:Gem::Requirement
106
+ none: false
107
+ requirements:
108
+ - - ! '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ segments:
112
+ - 0
113
+ hash: 3800901680484817345
114
+ requirements: []
115
+ rubyforge_project:
116
+ rubygems_version: 1.8.23
117
+ signing_key:
118
+ specification_version: 3
119
+ summary: Bundle Discount Support in Piggybak.
120
+ test_files:
121
+ - test/integration/navigation_test.rb
122
+ - test/test_helper.rb
123
+ - test/piggybak_bundle_discounts_test.rb
124
+ - test/dummy/script/rails
125
+ - test/dummy/Rakefile
126
+ - test/dummy/README.rdoc
127
+ - test/dummy/app/controllers/application_controller.rb
128
+ - test/dummy/app/assets/stylesheets/application.css
129
+ - test/dummy/app/assets/javascripts/application.js
130
+ - test/dummy/app/helpers/application_helper.rb
131
+ - test/dummy/app/views/layouts/application.html.erb
132
+ - test/dummy/config/locales/en.yml
133
+ - test/dummy/config/environment.rb
134
+ - test/dummy/config/routes.rb
135
+ - test/dummy/config/environments/production.rb
136
+ - test/dummy/config/environments/test.rb
137
+ - test/dummy/config/environments/development.rb
138
+ - test/dummy/config/initializers/wrap_parameters.rb
139
+ - test/dummy/config/initializers/secret_token.rb
140
+ - test/dummy/config/initializers/mime_types.rb
141
+ - test/dummy/config/initializers/session_store.rb
142
+ - test/dummy/config/initializers/backtrace_silencers.rb
143
+ - test/dummy/config/initializers/inflections.rb
144
+ - test/dummy/config/boot.rb
145
+ - test/dummy/config/application.rb
146
+ - test/dummy/config/database.yml
147
+ - test/dummy/public/500.html
148
+ - test/dummy/public/422.html
149
+ - test/dummy/public/favicon.ico
150
+ - test/dummy/public/404.html
151
+ - test/dummy/config.ru
152
+ - test/dummy/db/schema.rb
153
+ - test/fixtures/piggybak_bundle_discounts/bundle_discounts.yml
154
+ - test/unit/piggybak_bundle_discounts/bundle_discount_test.rb