Ifd_Automation 1.5.0 → 1.6.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: 02b3396972906d65e77320ff4f338b76e0434f15
4
- data.tar.gz: 6450a44374d9d072716f2b4da8145454db222f59
3
+ metadata.gz: 8cc94f4832155a4ce2de60236786252fb0611811
4
+ data.tar.gz: d6371731b9672dceb75f793681ccd080a389d2b8
5
5
  SHA512:
6
- metadata.gz: 3820ff73502029e0b6c44faadcbfcc5d73cbe960ca2b1dc19ba618541a2c435ab815fb43bf52bdacfe7b5c4df2eb4e791b81bf6a6b31279c597f07fb2e0d708b
7
- data.tar.gz: 486ca4e8a28858777bf515de9956bd358601b535cae8b6b235bcefa2fd39911f5b2877dde9955ee22f92267cd8344514cb4188655f53e17704402a4301ce5cfc
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
- 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 == ''
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(/^I should\s*((?:not)?)\s+see page title as "(.*?)"$/) do |present, title|
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($_CFWEB['Download Dir'] + dl_file)
8
- expected_lines = CSV.read($_CFWEB['Expected Data Dir'] + expected_file)
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
@@ -5,7 +5,7 @@ Given(/^I am on the "([^"]*)" page$/) do |page|
5
5
  end
6
6
 
7
7
  #Navigating to the login page
8
- Given /^I am on Login Page$/ do
8
+ Given (/^I am on Login Page$/) do
9
9
  execute_openbrowser($_CFWEB['Page Address'])
10
10
  end
11
11
 
@@ -1,4 +1,4 @@
1
- include Test::Unit::Assertions
1
+ # include Test::Unit::Assertions
2
2
  class IFD_Assertion
3
3
  #Assert two files, rows not in order and REMOVE 1 COLUMN OF ID
4
4
  def self.do_assertion_csv_tab_non_order(expected_obj, actual_obj)
@@ -46,7 +46,7 @@ def replace_day str
46
46
  end
47
47
 
48
48
  def replace_pipe str_pipe
49
- put_log ">>>> #{str_pipe}"
49
+ # put_log ">>>> #{str_pipe}"
50
50
  if str_pipe =~ /^.*{pipe}.*$/
51
51
  return str_pipe.gsub("{pipe}", "|")
52
52
  end
@@ -3,7 +3,7 @@ require 'selenium-webdriver'
3
3
  require 'chunky_png'
4
4
  require 'open-uri'
5
5
  require 'rbconfig'
6
- require 'appium_lib'
6
+ # require 'appium_lib'
7
7
  require 'rubygems'
8
8
  require 'yaml'
9
9
  require 'cucumber'
@@ -1,5 +1,5 @@
1
1
  module Ifd
2
2
  module Automation
3
- VERSION = '1.5.0'
3
+ VERSION = '1.6.0'
4
4
  end
5
5
  end
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 reports ang logs============================="
7
- FileUtils.rm_rf('reports')
8
- File.delete("cucumber_failures.log") if File.exist?("cucumber_failures.log")
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
- username: demo
2
- password: demo
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: Testing login functionality
2
- Scenario Outline:
3
- Given I am on Login Page
4
- Scenarios:
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
- Then /^I test$/ do ||
2
- step %{}
3
- end
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
- cif_admin_login.textbox_username: {xpath_selector: '//*[@id="UserName"]'}
2
- cif_admin_login.textbox_password: {xpath_selector: '//*[@id="Password"]'}
3
- cif_admin_login.button_login: {xpath_selector: '//*[@class="btn btn-primary"]'}
4
- cif_login.label_message_error: {xpath_selector: '//form/div/fieldset/div[2]'}
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
- register_selenium_local_driver($_CFWEB['Default Browser'])
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: chrome
10
- wait_time: 10
11
- test_page_address:
12
- selenium_grid: http://10.5.1.202:5555/wd/hub
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.5.0
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-05-18 00:00:00.000000000 Z
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/methods/core.rb
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
- - lib/Ifd_Automation.rb
119
- - bin/generate.rb
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/Gemfile
138
- - project/Gemfile.lock
139
- - project/Rakefile
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.0.14.1
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