Ifd_Automation 0.1.8 → 1.0
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/bin/generate.rb +20 -20
- data/lib/Ifd_Automation/javascript_handling_steps.rb +33 -33
- data/lib/Ifd_Automation/lib_file_steps.rb +10 -1
- data/lib/Ifd_Automation/lib_schema_data_steps.rb +0 -15
- data/lib/Ifd_Automation/lib_web_steps.rb +5 -5
- data/lib/Ifd_Automation/methods/core.rb +10 -2
- data/lib/Ifd_Automation/methods/javascript_handling_methods.rb +45 -45
- data/lib/Ifd_Automation/version.rb +5 -5
- data/project/Gemfile +2 -3
- data/project/Gemfile.lock +182 -198
- data/project/features/TestData/globalData.yml +3 -0
- data/project/features/step_definitions/lib_steps/login_steps.rb +1 -1
- data/project/features/support/env.rb +32 -1
- data/project/features/support/project_config.yml +39 -0
- data/project/features/support/project_env.rb +51 -51
- data/project/{features/TestData/testdata.yml → project_config.yml} +0 -1
- data/project/test.rb +6 -0
- metadata +44 -47
- data/project/report/test.html +0 -473
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf8197d6e8c9e6d71497dfa40f7c68356c6d7014
|
4
|
+
data.tar.gz: ea18647e8f0acb25f8ab447e7553bd56060e3d13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40a0325fde1a9639cb46d61ac440df82eeb0ea732118d0a7cea5039903d9f416fa7369f72be817cbc84f7596a26502b07381e74163b64fa6067c4752664f63b5
|
7
|
+
data.tar.gz: 028f7bff9378b7a7cef466bd583548a8380c5f0ed19d18839948b9392d9887dd234680cf1474009d0b7c0f2e59d5083706a387160944932d01173ff54395371d
|
data/bin/generate.rb
CHANGED
@@ -1,20 +1,20 @@
|
|
1
|
-
|
2
|
-
def ifd_automation_scaffold
|
3
|
-
if File.exists?(@features_dir)
|
4
|
-
puts "A features directory already exists. Stopping..."
|
5
|
-
exit 1
|
6
|
-
end
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
FileUtils.cp_r(@source_dir, @features_dir)
|
15
|
-
|
16
|
-
msg("Info") do
|
17
|
-
puts "features subdirectory created. \n"
|
18
|
-
end
|
19
|
-
|
20
|
-
end
|
1
|
+
|
2
|
+
def ifd_automation_scaffold
|
3
|
+
if File.exists?(@features_dir)
|
4
|
+
puts "A features directory already exists. Stopping..."
|
5
|
+
exit 1
|
6
|
+
end
|
7
|
+
msg("Question") do
|
8
|
+
puts "I'm about to create a subdirectory called features."
|
9
|
+
puts "features will contain all your project tests."
|
10
|
+
puts "Please hit return to confirm that's what you want."
|
11
|
+
end
|
12
|
+
exit 2 unless STDIN.gets.chomp == ''
|
13
|
+
|
14
|
+
FileUtils.cp_r(@source_dir, @features_dir)
|
15
|
+
|
16
|
+
msg("Info") do
|
17
|
+
puts "features subdirectory created. \n"
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
@@ -1,34 +1,34 @@
|
|
1
|
-
# require_relative 'methods/javascript_handling_methods'
|
2
|
-
require_relative 'methods/required_files'
|
3
|
-
|
4
|
-
Then(/^I accept pop-up alert$/) do
|
5
|
-
handle_alert('accept')
|
6
|
-
end
|
7
|
-
|
8
|
-
Then(/^I dismiss pop-up alert$/) do
|
9
|
-
handle_alert('dismiss')
|
10
|
-
end
|
11
|
-
|
12
|
-
And /^I focus in new open page$/ do
|
13
|
-
switch_to_windows(
|
14
|
-
end
|
15
|
-
|
16
|
-
And /^I focus in previous page$/ do
|
17
|
-
switch_to_windows(
|
18
|
-
end
|
19
|
-
|
20
|
-
And /^I close current windows$/ do
|
21
|
-
close_windows
|
22
|
-
end
|
23
|
-
|
24
|
-
Given /^I go back to the previous page$/ do
|
25
|
-
get_browser_back
|
26
|
-
end
|
27
|
-
|
28
|
-
When /^I refresh this page$/ do
|
29
|
-
refresh_page
|
30
|
-
end
|
31
|
-
|
32
|
-
And /^I open new browser windows$/ do
|
33
|
-
open_new_windows_browser
|
1
|
+
# require_relative 'methods/javascript_handling_methods'
|
2
|
+
require_relative 'methods/required_files'
|
3
|
+
|
4
|
+
Then(/^I accept pop-up alert$/) do
|
5
|
+
handle_alert('accept')
|
6
|
+
end
|
7
|
+
|
8
|
+
Then(/^I dismiss pop-up alert$/) do
|
9
|
+
handle_alert('dismiss')
|
10
|
+
end
|
11
|
+
|
12
|
+
And /^I focus in new open page$/ do
|
13
|
+
switch_to_windows(last)
|
14
|
+
end
|
15
|
+
|
16
|
+
And /^I focus in previous page$/ do
|
17
|
+
switch_to_windows(first)
|
18
|
+
end
|
19
|
+
|
20
|
+
And /^I close current windows$/ do
|
21
|
+
close_windows
|
22
|
+
end
|
23
|
+
|
24
|
+
Given /^I go back to the previous page$/ do
|
25
|
+
get_browser_back
|
26
|
+
end
|
27
|
+
|
28
|
+
When /^I refresh this page$/ do
|
29
|
+
refresh_page
|
30
|
+
end
|
31
|
+
|
32
|
+
And /^I open new browser windows$/ do
|
33
|
+
open_new_windows_browser
|
34
34
|
end
|
@@ -18,7 +18,16 @@ Then /^I run exe file "(.*)" on windows$/ do |filename|
|
|
18
18
|
if File.exist?(filename)
|
19
19
|
system("'"+filename+"'")
|
20
20
|
else
|
21
|
-
raise "*** ERROR:
|
21
|
+
raise "*** ERROR: File #{filename} is not existed."
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
Then /^I run exe file from test data location "(.*)" on windows$/ do |filename|
|
26
|
+
executable_file = $test_data_dir+filename
|
27
|
+
if File.exist?(executable_file)
|
28
|
+
system("'"+executable_file+"'")
|
29
|
+
else
|
30
|
+
raise "*** ERROR: File #{filename} is not existed"
|
22
31
|
end
|
23
32
|
end
|
24
33
|
|
@@ -108,18 +108,3 @@ Then /^I get "(.*)" data from table "([^\"]*)" on "([^\"]*)" schema in database
|
|
108
108
|
end
|
109
109
|
}
|
110
110
|
end
|
111
|
-
|
112
|
-
When /^I get data from SQL script file "(.*)" on "([^\"]*)" schema$/ do |file, schema|
|
113
|
-
script = File.read($sql_dir + file)
|
114
|
-
begin
|
115
|
-
rs = DatabaseMethods.execute_select(schema, script)
|
116
|
-
rs.each { |row|
|
117
|
-
row.each_pair { |cols, values|
|
118
|
-
$result=values
|
119
|
-
puts $result
|
120
|
-
}
|
121
|
-
}
|
122
|
-
DatabaseMethods.close_connection(schema)
|
123
|
-
ensure
|
124
|
-
end
|
125
|
-
end
|
@@ -147,11 +147,11 @@ When /^I click on "([^\"]*)" link$/ do |link|
|
|
147
147
|
end
|
148
148
|
|
149
149
|
# Upload file
|
150
|
-
When /^I attach the file "(.*)" to "(.*)"$/ do |
|
151
|
-
filepath = File.join(
|
152
|
-
if filepath.match(/^C:\//)
|
153
|
-
|
154
|
-
end
|
150
|
+
When /^I attach the file from location "(.*)" to "(.*)"$/ do |file, field|
|
151
|
+
filepath = File.join(file)
|
152
|
+
# if filepath.match(/^C:\//)
|
153
|
+
# filepath.gsub!(/\//, '\\')
|
154
|
+
# end
|
155
155
|
attach_file(field, filepath)
|
156
156
|
end
|
157
157
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
$_RP_OBJECT =
|
1
|
+
$_RP_OBJECT = Hash.new
|
2
2
|
|
3
3
|
#Print script log to console
|
4
4
|
def put_log str
|
@@ -333,10 +333,18 @@ end
|
|
333
333
|
def getTestData(testdataid)
|
334
334
|
begin
|
335
335
|
sTestDataidArr = testdataid.downcase.split('.')
|
336
|
-
testdata = $
|
336
|
+
testdata = $globalData[sTestDataidArr.first][sTestDataidArr.last]
|
337
337
|
puts (testdata)
|
338
338
|
return testdata
|
339
339
|
rescue Exception
|
340
340
|
return testdataid
|
341
341
|
end
|
342
|
+
end
|
343
|
+
|
344
|
+
def data(name)
|
345
|
+
begin
|
346
|
+
return $globalData[name.downcase]
|
347
|
+
rescue Exception
|
348
|
+
return name
|
349
|
+
end
|
342
350
|
end
|
@@ -1,46 +1,46 @@
|
|
1
|
-
require_relative 'required_files'
|
2
|
-
|
3
|
-
def handle_alert(decision)
|
4
|
-
if decision == 'accept'
|
5
|
-
page.driver.browser.switch_to.alert.accept
|
6
|
-
else
|
7
|
-
page.driver.browser.switch_to.alert.dismiss
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
def switch_to_windows(decision)
|
12
|
-
if decision == 'last'
|
13
|
-
page.driver.browser.switch_to.window(page.driver.browser.window_handles.last)
|
14
|
-
else
|
15
|
-
page.driver.browser.switch_to.window(page.driver.browser.window_handles.first)
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
def close_windows
|
20
|
-
page.driver.browser.close
|
21
|
-
page.driver.browser.switch_to.window(page.driver.browser.window_handles[0])
|
22
|
-
end
|
23
|
-
|
24
|
-
def get_browser_back
|
25
|
-
page.evaluate_script(
|
26
|
-
end
|
27
|
-
|
28
|
-
def refresh_page
|
29
|
-
visit page.driver.browser.current_url
|
30
|
-
end
|
31
|
-
|
32
|
-
def open_new_windows_browser
|
33
|
-
page.driver.execute_script("window.open()")
|
34
|
-
end
|
35
|
-
|
36
|
-
# method to get javascript pop-up alert text
|
37
|
-
def get_alert_text
|
38
|
-
page.driver.browser.switch_to.alert.text
|
39
|
-
end
|
40
|
-
|
41
|
-
# method to check javascript pop-up alert text
|
42
|
-
def check_alert_text(text)
|
43
|
-
if get_alert_text != text
|
44
|
-
raise TestCaseFailed, "Text on alert pop up not matched, Actual Text : #{get_alert_text}, Expected Text : #{text}"
|
45
|
-
end
|
1
|
+
require_relative 'required_files'
|
2
|
+
|
3
|
+
def handle_alert(decision)
|
4
|
+
if decision == 'accept'
|
5
|
+
page.driver.browser.switch_to.alert.accept
|
6
|
+
else
|
7
|
+
page.driver.browser.switch_to.alert.dismiss
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
def switch_to_windows(decision)
|
12
|
+
if decision == 'last'
|
13
|
+
page.driver.browser.switch_to.window(page.driver.browser.window_handles.last)
|
14
|
+
else
|
15
|
+
page.driver.browser.switch_to.window(page.driver.browser.window_handles.first)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
def close_windows
|
20
|
+
page.driver.browser.close
|
21
|
+
page.driver.browser.switch_to.window(page.driver.browser.window_handles[0])
|
22
|
+
end
|
23
|
+
|
24
|
+
def get_browser_back
|
25
|
+
page.evaluate_script('window.history.back()')
|
26
|
+
end
|
27
|
+
|
28
|
+
def refresh_page
|
29
|
+
visit page.driver.browser.current_url
|
30
|
+
end
|
31
|
+
|
32
|
+
def open_new_windows_browser
|
33
|
+
page.driver.execute_script("window.open()")
|
34
|
+
end
|
35
|
+
|
36
|
+
# method to get javascript pop-up alert text
|
37
|
+
def get_alert_text
|
38
|
+
page.driver.browser.switch_to.alert.text
|
39
|
+
end
|
40
|
+
|
41
|
+
# method to check javascript pop-up alert text
|
42
|
+
def check_alert_text(text)
|
43
|
+
if get_alert_text != text
|
44
|
+
raise TestCaseFailed, "Text on alert pop up not matched, Actual Text : #{get_alert_text}, Expected Text : #{text}"
|
45
|
+
end
|
46
46
|
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
module Ifd
|
2
|
-
module Automation
|
3
|
-
VERSION = '
|
4
|
-
end
|
5
|
-
end
|
1
|
+
module Ifd
|
2
|
+
module Automation
|
3
|
+
VERSION = '1.0'
|
4
|
+
end
|
5
|
+
end
|
data/project/Gemfile
CHANGED
@@ -10,12 +10,11 @@ gem 'mysql2','0.3.18'
|
|
10
10
|
gem 'test-unit', '~> 3.1.2'
|
11
11
|
gem 'parallel_tests'
|
12
12
|
gem 'rest-client', '~> 1.8.0'
|
13
|
-
gem 'tiny_tds', '~>0.6.
|
13
|
+
gem 'tiny_tds', '~> 0.6.2'
|
14
14
|
gem 'actionmailer', '~> 4.2.3'
|
15
15
|
gem 'email_spec'
|
16
16
|
gem 'rails'
|
17
17
|
gem 'rack-utf8_sanitizer'
|
18
18
|
gem 'mail'
|
19
19
|
gem 'chromedriver2-helper'
|
20
|
-
gem 'rautomation', '~> 0.17.0'
|
21
|
-
gem 'Ifd_Automation'
|
20
|
+
gem 'rautomation', '~> 0.17.0'
|
data/project/Gemfile.lock
CHANGED
@@ -1,198 +1,182 @@
|
|
1
|
-
GEM
|
2
|
-
remote: http://rubygems.org/
|
3
|
-
specs:
|
4
|
-
actionmailer (4.2.4)
|
5
|
-
actionpack (= 4.2.4)
|
6
|
-
actionview (= 4.2.4)
|
7
|
-
activejob (= 4.2.4)
|
8
|
-
mail (~> 2.5, >= 2.5.4)
|
9
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
10
|
-
actionpack (4.2.4)
|
11
|
-
actionview (= 4.2.4)
|
12
|
-
activesupport (= 4.2.4)
|
13
|
-
rack (~> 1.6)
|
14
|
-
rack-test (~> 0.6.2)
|
15
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
16
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
17
|
-
actionview (4.2.4)
|
18
|
-
activesupport (= 4.2.4)
|
19
|
-
builder (~> 3.1)
|
20
|
-
erubis (~> 2.7.0)
|
21
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
22
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
23
|
-
activejob (4.2.4)
|
24
|
-
activesupport (= 4.2.4)
|
25
|
-
globalid (>= 0.3.0)
|
26
|
-
activemodel (4.2.4)
|
27
|
-
activesupport (= 4.2.4)
|
28
|
-
builder (~> 3.1)
|
29
|
-
activerecord (4.2.4)
|
30
|
-
activemodel (= 4.2.4)
|
31
|
-
activesupport (= 4.2.4)
|
32
|
-
arel (~> 6.0)
|
33
|
-
activesupport (4.2.4)
|
34
|
-
i18n (~> 0.7)
|
35
|
-
json (~> 1.7, >= 1.7.7)
|
36
|
-
minitest (~> 5.1)
|
37
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
38
|
-
tzinfo (~> 1.1)
|
39
|
-
addressable (2.3.8)
|
40
|
-
arel (6.0.3)
|
41
|
-
builder (3.2.2)
|
42
|
-
capybara (2.4.4)
|
43
|
-
mime-types (>= 1.16)
|
44
|
-
nokogiri (>= 1.3.3)
|
45
|
-
rack (>= 1.0.0)
|
46
|
-
rack-test (>= 0.5.4)
|
47
|
-
xpath (~> 2.0)
|
48
|
-
chromedriver2-helper (0.0.8)
|
49
|
-
nokogiri
|
50
|
-
csv-diff (0.3.0)
|
51
|
-
diff-lcs (1.2.5)
|
52
|
-
domain_name (0.5.25)
|
53
|
-
unf (>= 0.0.5, < 1.0.0)
|
54
|
-
email_spec (1.6.0)
|
55
|
-
launchy (~> 2.1)
|
56
|
-
mail (~> 2.2)
|
57
|
-
erubis (2.7.0)
|
58
|
-
ffi (1.9.10-x64-mingw32)
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
rails-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
gherkin (~> 2.12.2)
|
184
|
-
httparty (~> 0.13.5)
|
185
|
-
json (= 1.8.3)
|
186
|
-
mail
|
187
|
-
mysql2 (= 0.3.18)
|
188
|
-
parallel_tests
|
189
|
-
rack-utf8_sanitizer
|
190
|
-
rails
|
191
|
-
rautomation (~> 0.17.0)
|
192
|
-
rest-client (~> 1.8.0)
|
193
|
-
rspec (~> 3.3.0)
|
194
|
-
test-unit (~> 3.1.2)
|
195
|
-
tiny_tds (~> 0.6.3.rc2)
|
196
|
-
|
197
|
-
BUNDLED WITH
|
198
|
-
1.10.6
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
actionmailer (4.2.4)
|
5
|
+
actionpack (= 4.2.4)
|
6
|
+
actionview (= 4.2.4)
|
7
|
+
activejob (= 4.2.4)
|
8
|
+
mail (~> 2.5, >= 2.5.4)
|
9
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
10
|
+
actionpack (4.2.4)
|
11
|
+
actionview (= 4.2.4)
|
12
|
+
activesupport (= 4.2.4)
|
13
|
+
rack (~> 1.6)
|
14
|
+
rack-test (~> 0.6.2)
|
15
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
16
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
17
|
+
actionview (4.2.4)
|
18
|
+
activesupport (= 4.2.4)
|
19
|
+
builder (~> 3.1)
|
20
|
+
erubis (~> 2.7.0)
|
21
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
22
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
23
|
+
activejob (4.2.4)
|
24
|
+
activesupport (= 4.2.4)
|
25
|
+
globalid (>= 0.3.0)
|
26
|
+
activemodel (4.2.4)
|
27
|
+
activesupport (= 4.2.4)
|
28
|
+
builder (~> 3.1)
|
29
|
+
activerecord (4.2.4)
|
30
|
+
activemodel (= 4.2.4)
|
31
|
+
activesupport (= 4.2.4)
|
32
|
+
arel (~> 6.0)
|
33
|
+
activesupport (4.2.4)
|
34
|
+
i18n (~> 0.7)
|
35
|
+
json (~> 1.7, >= 1.7.7)
|
36
|
+
minitest (~> 5.1)
|
37
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
38
|
+
tzinfo (~> 1.1)
|
39
|
+
addressable (2.3.8)
|
40
|
+
arel (6.0.3)
|
41
|
+
builder (3.2.2)
|
42
|
+
capybara (2.4.4)
|
43
|
+
mime-types (>= 1.16)
|
44
|
+
nokogiri (>= 1.3.3)
|
45
|
+
rack (>= 1.0.0)
|
46
|
+
rack-test (>= 0.5.4)
|
47
|
+
xpath (~> 2.0)
|
48
|
+
chromedriver2-helper (0.0.8)
|
49
|
+
nokogiri
|
50
|
+
csv-diff (0.3.0)
|
51
|
+
diff-lcs (1.2.5)
|
52
|
+
domain_name (0.5.25)
|
53
|
+
unf (>= 0.0.5, < 1.0.0)
|
54
|
+
email_spec (1.6.0)
|
55
|
+
launchy (~> 2.1)
|
56
|
+
mail (~> 2.2)
|
57
|
+
erubis (2.7.0)
|
58
|
+
ffi (1.9.10-x64-mingw32)
|
59
|
+
gherkin (2.12.2)
|
60
|
+
multi_json (~> 1.3)
|
61
|
+
globalid (0.3.6)
|
62
|
+
activesupport (>= 4.1.0)
|
63
|
+
http-cookie (1.0.2)
|
64
|
+
domain_name (~> 0.5)
|
65
|
+
httparty (0.13.7)
|
66
|
+
json (~> 1.8)
|
67
|
+
multi_xml (>= 0.5.2)
|
68
|
+
i18n (0.7.0)
|
69
|
+
json (1.8.3)
|
70
|
+
launchy (2.4.3)
|
71
|
+
addressable (~> 2.3)
|
72
|
+
loofah (2.0.3)
|
73
|
+
nokogiri (>= 1.5.9)
|
74
|
+
mail (2.6.3)
|
75
|
+
mime-types (>= 1.16, < 3)
|
76
|
+
mime-types (2.6.2)
|
77
|
+
mini_portile (0.6.2)
|
78
|
+
minitest (5.8.1)
|
79
|
+
multi_json (1.11.2)
|
80
|
+
multi_xml (0.5.5)
|
81
|
+
mysql2 (0.3.18-x64-mingw32)
|
82
|
+
netrc (0.10.3)
|
83
|
+
nokogiri (1.6.6.2-x64-mingw32)
|
84
|
+
mini_portile (~> 0.6.0)
|
85
|
+
parallel (1.6.1)
|
86
|
+
parallel_tests (1.9.0)
|
87
|
+
parallel
|
88
|
+
power_assert (0.2.4)
|
89
|
+
rack (1.6.4)
|
90
|
+
rack-test (0.6.3)
|
91
|
+
rack (>= 1.0)
|
92
|
+
rack-utf8_sanitizer (1.3.1)
|
93
|
+
rack (~> 1.0)
|
94
|
+
rails (4.2.4)
|
95
|
+
actionmailer (= 4.2.4)
|
96
|
+
actionpack (= 4.2.4)
|
97
|
+
actionview (= 4.2.4)
|
98
|
+
activejob (= 4.2.4)
|
99
|
+
activemodel (= 4.2.4)
|
100
|
+
activerecord (= 4.2.4)
|
101
|
+
activesupport (= 4.2.4)
|
102
|
+
bundler (>= 1.3.0, < 2.0)
|
103
|
+
railties (= 4.2.4)
|
104
|
+
sprockets-rails
|
105
|
+
rails-deprecated_sanitizer (1.0.3)
|
106
|
+
activesupport (>= 4.2.0.alpha)
|
107
|
+
rails-dom-testing (1.0.7)
|
108
|
+
activesupport (>= 4.2.0.beta, < 5.0)
|
109
|
+
nokogiri (~> 1.6.0)
|
110
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
111
|
+
rails-html-sanitizer (1.0.2)
|
112
|
+
loofah (~> 2.0)
|
113
|
+
railties (4.2.4)
|
114
|
+
actionpack (= 4.2.4)
|
115
|
+
activesupport (= 4.2.4)
|
116
|
+
rake (>= 0.8.7)
|
117
|
+
thor (>= 0.18.1, < 2.0)
|
118
|
+
rake (10.4.2)
|
119
|
+
rautomation (0.17.0)
|
120
|
+
ffi (~> 1.9.0)
|
121
|
+
rest-client (1.8.0-x64-mingw32)
|
122
|
+
ffi (~> 1.9)
|
123
|
+
http-cookie (>= 1.0.2, < 2.0)
|
124
|
+
mime-types (>= 1.16, < 3.0)
|
125
|
+
netrc (~> 0.7)
|
126
|
+
rspec (3.3.0)
|
127
|
+
rspec-core (~> 3.3.0)
|
128
|
+
rspec-expectations (~> 3.3.0)
|
129
|
+
rspec-mocks (~> 3.3.0)
|
130
|
+
rspec-core (3.3.2)
|
131
|
+
rspec-support (~> 3.3.0)
|
132
|
+
rspec-expectations (3.3.1)
|
133
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
134
|
+
rspec-support (~> 3.3.0)
|
135
|
+
rspec-mocks (3.3.2)
|
136
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
137
|
+
rspec-support (~> 3.3.0)
|
138
|
+
rspec-support (3.3.0)
|
139
|
+
sprockets (3.4.0)
|
140
|
+
rack (> 1, < 3)
|
141
|
+
sprockets-rails (2.3.3)
|
142
|
+
actionpack (>= 3.0)
|
143
|
+
activesupport (>= 3.0)
|
144
|
+
sprockets (>= 2.8, < 4.0)
|
145
|
+
test-unit (3.1.5)
|
146
|
+
power_assert
|
147
|
+
thor (0.19.1)
|
148
|
+
thread_safe (0.3.5)
|
149
|
+
tiny_tds (0.6.2-x64-mingw32)
|
150
|
+
tzinfo (1.2.2)
|
151
|
+
thread_safe (~> 0.1)
|
152
|
+
unf (0.1.4)
|
153
|
+
unf_ext
|
154
|
+
unf_ext (0.0.7.1-x64-mingw32)
|
155
|
+
xpath (2.0.0)
|
156
|
+
nokogiri (~> 1.3)
|
157
|
+
|
158
|
+
PLATFORMS
|
159
|
+
x64-mingw32
|
160
|
+
|
161
|
+
DEPENDENCIES
|
162
|
+
actionmailer (~> 4.2.3)
|
163
|
+
capybara (~> 2.4.4)
|
164
|
+
chromedriver2-helper
|
165
|
+
csv-diff (~> 0.3.0)
|
166
|
+
email_spec
|
167
|
+
gherkin (~> 2.12.2)
|
168
|
+
httparty (~> 0.13.5)
|
169
|
+
json (= 1.8.3)
|
170
|
+
mail
|
171
|
+
mysql2 (= 0.3.18)
|
172
|
+
parallel_tests
|
173
|
+
rack-utf8_sanitizer
|
174
|
+
rails
|
175
|
+
rautomation (~> 0.17.0)
|
176
|
+
rest-client (~> 1.8.0)
|
177
|
+
rspec (~> 3.3.0)
|
178
|
+
test-unit (~> 3.1.2)
|
179
|
+
tiny_tds (~> 0.6.2)
|
180
|
+
|
181
|
+
BUNDLED WITH
|
182
|
+
1.10.6
|