ruby_raider 0.5.1 → 0.5.2

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: 4901f96986636e0019995eda938ddb94a8598cf5a97f8f56bc7de451f0a8eb18
4
- data.tar.gz: 8527ee87a6d3883e3729ef8ade090373c126bff67edf8cacc95e8f31430bc850
3
+ metadata.gz: 8f699ce6dfbac0c7e24138755df16fcaaf27e3da351d6dfc4e5f7b1ad8df87e5
4
+ data.tar.gz: f3fb59894beaf8492d3e1cb608cf59b391363f85ed2a6846ff543e9988e2f7ad
5
5
  SHA512:
6
- metadata.gz: 420e8107aa26c7d8aba592f1da87628e5d17962838e07559951dd6112dd36d61e6aa07569a3295994940ab0d2bdfc38eb413a5aed3dba643fd9a55eb67ac24b2
7
- data.tar.gz: 4c422144ce099f82abce7fb5cc363bf0f901c5f3a17d2d3a6bdc3e049442ca0082d52498c4761417410e0cbfc72d6b8edcefb5d98f07e5159b4d396e84d1081f
6
+ metadata.gz: 0aae1fa17d24a1e413356bfd2efa84581ec29c904c6b78311fabfb38975be8e2267497856f2cd9632ddbfa225f67e4ca0f3e964349d1ec94fb11627634b0b6ce
7
+ data.tar.gz: 16f14221f3c9753acce661104bae09299ff92c56c886ecad4f8113f023cc14ca5905f48da1404106f275e1ca77c9dc16d7cc7f2e602b6e65334740cf8e2c9da2
data/README.md CHANGED
@@ -99,7 +99,9 @@ Commands:
99
99
  raider helper [HELPER_NAME] # Creates a new helper
100
100
 
101
101
  raider new [PROJECT_NAME] # Creates a new framework based on settings picked
102
-
102
+
103
+ raider open_ai [REQUEST] # Uses open AI to create a file or generate output
104
+
103
105
  raider page [PAGE_NAME] # Creates a new page object
104
106
 
105
107
  raider path [PATH] # Sets the default path for scaffolding
@@ -95,7 +95,7 @@ class UtilityCommands < Thor
95
95
 
96
96
  desc 'version', 'It shows the version of Ruby Raider you are currently using'
97
97
  def version
98
- puts 'The Ruby Raider version is 0.5.1, Happy testing!'
98
+ puts 'The Ruby Raider version is 0.5.2, Happy testing!'
99
99
  end
100
100
 
101
101
  map '-v' => 'version'
@@ -106,7 +106,9 @@ class UtilityCommands < Thor
106
106
 
107
107
  def open_ai(request)
108
108
  if options[:path]
109
+ pp 'Generating File...'
109
110
  OpenAi.create_file(choice = 0, options[:path], request)
111
+ pp "File created in #{options[:path]}"
110
112
  else
111
113
  OpenAi.output(request)
112
114
  end
@@ -96,6 +96,8 @@ Commands:
96
96
 
97
97
  raider new [PROJECT_NAME] # Creates a new framework based on settings picked
98
98
 
99
+ raider open_ai [REQUEST] # Uses open AI to create a file or generate output
100
+
99
101
  raider page [PAGE_NAME] # Creates a new page object
100
102
 
101
103
  raider path [PATH] # Sets the default path for scaffolding
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.1'
5
+ s.version = '0.5.2'
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.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Agustin Pequeno