File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -176,8 +176,8 @@ function check_documentation_coverage {
176
176
}
177
177
178
178
function check_style_and_lint {
179
- echo " bin/rubocop"
180
- eval " (unset RUBYOPT; exec bin/rubocop)"
179
+ echo " bin/rubocop lib "
180
+ eval " (unset RUBYOPT; exec bin/rubocop lib )"
181
181
}
182
182
183
183
function run_all_spec_suites {
Original file line number Diff line number Diff line change 10
10
it "delegates back to the including instance for methods the assertion module requires" do
11
11
assertions = Module . new {
12
12
def has_thing? ( thing )
13
- self . things . include? ( thing )
13
+ things . include? ( thing )
14
14
end
15
15
}
16
16
Original file line number Diff line number Diff line change 2
2
3
3
module RSpecRails
4
4
class Application < ::Rails ::Application
5
- self . config . secret_key_base = 'ASecretString'
5
+ config . secret_key_base = 'ASecretString'
6
6
7
7
if defined? ( ActionCable )
8
8
ActionCable . server . config . cable = { "adapter" => "test" }
You can’t perform that action at this time.
0 commit comments