-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Gemfile
69 lines (66 loc) · 1.8 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
67
68
69
# frozen_string_literal: true
source 'http://rubygems.org'
# Add dependencies required to use your gem here.
# Example:
# gem "activesupport", ">= 2.3.5"
gem 'csv'
# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
group :development, :test do
# allocation_stats
#
# Tooling for tracing object allocations in Ruby 2.1
#
# https://rubygems.org/gems/allocation_stats/
# https://github.com/srawlins/allocation_stats
gem 'allocation_stats'
# minitest
#
# minitest provides a complete suite of testing facilities supporting TDD,
# BDD, mocking, and benchmarking.
#
# https://rubygems.org/gems/minitest
# https://github.com/seattlerb/minitest
gem 'minitest'
# mocha
#
# Mocking and stubbing library with JMock/SchMock syntax, which allows
# mocking and stubbing of methods on real (non-mock) classes.
#
# https://rubygems.org/gems/mocha
# http://gofreerange.com/mocha/docs/
# https://github.com/freerange/mocha
gem 'mocha'
# rake
#
# Rake is a Make-like program implemented in Ruby.
#
# https://rubygems.org/gems/rake
# https://github.com/ruby/rake
gem 'rake'
# rdoc
#
# RDoc produces HTML and command-line documentation for Ruby projects.
#
# https://rubygems.org/gems/rdoc
# http://docs.seattlerb.org/rdoc/
# https://github.com/rdoc/rdoc
gem 'rdoc'
# rubocop
#
# Automatic Ruby code style checking tool. Aims to enforce the
# community-driven Ruby Style Guide.
#
# https://rubygems.org/gems/rubocop
# https://github.com/bbatsov/rubocop
gem 'rubocop'
# test-unit
#
# Test::Unit (test-unit) is unit testing framework for Ruby, based on xUnit
# principles.
#
# https://rubygems.org/gems/test-unit
# http://test-unit.github.io/
# https://github.com/test-unit/
gem 'test-unit'
end