File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ def full_path
24
24
end
25
25
26
26
def init
27
- unless File . exists ?( full_path )
27
+ unless File . exist ?( full_path ) # AI-GEN - cursor
28
28
err_msg = ""
29
29
if detected_a_dev_environment?
30
30
ey_config_local_usage
@@ -101,7 +101,7 @@ def find_config(config_paths)
101
101
config_paths . each do |config_path |
102
102
possible_path = File . expand_path ( config_path )
103
103
possible_paths << possible_path
104
- if File . exists ?( possible_path )
104
+ if File . exist ?( possible_path ) # AI-GEN - cursor
105
105
return possible_path
106
106
end
107
107
end
Original file line number Diff line number Diff line change 1
1
module EY
2
2
class Config
3
- VERSION = "0.0.7"
3
+ VERSION = "0.0.8" # AI-GEN - cursor
4
4
end
5
5
end
Original file line number Diff line number Diff line change 21
21
end
22
22
23
23
it 'should create ey_services_config_local.yml' do
24
- File . exist? ( EY ::Config ::Local . config_path ) . should be_true
24
+ expect ( File . exist? ( EY ::Config ::Local . config_path ) ) . to be_truthy # AI-GEN - cursor
25
25
end
26
26
27
27
it 'should add the keys passed from the command line' do
You can’t perform that action at this time.
0 commit comments