Skip to content

Commit 3d6b3b4

Browse files
committed
Merge with upstream activemerchant master
2 parents afe9e46 + 5d8da4e commit 3d6b3b4

File tree

681 files changed

+96901
-17462
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

681 files changed

+96901
-17462
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ Gemfile.lock
77
Gemfile*.lock
88
.rbx/
99
*.gem
10-
.rvmrc
10+
.rvmrc
11+
/doc/
12+
.ruby-version

.rubocop.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
inherit_from: .rubocop_todo.yml
2+
3+
# Please keep AllCops, Bundler, Layout, Style, Metrics groups and then order cops
4+
# alphabetically
5+
#
6+
# References:
7+
# * https://github.com/bbatsov/ruby-style-guide
8+
# * https://rubocop.readthedocs.io/
9+
AllCops:
10+
DisplayCopNames: true
11+
DisplayStyleGuide: true
12+
Exclude:
13+
- "generators/**/*"
14+
- "lib/active_merchant/billing/gateways/paypal/**/*"
15+
- "lib/active_merchant/billing/gateways/paypal_express.rb"
16+
- "vendor/**/*"
17+
ExtraDetails: false
18+
TargetRubyVersion: 2.3
19+
20+
# Active Merchant gateways are not amenable to length restrictions
21+
Metrics/ClassLength:
22+
Enabled: false
23+
24+
Metrics/ModuleLength:
25+
Enabled: false

0 commit comments

Comments
 (0)