forked from calagator/calagator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
38 lines (28 loc) · 1.26 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
# frozen_string_literal: true
require_relative "./lib/calagator/version"
source "https://rubygems.org"
# Declare your gem's dependencies in calagator.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
# develop against latest rails
gem "rails", Calagator::RAILS_VERSION
gem "webrick"
# turbolinks is used by the test application by default
# gem 'turbolinks', '~> 5.2.1'
gem "recaptcha", "~> 5.9.0", require: "recaptcha/rails"
# can't declare platform specific development dependencies in the gemspec.
gem "byebug", "~> 11.1.3", platform: "mri"
# Declare any dependencies that are still in development here instead of in
# your gemspec. These might include edge Rails or gems from your path or
# Git. Remember to move these dependencies to your gemspec before releasing
# your gem to rubygems.org.
gem "launchy", "~> 2.5.2"
gem "rails-controller-testing", "~> 1.0.5", group: "test"
# gem "net-http", '~> 0.3.2'
# Removing 'net-http' resolved the uri dependancy issue but the warnings errors it was added to resolve have returned.
# TODO: Re-enable net-http go back to resolving the uri issue.
# gem "net-http"
# gem "net-smtp"
# gem "net-imap"
# gem "uri", "0.10.0.2"