-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
32 lines (26 loc) · 796 Bytes
/
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.3'
gem 'rails', '~> 6.1.4', '>= 6.1.4.4'
gem 'pg', '~> 1.1'
gem 'puma', '~> 5.0'
gem 'bootsnap', '>= 1.4.4', require: false
gem 'dry-rails', '~> 0.3.0'
gem 'beauty_weather', path: './gems/beauty_weather'
gem 'omniauth-twitter'
gem 'twitter'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'fabrication'
gem 'rspec-rails', '~> 5.0', '>= 5.0.2'
gem 'shoulda-matchers', '~> 5.0'
gem 'simplecov'
gem 'webmock'
gem 'dotenv-rails'
end
group :development do
gem 'listen', '~> 3.3'
gem 'spring'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]