Ifd_Automation 1.5.0 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/generate.rb +6 -6
- data/lib/Ifd_Automation/assertion_steps.rb +1 -1
- data/lib/Ifd_Automation/lib_file_steps.rb +2 -2
- data/lib/Ifd_Automation/lib_web_steps.rb +1 -1
- data/lib/Ifd_Automation/methods/IFD_Assertion_methods.rb +1 -1
- data/lib/Ifd_Automation/methods/lib_var.rb +1 -1
- data/lib/Ifd_Automation/methods/required_files.rb +1 -1
- data/lib/Ifd_Automation/version.rb +1 -1
- data/project/Gemfile +3 -2
- data/project/Rakefile +5 -5
- data/project/features/TestData/globalData.yml +11 -2
- data/project/features/TestSuite/Login/login.feature +11 -4
- data/project/features/step_definitions/lib_steps/login_steps.rb +16 -3
- data/project/features/step_definitions/repositories/project_object.yml +6 -4
- data/project/features/support/env.rb +17 -2
- data/project/features/support/project_config.yml +4 -4
- metadata +39 -54
- data/project/Gemfile.lock +0 -196
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8cc94f4832155a4ce2de60236786252fb0611811
|
4
|
+
data.tar.gz: d6371731b9672dceb75f793681ccd080a389d2b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33926b1736f3c9ffcaf8ce35a9255968be88791de40c1a3c8a513810fd84c761c07a0fa471baac4ed565ce937364b6a26bd30a02f3cac650e70ffe3ebb381bbb
|
7
|
+
data.tar.gz: b6b21e2e045f1f9308fbf8c90ce70b8449e9d806a16324bb01020020cf328c23bd97911b322e587cfb550e6102a9d908aa56d411e182494acb7d43eb8496fc9b
|
data/bin/generate.rb
CHANGED
@@ -4,12 +4,12 @@ def ifd_automation_scaffold
|
|
4
4
|
puts "A features directory already exists. Stopping..."
|
5
5
|
exit 1
|
6
6
|
end
|
7
|
-
msg("Question") do
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
end
|
12
|
-
exit 2 unless STDIN.gets.chomp == ''
|
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
13
|
|
14
14
|
FileUtils.cp_r(@source_dir, @features_dir)
|
15
15
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# require_relative 'methods/web_methods'
|
2
2
|
require_relative 'methods/required_files'
|
3
3
|
# page title checking
|
4
|
-
Then
|
4
|
+
Then /^I should( not)? see page title as (.*)$/ do |present, title|
|
5
5
|
check_title(title, present.empty?)
|
6
6
|
end
|
7
7
|
|
@@ -4,8 +4,8 @@ Then /^All records in download file "(.*)" must be included in expected file "(.
|
|
4
4
|
actual_file_path = ($_CFWEB['Download Dir'] + dl_file)
|
5
5
|
expected_file_path= ($_CFWEB['Expected Data Dir'] + expected_file)
|
6
6
|
if File.exist?(actual_file_path) && File.exist?(expected_file_path)
|
7
|
-
actual_lines = CSV.read(
|
8
|
-
expected_lines = CSV.read(
|
7
|
+
actual_lines = CSV.read(actual_file_path)
|
8
|
+
expected_lines = CSV.read(expected_file_path)
|
9
9
|
# Assert 2 CSV files
|
10
10
|
IFD_Assertion.do_assertion_csv_tab_non_order(expected_lines, actual_lines)
|
11
11
|
else
|
data/project/Gemfile
CHANGED
@@ -6,7 +6,7 @@ gem 'csv-diff', '~> 0.3.0'
|
|
6
6
|
gem 'rspec', '~> 3.3.0'
|
7
7
|
gem 'gherkin', '~>2.12.2'
|
8
8
|
gem 'json', '1.8.3'
|
9
|
-
gem 'mysql2','0.3.18'
|
9
|
+
#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'
|
@@ -17,4 +17,5 @@ gem 'rails'
|
|
17
17
|
gem 'rack-utf8_sanitizer'
|
18
18
|
gem 'mail'
|
19
19
|
gem 'chromedriver2-helper'
|
20
|
-
gem 'rautomation', '~> 0.17.0'
|
20
|
+
gem 'rautomation', '~> 0.17.0'
|
21
|
+
gem 'headless', '~> 2.2', '>= 2.2.3'
|
data/project/Rakefile
CHANGED
@@ -3,11 +3,11 @@ require 'cucumber/rake/task'
|
|
3
3
|
require 'fileutils'
|
4
4
|
|
5
5
|
task :cleanup do
|
6
|
-
puts " ==================Deleting old
|
7
|
-
FileUtils.rm_rf('reports')
|
8
|
-
File.delete("
|
9
|
-
File.new("cucumber_failures.log", "w")
|
10
|
-
Dir.mkdir("reports")
|
6
|
+
puts " ==================Deleting old cucumber_report.json file on Reports directory ============================="
|
7
|
+
# FileUtils.rm_rf('reports')
|
8
|
+
File.delete("reports/cucumber_report.json") if File.exist?("reports/cucumber_report.json")
|
9
|
+
# File.new("cucumber_failures.log", "w")
|
10
|
+
# Dir.mkdir("reports")
|
11
11
|
end
|
12
12
|
|
13
13
|
task :parallel_remote do
|
@@ -1,2 +1,11 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
username_cuong1: cuong.huynh@infodation.vn
|
2
|
+
password_cuong1: 123456
|
3
|
+
username_cuong2: infodationvn.jenkins@gmail.com
|
4
|
+
password_cuong2: 123456
|
5
|
+
admin_username: admin
|
6
|
+
admin_password: MyMethods123%
|
7
|
+
bookcolor_red: DE2C19
|
8
|
+
bookcolor_orange: F66506
|
9
|
+
bookcolor_black: 191919
|
10
|
+
bookcolor_white: E6E6E6
|
11
|
+
bookcolor_yellow: F5C504
|
@@ -1,4 +1,11 @@
|
|
1
|
-
Feature:
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
#Feature: Create a new user
|
2
|
+
# In order to create new user account
|
3
|
+
# As a admin role
|
4
|
+
# I want to create new user account
|
5
|
+
# So that new user can be created successfully
|
6
|
+
# Scenario: Create a new user
|
7
|
+
# Given I am logged in to admin page
|
8
|
+
# When I create a new user named AnhPham
|
9
|
+
# Then I should see that a user named AnhPham exists
|
10
|
+
#
|
11
|
+
#
|
@@ -1,3 +1,16 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
# Given "I am logged in to admin page" do
|
2
|
+
# step %{I am on Admin Login Page}
|
3
|
+
# step %{I set text on "textbox_username" with "adminuser"}
|
4
|
+
# step %{I set text on "textbox_password" with "password@123"}
|
5
|
+
# step %{I click on "button_login"}
|
6
|
+
# step %{I wait for 3 seconds}
|
7
|
+
# end
|
8
|
+
#
|
9
|
+
# When "I create a new user named $name" do |name|
|
10
|
+
# step %{I set text on "textbox_newUserName" with "#{name}"}
|
11
|
+
# step %{I click on "button_createNewUser"}
|
12
|
+
# end
|
13
|
+
#
|
14
|
+
# Then "I should see that a user named $name exists" do |name|
|
15
|
+
# step %{I check property "label_message" has value "#{name}"}
|
16
|
+
# end
|
@@ -1,4 +1,6 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
#textbox_admin_username: {xpath_selector: '//*[@id="UserName"]'}
|
2
|
+
#textbox_admin_password: {xpath_selector: '//*[@id="Password"]'}
|
3
|
+
#button_admin_login: {xpath_selector: '//*[@class="btn btn-primary"]'}
|
4
|
+
#textbox_newUserName: {xpath_selector: '//*[@id="newUserName"]'}
|
5
|
+
#button_createNewUser: {xpath_selector: '//*[@class="btn btn-primary-newUser"]'}
|
6
|
+
#label_message: {xpath_selector: '//form/div/fieldset/div[2]'}
|
@@ -17,10 +17,11 @@ require 'capybara'
|
|
17
17
|
require 'capybara/cucumber'
|
18
18
|
require 'test/unit/assertions'
|
19
19
|
require 'yaml'
|
20
|
-
require 'action_mailer'
|
20
|
+
#require 'action_mailer'
|
21
21
|
require 'email_spec'
|
22
22
|
require 'Ifd_Automation'
|
23
23
|
|
24
|
+
|
24
25
|
$_CFWEB['Default Browser'] = PROJECT_CONFIG['default_browser']
|
25
26
|
$_CFWEB['Wait Time'] = PROJECT_CONFIG['wait_time']
|
26
27
|
$_CFWEB['Page Address'] = PROJECT_CONFIG['test_page_address']
|
@@ -108,5 +109,19 @@ case ENV["SELENIUM"]
|
|
108
109
|
when "remote"
|
109
110
|
register_selenium_remote_driver($_CFWEB['Default Browser'])
|
110
111
|
else
|
111
|
-
|
112
|
+
case ENV["HEADLESS"]
|
113
|
+
when "true"
|
114
|
+
require 'headless'
|
115
|
+
|
116
|
+
headless = Headless.new
|
117
|
+
headless.start
|
118
|
+
|
119
|
+
at_exit do
|
120
|
+
headless.destroy
|
121
|
+
end
|
122
|
+
else
|
123
|
+
register_selenium_local_driver($_CFWEB['Default Browser'])
|
124
|
+
end
|
125
|
+
|
112
126
|
end
|
127
|
+
|
@@ -6,10 +6,10 @@
|
|
6
6
|
# :internet_explorer => "Internet Explorer"
|
7
7
|
# :chrome => "Chrome"
|
8
8
|
#---------------------------
|
9
|
-
default_browser:
|
10
|
-
wait_time:
|
11
|
-
test_page_address:
|
12
|
-
selenium_grid:
|
9
|
+
default_browser: firefox
|
10
|
+
wait_time: 30
|
11
|
+
test_page_address: http://test.com/
|
12
|
+
selenium_grid: 10.5.1.202:5555
|
13
13
|
###################################################################
|
14
14
|
# DATABASE CONFIGURATION #
|
15
15
|
###################################################################
|
metadata
CHANGED
@@ -1,89 +1,75 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: Ifd_Automation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Anh Pham
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-07-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cucumber
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.0'
|
20
|
+
- - ">="
|
18
21
|
- !ruby/object:Gem::Version
|
19
22
|
version: 2.0.0
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- -
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '2.0'
|
30
|
+
- - ">="
|
25
31
|
- !ruby/object:Gem::Version
|
26
32
|
version: 2.0.0
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: selenium-webdriver
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
30
36
|
requirements:
|
31
|
-
- - ~>
|
37
|
+
- - "~>"
|
32
38
|
- !ruby/object:Gem::Version
|
33
39
|
version: 2.46.2
|
34
|
-
- -
|
40
|
+
- - ">="
|
35
41
|
- !ruby/object:Gem::Version
|
36
42
|
version: 2.46.2
|
37
43
|
type: :runtime
|
38
44
|
prerelease: false
|
39
45
|
version_requirements: !ruby/object:Gem::Requirement
|
40
46
|
requirements:
|
41
|
-
- - ~>
|
47
|
+
- - "~>"
|
42
48
|
- !ruby/object:Gem::Version
|
43
49
|
version: 2.46.2
|
44
|
-
- -
|
50
|
+
- - ">="
|
45
51
|
- !ruby/object:Gem::Version
|
46
52
|
version: 2.46.2
|
47
53
|
- !ruby/object:Gem::Dependency
|
48
54
|
name: chunky_png
|
49
55
|
requirement: !ruby/object:Gem::Requirement
|
50
56
|
requirements:
|
51
|
-
- - ~>
|
57
|
+
- - "~>"
|
52
58
|
- !ruby/object:Gem::Version
|
53
59
|
version: 1.3.3
|
54
|
-
- -
|
60
|
+
- - ">="
|
55
61
|
- !ruby/object:Gem::Version
|
56
62
|
version: 1.3.0
|
57
63
|
type: :runtime
|
58
64
|
prerelease: false
|
59
65
|
version_requirements: !ruby/object:Gem::Requirement
|
60
66
|
requirements:
|
61
|
-
- - ~>
|
67
|
+
- - "~>"
|
62
68
|
- !ruby/object:Gem::Version
|
63
69
|
version: 1.3.3
|
64
|
-
- -
|
70
|
+
- - ">="
|
65
71
|
- !ruby/object:Gem::Version
|
66
72
|
version: 1.3.0
|
67
|
-
- !ruby/object:Gem::Dependency
|
68
|
-
name: appium_lib
|
69
|
-
requirement: !ruby/object:Gem::Requirement
|
70
|
-
requirements:
|
71
|
-
- - ~>
|
72
|
-
- !ruby/object:Gem::Version
|
73
|
-
version: 4.1.0
|
74
|
-
- - '>='
|
75
|
-
- !ruby/object:Gem::Version
|
76
|
-
version: 4.0.0
|
77
|
-
type: :runtime
|
78
|
-
prerelease: false
|
79
|
-
version_requirements: !ruby/object:Gem::Requirement
|
80
|
-
requirements:
|
81
|
-
- - ~>
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
version: 4.1.0
|
84
|
-
- - '>='
|
85
|
-
- !ruby/object:Gem::Version
|
86
|
-
version: 4.0.0
|
87
73
|
description: Behavior driven development (BDD) approach to write automation test script
|
88
74
|
to test Website.
|
89
75
|
email: anhpq.info@gmail.com
|
@@ -92,21 +78,25 @@ executables:
|
|
92
78
|
extensions: []
|
93
79
|
extra_rdoc_files: []
|
94
80
|
files:
|
81
|
+
- bin/Ifd_Automation
|
82
|
+
- bin/generate.rb
|
83
|
+
- bin/helper.rb
|
84
|
+
- lib/Ifd_Automation.rb
|
95
85
|
- lib/Ifd_Automation/assertion_steps.rb
|
96
86
|
- lib/Ifd_Automation/email_steps.rb
|
97
87
|
- lib/Ifd_Automation/javascript_handling_steps.rb
|
98
88
|
- lib/Ifd_Automation/lib_file_steps.rb
|
99
89
|
- lib/Ifd_Automation/lib_schema_data_steps.rb
|
100
|
-
- lib/Ifd_Automation/lib_webservice_steps.rb
|
101
90
|
- lib/Ifd_Automation/lib_web_steps.rb
|
102
|
-
- lib/Ifd_Automation/
|
103
|
-
- lib/Ifd_Automation/methods/database_methods.rb
|
104
|
-
- lib/Ifd_Automation/methods/db_utils.rb
|
105
|
-
- lib/Ifd_Automation/methods/error_handling_methods.rb
|
91
|
+
- lib/Ifd_Automation/lib_webservice_steps.rb
|
106
92
|
- lib/Ifd_Automation/methods/IFD_Assertion_methods.rb
|
107
93
|
- lib/Ifd_Automation/methods/IFD_Connection.rb
|
108
94
|
- lib/Ifd_Automation/methods/IFD_email_methods.rb
|
109
95
|
- lib/Ifd_Automation/methods/IFD_webservice.rb
|
96
|
+
- lib/Ifd_Automation/methods/core.rb
|
97
|
+
- lib/Ifd_Automation/methods/database_methods.rb
|
98
|
+
- lib/Ifd_Automation/methods/db_utils.rb
|
99
|
+
- lib/Ifd_Automation/methods/error_handling_methods.rb
|
110
100
|
- lib/Ifd_Automation/methods/javascript_handling_methods.rb
|
111
101
|
- lib/Ifd_Automation/methods/lib_var.rb
|
112
102
|
- lib/Ifd_Automation/methods/misc_methods.rb
|
@@ -115,28 +105,23 @@ files:
|
|
115
105
|
- lib/Ifd_Automation/methods/web_methods.rb
|
116
106
|
- lib/Ifd_Automation/methods/web_service_methods.rb
|
117
107
|
- lib/Ifd_Automation/version.rb
|
118
|
-
-
|
119
|
-
-
|
120
|
-
- bin/helper.rb
|
121
|
-
- bin/Ifd_Automation
|
108
|
+
- project/Gemfile
|
109
|
+
- project/Rakefile
|
122
110
|
- project/config/cucumber.yml
|
123
|
-
- project/features/step_definitions/lib_steps/login_steps.rb
|
124
|
-
- project/features/step_definitions/repositories/project_object.yml
|
125
|
-
- project/features/support/env.rb
|
126
|
-
- project/features/support/hooks.rb
|
127
|
-
- project/features/support/project_config.yml
|
128
|
-
- project/features/TestData/actual_images/infodation.jpg
|
129
111
|
- project/features/TestData/DownloadFolder/test.txt
|
130
112
|
- project/features/TestData/ExpectedDataFile/test.txt
|
113
|
+
- project/features/TestData/SqlScript/test.sql
|
114
|
+
- project/features/TestData/actual_images/infodation.jpg
|
131
115
|
- project/features/TestData/expected_images/infodation.jpg
|
132
116
|
- project/features/TestData/globalData.yml
|
133
117
|
- project/features/TestData/image_difference/infodation.jpg
|
134
118
|
- project/features/TestData/screenshots/infodation.jpg
|
135
|
-
- project/features/TestData/SqlScript/test.sql
|
136
119
|
- project/features/TestSuite/Login/login.feature
|
137
|
-
- project/
|
138
|
-
- project/
|
139
|
-
- project/
|
120
|
+
- project/features/step_definitions/lib_steps/login_steps.rb
|
121
|
+
- project/features/step_definitions/repositories/project_object.yml
|
122
|
+
- project/features/support/env.rb
|
123
|
+
- project/features/support/hooks.rb
|
124
|
+
- project/features/support/project_config.yml
|
140
125
|
homepage: https://rubygems.org/gems/ifd_automation
|
141
126
|
licenses:
|
142
127
|
- MIT
|
@@ -147,17 +132,17 @@ require_paths:
|
|
147
132
|
- lib
|
148
133
|
required_ruby_version: !ruby/object:Gem::Requirement
|
149
134
|
requirements:
|
150
|
-
- -
|
135
|
+
- - ">="
|
151
136
|
- !ruby/object:Gem::Version
|
152
137
|
version: 1.9.3
|
153
138
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
154
139
|
requirements:
|
155
|
-
- -
|
140
|
+
- - ">="
|
156
141
|
- !ruby/object:Gem::Version
|
157
142
|
version: '0'
|
158
143
|
requirements: []
|
159
144
|
rubyforge_project:
|
160
|
-
rubygems_version: 2.
|
145
|
+
rubygems_version: 2.4.5.1
|
161
146
|
signing_key:
|
162
147
|
specification_version: 4
|
163
148
|
summary: SELENIUM WEBDRIVER WITH RUBY & CUCUMBER
|
data/project/Gemfile.lock
DELETED
@@ -1,196 +0,0 @@
|
|
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.99.1)
|
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.2-x64-mingw32)
|
161
|
-
tiny_tds (0.6.2-x86-mingw32)
|
162
|
-
tzinfo (1.2.2)
|
163
|
-
thread_safe (~> 0.1)
|
164
|
-
unf (0.1.4)
|
165
|
-
unf_ext
|
166
|
-
unf_ext (0.0.7.1-x64-mingw32)
|
167
|
-
unf_ext (0.0.7.1-x86-mingw32)
|
168
|
-
xpath (2.0.0)
|
169
|
-
nokogiri (~> 1.3)
|
170
|
-
|
171
|
-
PLATFORMS
|
172
|
-
x64-mingw32
|
173
|
-
x86-mingw32
|
174
|
-
|
175
|
-
DEPENDENCIES
|
176
|
-
actionmailer (~> 4.2.3)
|
177
|
-
capybara (~> 2.4.4)
|
178
|
-
chromedriver2-helper
|
179
|
-
csv-diff (~> 0.3.0)
|
180
|
-
email_spec
|
181
|
-
gherkin (~> 2.12.2)
|
182
|
-
httparty (~> 0.13.5)
|
183
|
-
json (= 1.8.3)
|
184
|
-
mail
|
185
|
-
mysql2 (= 0.3.18)
|
186
|
-
parallel_tests
|
187
|
-
rack-utf8_sanitizer
|
188
|
-
rails
|
189
|
-
rautomation (~> 0.17.0)
|
190
|
-
rest-client (~> 1.8.0)
|
191
|
-
rspec (~> 3.3.0)
|
192
|
-
test-unit (~> 3.1.2)
|
193
|
-
tiny_tds (~> 0.6.2)
|
194
|
-
|
195
|
-
BUNDLED WITH
|
196
|
-
1.12.3
|