ruby_raider 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -1
- data/lib/commands/utility_commands.rb +3 -1
- data/lib/generators/templates/common/read_me.tt +2 -0
- 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: 8f699ce6dfbac0c7e24138755df16fcaaf27e3da351d6dfc4e5f7b1ad8df87e5
|
4
|
+
data.tar.gz: f3fb59894beaf8492d3e1cb608cf59b391363f85ed2a6846ff543e9988e2f7ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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']
|