-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGemfile
More file actions
41 lines (28 loc) · 818 Bytes
/
Gemfile
File metadata and controls
41 lines (28 loc) · 818 Bytes
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
# frozen_string_literal: true
source "https://rubygems.org"
# Declare your gem's dependencies in active_currency.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
# API to get the currencies.
gem "money-open-exchange-rates"
# DB for the dummy app.
gem "sqlite3"
# Unit testing.
gem "rspec"
# Unit testing with rails.
gem "rspec-rails"
# Spec formatter for GitHub Actions.
gem "rspec-github"
# Formatter for unit testing that Circle-CI enjoys.
gem "rspec_junit_formatter"
# Travel through time in specs.
gem "timecop"
# Useful for `binding.pry` in development.
gem "pry"
# Style guide.
gem "rubocop"
# Style guide for Rails.
gem "rubocop-rails"
# Style guide for RSpec.
gem "rubocop-rspec"