ruby_raider 0.5.3 → 0.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/commands/open_ai_commands.rb +1 -1
- data/lib/generators/templates/common/read_me.tt +1 -1
- data/lib/ruby_raider.rb +1 -1
- data/ruby_raider.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a6c623da25690d8a629ff16ce2223fd5dc1be417a55521843f95dc372c19060
|
4
|
+
data.tar.gz: fa5cdb8b81ac068d3f85f65f03f97b697a1516cb83d202d9add5795fb30bd319
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d5c5d38a628cf49415790f5dfe531169436a249d0fd8f06cd1a8531688c77c89728111050efba563d2bf8412afc23764bfd95d15cceb4c999b3c77537a7ac28
|
7
|
+
data.tar.gz: 3fe0e5e64582f483d418c7c03f136802dd90fc4e7dbbc981d3efa27fc5b68922173ad2871359ef67dd9fbcd8125ac1b4f1ff1ca67cd2e4613d40d030ce247e50
|
data/README.md
CHANGED
@@ -139,7 +139,7 @@ raider o make [REQUEST] - -path or -p [PATH]
|
|
139
139
|
# Will input the content of the chosen file into open ai and will edit it based on the result
|
140
140
|
raider o make [PATH_NAME] - -edit or -e [FILE_PATH]
|
141
141
|
# Creates a cucumber file and uses it to input into open ai and create a steps file
|
142
|
-
# The prompt is
|
142
|
+
# The prompt is required
|
143
143
|
raider o cucumber [NAME] - -prompt or -p [PROMPT]
|
144
144
|
# Creates a cucumber step definitions file based on an scenario file
|
145
145
|
raider open_ai steps [NAME]
|
@@ -26,7 +26,7 @@ class OpenAiCommands < Thor
|
|
26
26
|
desc 'cucumber [NAME]', 'Creates feature and step files only using open ai'
|
27
27
|
option :prompt,
|
28
28
|
type: :string,
|
29
|
-
required:
|
29
|
+
required: true, desc: 'The prompt for open ai', aliases: '-p'
|
30
30
|
|
31
31
|
def cucumber(name)
|
32
32
|
feature_path = "features/#{name}.feature"
|
@@ -135,7 +135,7 @@ raider o make [REQUEST] - -path or -p [PATH]
|
|
135
135
|
# Will input the content of the chosen file into open ai and will edit it based on the result
|
136
136
|
raider o make [PATH_NAME] - -edit or -e [FILE_PATH]
|
137
137
|
# Creates a cucumber file and uses it to input into open ai and create a steps file
|
138
|
-
# The prompt is
|
138
|
+
# The prompt is required
|
139
139
|
raider o cucumber [NAME] - -prompt or -p [PROMPT]
|
140
140
|
# Creates a cucumber step definitions file based on an scenario file
|
141
141
|
raider open_ai steps [NAME]
|
data/lib/ruby_raider.rb
CHANGED
data/ruby_raider.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = 'ruby_raider'
|
5
|
-
s.version = '0.5.
|
5
|
+
s.version = '0.5.4'
|
6
6
|
s.summary = 'A gem to make setup and start of UI automation projects easier'
|
7
7
|
s.description = 'This gem has everything you need to start working with test automation'
|
8
8
|
s.authors = ['Agustin Pequeno']
|