Skip to content

Commit b8b9ac7

Browse files
authored
Merge pull request #220 from nebulab/elia/dev-support-update
Update to the latest solidus_dev_support defaults
2 parents ed99c05 + d2a1096 commit b8b9ac7

File tree

26 files changed

+736
-143
lines changed

26 files changed

+736
-143
lines changed

.circleci/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- checkout
2121
- solidusio_extensions/run-tests-solidus-master
2222
- solidusio_extensions/store-test-results
23+
2324
run-specs-with-mysql:
2425
executor:
2526
name: solidusio_extensions/mysql
@@ -40,13 +41,20 @@ jobs:
4041
- solidusio_extensions/run-tests-solidus-older
4142
- solidusio_extensions/store-test-results
4243

44+
lint-code:
45+
executor: solidusio_extensions/sqlite-memory
46+
steps:
47+
- browser-tools/install-browser-tools
48+
- solidusio_extensions/lint-code
4349

4450
workflows:
4551
"Run specs on supported Solidus versions":
4652
jobs:
4753
- run-specs-with-postgres
4854
- run-specs-with-mysql
4955
- run-specs-with-sqlite
56+
- lint-code
57+
5058
"Weekly run specs against master":
5159
triggers:
5260
- schedule:

.gem_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
bump:
22
recurse: false
3-
file: 'lib/spree/auth/version.rb'
3+
file: 'lib/solidus_auth_devise/version.rb'
44
message: Bump SolidusAuthDevise to %{version}
55
tag: true

.github/stale.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Number of days of inactivity before an issue becomes stale
22
daysUntilStale: 60
33
# Number of days of inactivity before a stale issue is closed
4-
daysUntilClose: 7
4+
daysUntilClose: false
55
# Issues with these labels will never be considered stale
66
exemptLabels:
77
- pinned
88
- security
99
# Label to use when marking an issue as stale
10-
staleLabel: wontfix
10+
staleLabel: stale
1111
# Comment to post when marking an issue as stale. Set to `false` to disable
1212
markComment: >
1313
This issue has been automatically marked as stale because it has not had
14-
recent activity. It will be closed if no further activity occurs. Thank you
14+
recent activity. It might be closed if no further activity occurs. Thank you
1515
for your contributions.
1616
# Comment to post when closing a stale issue. Set to `false` to disable
17-
closeComment: false
17+
closeComment: false

.github_changelog_generator

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
issues=false
2+
exclude-labels=infrastructure

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,7 @@ pkg
1515
*.swp
1616
spec/dummy
1717
spec/examples.txt
18+
/sandbox
19+
.rvmrc
20+
.ruby-version
21+
.ruby-gemset

.rubocop.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1+
inherit_from: .rubocop_todo.yml
2+
13
require:
24
- solidus_dev_support/rubocop
5+
6+
AllCops:
7+
NewCops: disable

0 commit comments

Comments
 (0)