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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 73b511158597de3220db924f54274e1927bfc868354a14de1f1258fc9c5cbfe3
4
- data.tar.gz: f767e96bbf74bcd1445c7df25015e4c3be0023665b563eb2d2c0ba52dfb0f2d9
3
+ metadata.gz: 0a6c623da25690d8a629ff16ce2223fd5dc1be417a55521843f95dc372c19060
4
+ data.tar.gz: fa5cdb8b81ac068d3f85f65f03f97b697a1516cb83d202d9add5795fb30bd319
5
5
  SHA512:
6
- metadata.gz: 2d4b944d4d72e9fd3c2be66740a2b19d0c4db088161a10055a538c90c629a6383f670965ea8b99b7f50cd6ea8dfdd52477d9a093a772cb1cd81b6d6cbe5c542b
7
- data.tar.gz: 9b3c33fd07290c620dae1624518b94e0f82fd2e5a204e8b930fd1939d1085ce002904a31ccfee55b24197207ae5efb71e5a1f92c22c02b1f9ae9e0c83db165be
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 not required because it uses a based prompt
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: false, desc: 'The prompt for open ai', aliases: '-p'
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 not required because it uses a based prompt
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
@@ -23,7 +23,7 @@ module RubyRaider
23
23
 
24
24
  map 'v' => 'version'
25
25
 
26
- desc 'generate', 'Provides access to all the generators commands'
26
+ desc 'generate', 'Provides access to all the generator commands'
27
27
  subcommand 'generate', ScaffoldingCommands
28
28
  map 'g' => 'generate'
29
29
 
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.3'
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']
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_raider
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Agustin Pequeno