forge-cli 0.1.3 → 0.1.4

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
2
  SHA1:
3
- metadata.gz: 3b3d1320e7a05a69b6ece89788ed2e3482339a41
4
- data.tar.gz: 3cff55052ce0d38c2fcff392b91f4f2e5a200f67
3
+ metadata.gz: efd5da8c96fee9aa0a2e7d3dea1bbee6988c9177
4
+ data.tar.gz: c3a9540c79d0385d6d6cff43c1ec9fd7873c1678
5
5
  SHA512:
6
- metadata.gz: 7500f26b32b9112a8e86dafe52f6d9e4df8b3a596db8fe820306f2bd1d0d53e9f61ed4b84bdd151dc136272e8d4562f060363011e676578cf7dd4480b4c0d3ee
7
- data.tar.gz: c8b04edd0fe995318206e7e02c4937a9275418811f610d2006cdf11819da358fa4e5d93ef7f37fff47a45171357b1d4166d72c39e7930a93798e34c7372c4e81
6
+ metadata.gz: 2b52ab71ca58fe8462f19dc9ba4acb1bdca009719619a9f9d34b997bf43881e25370f10e713bdf58385d0c3b195230963cdf66d7175e2f74a9be1f67ea54cc36
7
+ data.tar.gz: 87956d82909d5131fa2f5a032e7afe19d17595c05b362903340fc617b63d659c8a768541ae428430bdd16d45cf640590f22977bf491a77a88846b102127c9883
@@ -38,7 +38,7 @@ files:
38
38
  - 'lib/models/order'
39
39
  - 'lib/forge/config/ecommerce.rb'
40
40
  - 'db/help/products_new.help'
41
- - 'config/initializers/ecommerce.rb'
41
+ - 'config/initializers/zecommerce.rb'
42
42
 
43
43
  migrations:
44
44
  - create_addresses
@@ -1,3 +1,3 @@
1
1
  class ForgeCLI
2
- VERSION = '0.1.3'
2
+ VERSION = '0.1.4'
3
3
  end
@@ -1,85 +1,8 @@
1
- #
2
- # mention S3
3
- #
4
- # Languages
5
- # languages:
6
- # french: fr
7
- # german: de
8
-
9
- # global settings, not related to any particular environment
10
- events:
11
- display: calendar
12
-
13
- # The currency that funds are accepted in. Caution: MUST be an ISO 4217 currency code. Common codes: USD, CAD, EUR.
14
- currency: CAD
15
-
16
- # integrated payments means using on-site CC payments with ActiveMerchant. non-integrated defaults to PayPal at this point.
17
- integrated_payments: true
18
-
19
- # Accept coupons in the e-commerce section?
20
- use_coupons: false
21
-
22
- # Charge a flat rate per product for shipping? The alternative is the more complex postal service integration.
23
- flat_rate_shipping: false
24
-
25
- # Send our own email receipt in addition to whatever receipt may be generated by the payment gateway?
26
- email_receipt: true
27
-
28
- # Optional text for accessing support that is used in app/views/forge/help_topics/show.html.haml
29
- # This text is displayed immediately after the sentence 'If none of the above was helpful to you, you can browse the help index'
30
- # So, if you provide additional support via email, etc., you can add it by saying something like:
31
- # or <a href="mailto:support@example.com">send us an email</a>
32
- # (The 'or' is necessary for the complete sentence to make sense.) HTML is allowed. If you do not provide additional support, leave
33
- # this blank.
34
- support_instructions_in_help: or <a href='mailto:support@factore.ca'>send us an email and we'll help you out</a>
35
-
36
- # Optional text for accessing support that is displayed in the main application layout. Located at the end of
37
- # app/views/layouts/forge.html.haml. HTML is allowed. If you do not provide additional support, leave this blank.
38
- support_instructions_in_layout: <a href="mailto:support@factore.ca">Support Requests</a>&nbsp;|&nbsp;<a href="http://factore.ca/contact" target="_">Other Inquiries</a>
39
-
40
-
41
-
42
- # Optional text that is displayed below the 'SEO Tips' section of the 'SEO Fields' tab that is present on the forms for resources like
43
- # pages and posts. We use this text to advertise our SEO and online marketing services. This text is used in app/views/forge/shared/_seo_fields.html.haml
44
- # HTML is allowed.
45
- seo_callout: <p>factor[e] offers a range of advanced search engine optimization and online marketing services. Contact us on <a href="http://factore.ca/contact">our website</a> or at 905-522-7894 to get started.</p>
46
-
47
-
48
- # zencoder video encoding settings
49
- zencoder:
50
- api_key: 9cee5d23f4f560d75ad2e4b4e9e88148
51
- bucket: forge3_encoded
52
-
53
- # environment-specific settings
54
1
  development:
55
- canada_post:
56
- login: CPC_DEMO_XML
57
- paypal:
58
- account: marc_1274469546_biz@factore.ca
59
- active_merchant:
60
- base_mode: test
61
- gateway: BogusGateway
62
- login:
63
- password:
64
-
65
- test:
66
- canada_post:
67
- login: CPC_DEMO_XML
68
- paypal:
69
- account: forge_test@factore.ca
70
- active_merchant:
71
- base_mode: test
72
- gateway: BogusGateway
73
- login:
74
- password:
2
+ fake_setting: ''
75
3
 
76
4
  production:
77
- canada_post:
78
- login: XXX_XXXX_XXX
79
- paypal:
80
- account:
81
- active_merchant:
82
- base_mode: production
83
- gateway: MonerisGateway
84
- login:
85
- password:
5
+ fake_setting: ''
6
+
7
+ test:
8
+ fake_setting: ''
@@ -50,6 +50,10 @@ module Forge
50
50
  def payments
51
51
  @payments.to_sym
52
52
  end
53
+
54
+ def active_merchant
55
+ { :base_mode => :test }
56
+ end
53
57
  end
54
58
  end
55
59
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forge-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - factor[e] design initiative
@@ -571,7 +571,6 @@ files:
571
571
  - lib/forge/config/initializers/ckeditor.rb
572
572
  - lib/forge/config/initializers/class_extensions/hash.rb
573
573
  - lib/forge/config/initializers/devise.rb
574
- - lib/forge/config/initializers/ecommerce.rb
575
574
  - lib/forge/config/initializers/forge.rb
576
575
  - lib/forge/config/initializers/generators.rb
577
576
  - lib/forge/config/initializers/inflections.rb
@@ -579,6 +578,7 @@ files:
579
578
  - lib/forge/config/initializers/secret_token.rb
580
579
  - lib/forge/config/initializers/session_store.rb
581
580
  - lib/forge/config/initializers/validators.rb
581
+ - lib/forge/config/initializers/zecommerce.rb
582
582
  - lib/forge/config/locales/devise.en.yml
583
583
  - lib/forge/config/locales/en.yml
584
584
  - lib/forge/config/routes.rb