forked from tjgrathwell/rails5-spec-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Always add comma between params hash and format key (#1)
* Always add comma between params hash and format key tjgrathwell#8 https://github.com/eugeneius @intercom * Add Gemfile.lock
- Loading branch information
Showing
7 changed files
with
149 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
|
||
updates: | ||
# Check for updates to Rubygems | ||
- package-ecosystem: "bundler" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
versioning-strategy: increase | ||
commit-message: | ||
prefix: "gems" | ||
include: "scope" | ||
labels: | ||
- "gems" | ||
- "dependencies" | ||
|
||
# Check for updates to GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
commit-message: | ||
prefix: "github-actions" | ||
include: "scope" | ||
labels: | ||
- "github-actions" | ||
- "dependencies" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Tests | ||
|
||
on: [ push ] | ||
|
||
jobs: | ||
ci: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- | ||
name: "Default" | ||
ruby: 2.7.4 | ||
gemfile: Gemfile | ||
|
||
env: | ||
BUNDLE_GEMFILE: "${{ matrix.gemfile }}" | ||
BUNDLE_WITHOUT: production | ||
BUNDLE_JOBS: 3 | ||
BUNDLE_RETRY: 3 | ||
|
||
steps: | ||
- | ||
name: Checkout Source Code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: '1' | ||
- | ||
name: Install ruby ${{ matrix.ruby }} | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby }} | ||
- | ||
name: Set Env 1.17.3 (Default) | ||
if: ${{ matrix.gemfile == 'Gemfile' }} | ||
run: gem install bundler:1.17.3 | ||
- | ||
name: Bundle Install ${{ matrix.gemfile }} | ||
run: | | ||
bundle config set --local deployment 'true' | ||
bundle install | ||
- | ||
name: Run test suite | ||
run: | | ||
bundle exec rake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/.bundle/ | ||
/.yardoc | ||
/Gemfile.lock | ||
/_yardoc/ | ||
/coverage/ | ||
/doc/ | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
rails5-spec-converter (2.0.0) | ||
astrolabe (~> 1.2) | ||
parser (>= 2.3.0.7) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
ast (2.4.2) | ||
astrolabe (1.3.1) | ||
parser (~> 2.2) | ||
byebug (11.1.3) | ||
diff-lcs (1.4.4) | ||
parser (2.7.2.0) | ||
ast (~> 2.4.1) | ||
rake (10.5.0) | ||
rspec (3.10.0) | ||
rspec-core (~> 3.10.0) | ||
rspec-expectations (~> 3.10.0) | ||
rspec-mocks (~> 3.10.0) | ||
rspec-core (3.10.1) | ||
rspec-support (~> 3.10.0) | ||
rspec-expectations (3.10.1) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.10.0) | ||
rspec-mocks (3.10.2) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.10.0) | ||
rspec-support (3.10.2) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
bundler (~> 1.10) | ||
byebug | ||
rails5-spec-converter! | ||
rake (~> 10.0) | ||
rspec | ||
|
||
BUNDLED WITH | ||
1.17.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters