-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
66 lines (44 loc) · 2.78 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# frozen_string_literal: true
source 'https://rubygems.org'
# ruby '2.6.0'
# A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. Rich support for multibyte strings, internationalization, time zones, and testing.
gem 'activesupport'
# Acceptance test framework for web applications [http://teamcapybara.github.io/capybara/]
gem 'capybara'
# Complements Capybara with additional finders and matchers [https://github.com/DavyJonesLocker/capybara-extensions]
gem 'capybara-extensions'
# Automatically save screen shots when a Capybara scenario fails [https://github.com/mattheworiordan/capybara-screenshot]
gem 'capybara-screenshot'
# Compact language detection
# gem 'cld2', require: 'cld', git: 'https://github.com/Alpenglow88/cld2.git'
# Behaviour Driven Development with elegance and joy [https://cucumber.io/]
gem 'cucumber'
# Easy creation of mock data [https://github.com/ffaker/ffaker]
gem 'ffaker'
# Easy installation and use of geckodriver, that provides the HTTP API described by the WebDriver protocol to communicate with Gecko browsers, such as Firefox [https://github.com/DevicoSolutions/geckodriver-helper]
gem 'geckodriver-helper'
# A Really Ruby Mail Library [https://github.com/mikel/mail]
gem 'mail'
# A make-like build utility for Ruby [https://github.com/ruby/rake]
gem 'rake'
# Ruby gem to merge Cucumber JSON reports and build mobile-friendly HTML Test Report, JSON report and retry file [https://github.com/rajatthareja/ReportBuilder]
gem 'report_builder'
# A wonderfully simple way to load your code [https://github.com/jarmo/require_all]
gem 'require_all'
# Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions [https://github.com/rest-client/rest-client]
gem 'rest-client'
# Behaviour Driven Development for Ruby [https://rspec.info/]
gem 'rspec'
# A Ruby static code analyzer and formatter, based on the community Ruby style guide. [https://docs.rubocop.org] [https://github.com/rubocop-hq/rubocop]
gem 'rubocop'
# An extension of RuboCop focused on code performance checks. [https://github.com/rubocop-hq/rubocop-performance]
gem 'rubocop-performance'
# WebDriver is a tool for writing automated tests of websites. It aims to mimic the behaviour of a real user, and as such interacts with the HTML of the application [https://github.com/SeleniumHQ/selenium]
gem 'selenium-webdriver', '3.142.3'
# Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites [https://github.com/colszowka/simplecov]
gem 'simplecov'
# A Page Object Model DSL for Capybara [https://github.com/site-prism/site_prism]
gem 'site_prism'
# Keep your Selenium WebDrivers updated automatically [https://github.com/titusfortner/webdrivers]
gem 'webdrivers'
gem 'nokogiri', '>= 1.10.8'