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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 29618b811fef8fe8492385ca180a4d15de8473e3
4
- data.tar.gz: dfb4f854917010e1b7d12b81a4c9b88c7e8f33cd
3
+ metadata.gz: cf8197d6e8c9e6d71497dfa40f7c68356c6d7014
4
+ data.tar.gz: ea18647e8f0acb25f8ab447e7553bd56060e3d13
5
5
  SHA512:
6
- metadata.gz: e5d1f059a85e3f72b148da6fab84b82b365fa9b14d08754615a0106396d489143160fb4316b8b5b88664f53954a30c71ce31171dfc4f067efa6889e2f46257cb
7
- data.tar.gz: 5edaaa7bd6d75b3425e7c4773626c907c7e5bfa9a589b4f9bc8e7631af1e914499091163403d3b59ed2c3a8e1005b56f1b1fc407d12a5db31c3478859ba755fd
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
- # 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
+
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('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
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: Please check Actual File or Expected file exists."
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 |filename, field|
151
- filepath = File.join($base_dir, filename)
152
- if filepath.match(/^C:\//)
153
- filepath.gsub!(/\//, '\\')
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 = $testdata[sTestDataidArr.first][sTestDataidArr.last]
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("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
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 = '0.1.8'
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.3.rc2'
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
- ffi (1.9.10-x86-mingw32)
60
- gherkin (2.12.2)
61
- multi_json (~> 1.3)
62
- gherkin (2.12.2-x86-mingw32)
63
- multi_json (~> 1.3)
64
- globalid (0.3.6)
65
- activesupport (>= 4.1.0)
66
- http-cookie (1.0.2)
67
- domain_name (~> 0.5)
68
- httparty (0.13.7)
69
- json (~> 1.8)
70
- multi_xml (>= 0.5.2)
71
- i18n (0.7.0)
72
- json (1.8.3)
73
- launchy (2.4.3)
74
- addressable (~> 2.3)
75
- loofah (2.0.3)
76
- nokogiri (>= 1.5.9)
77
- mail (2.6.3)
78
- mime-types (>= 1.16, < 3)
79
- mime-types (2.6.2)
80
- mini_portile (0.6.2)
81
- minitest (5.8.1)
82
- multi_json (1.11.2)
83
- multi_xml (0.5.5)
84
- mysql2 (0.3.18-x64-mingw32)
85
- mysql2 (0.3.18-x86-mingw32)
86
- netrc (0.10.3)
87
- nokogiri (1.6.6.2-x64-mingw32)
88
- mini_portile (~> 0.6.0)
89
- nokogiri (1.6.6.2-x86-mingw32)
90
- mini_portile (~> 0.6.0)
91
- parallel (1.6.1)
92
- parallel_tests (1.9.0)
93
- parallel
94
- power_assert (0.2.4)
95
- rack (1.6.4)
96
- rack-test (0.6.3)
97
- rack (>= 1.0)
98
- rack-utf8_sanitizer (1.3.1)
99
- rack (~> 1.0)
100
- rails (4.2.4)
101
- actionmailer (= 4.2.4)
102
- actionpack (= 4.2.4)
103
- actionview (= 4.2.4)
104
- activejob (= 4.2.4)
105
- activemodel (= 4.2.4)
106
- activerecord (= 4.2.4)
107
- activesupport (= 4.2.4)
108
- bundler (>= 1.3.0, < 2.0)
109
- railties (= 4.2.4)
110
- sprockets-rails
111
- rails-deprecated_sanitizer (1.0.3)
112
- activesupport (>= 4.2.0.alpha)
113
- rails-dom-testing (1.0.7)
114
- activesupport (>= 4.2.0.beta, < 5.0)
115
- nokogiri (~> 1.6.0)
116
- rails-deprecated_sanitizer (>= 1.0.1)
117
- rails-html-sanitizer (1.0.2)
118
- loofah (~> 2.0)
119
- railties (4.2.4)
120
- actionpack (= 4.2.4)
121
- activesupport (= 4.2.4)
122
- rake (>= 0.8.7)
123
- thor (>= 0.18.1, < 2.0)
124
- rake (10.4.2)
125
- rautomation (0.17.0)
126
- ffi (~> 1.9.0)
127
- rest-client (1.8.0-x64-mingw32)
128
- ffi (~> 1.9)
129
- http-cookie (>= 1.0.2, < 2.0)
130
- mime-types (>= 1.16, < 3.0)
131
- netrc (~> 0.7)
132
- rest-client (1.8.0-x86-mingw32)
133
- ffi (~> 1.9)
134
- http-cookie (>= 1.0.2, < 2.0)
135
- mime-types (>= 1.16, < 3.0)
136
- netrc (~> 0.7)
137
- rspec (3.3.0)
138
- rspec-core (~> 3.3.0)
139
- rspec-expectations (~> 3.3.0)
140
- rspec-mocks (~> 3.3.0)
141
- rspec-core (3.3.2)
142
- rspec-support (~> 3.3.0)
143
- rspec-expectations (3.3.1)
144
- diff-lcs (>= 1.2.0, < 2.0)
145
- rspec-support (~> 3.3.0)
146
- rspec-mocks (3.3.2)
147
- diff-lcs (>= 1.2.0, < 2.0)
148
- rspec-support (~> 3.3.0)
149
- rspec-support (3.3.0)
150
- sprockets (3.4.0)
151
- rack (> 1, < 3)
152
- sprockets-rails (2.3.3)
153
- actionpack (>= 3.0)
154
- activesupport (>= 3.0)
155
- sprockets (>= 2.8, < 4.0)
156
- test-unit (3.1.5)
157
- power_assert
158
- thor (0.19.1)
159
- thread_safe (0.3.5)
160
- tiny_tds (0.6.3.rc2-x64-mingw32)
161
- mini_portile (= 0.6.2)
162
- tiny_tds (0.6.3.rc2-x86-mingw32)
163
- mini_portile (= 0.6.2)
164
- tzinfo (1.2.2)
165
- thread_safe (~> 0.1)
166
- unf (0.1.4)
167
- unf_ext
168
- unf_ext (0.0.7.1-x64-mingw32)
169
- unf_ext (0.0.7.1-x86-mingw32)
170
- xpath (2.0.0)
171
- nokogiri (~> 1.3)
172
-
173
- PLATFORMS
174
- x64-mingw32
175
- x86-mingw32
176
-
177
- DEPENDENCIES
178
- actionmailer (~> 4.2.3)
179
- capybara (~> 2.4.4)
180
- chromedriver2-helper
181
- csv-diff (~> 0.3.0)
182
- email_spec
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