Skip to content

Commit 787ab9a

Browse files
Merge pull request #6 from speee/remove-gemfile-lock
Remove Gemfile.lock from repository
2 parents a760bb7 + 6e720e9 commit 787ab9a

5 files changed

Lines changed: 4 additions & 26 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020

2121
steps:
2222
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
23-
- name: Remove Gemfile.lock for fresh dependency resolution
24-
run: rm -f Gemfile.lock
2523
- name: Set up Ruby
2624
uses: ruby/setup-ruby@90be1154f987f4dc0fe0dd0feedac9e473aa4ba8 # v1.286.0
2725
with:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
/tmp/
99
/test/fixtures/late-dep/empty.js
1010
node_modules
11+
Gemfile.lock

Gemfile.lock

Lines changed: 0 additions & 21 deletions
This file was deleted.

test/local_script_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require 'test_helper'
22

3-
class SchmoozeTest < Minitest::Test
3+
class LocalScriptTest < Minitest::Test
44
class LocalScriptSchmoozer < Schmooze::Base
55
dependencies localapp: './localapp'
66

test/schmooze_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def test_error
9595
error = assert_raises Schmooze::JavaScript::Error do
9696
@schmoozer.error
9797
end
98-
assert_match /failed hard/, error.message
98+
assert_match(/failed hard/, error.message)
9999
end
100100

101101
def test_async
@@ -106,7 +106,7 @@ def test_async_error
106106
error = assert_raises Schmooze::JavaScript::Error do
107107
@schmoozer.async_error
108108
end
109-
assert_match /asynchronously failed so hard/, error.message
109+
assert_match(/asynchronously failed so hard/, error.message)
110110
end
111111

112112
def test_compile

0 commit comments

Comments
 (0)