-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
60 lines (53 loc) · 1.33 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
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
ruby '~> 2.4'
gem 'rails', '~> 5'
gem 'puma', '~> 3.11'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'turbolinks'
gem 'jbuilder'
gem 'bcrypt', platforms: :ruby #https://github.com/codahale/bcrypt-ruby/issues/142
gem 'rinku'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
# unfortunate, but hopefully temporary
if RUBY_PLATFORM =~ /win/ || RUBY_PLATFORM =~ /mingw/
gem "sqlite3", git: "https://github.com/stomar/sqlite3-ruby", branch: "add-dlfcn", platforms: [:mingw, :x64_mingw]
else
gem "sqlite3"
end
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'better_errors'
gem 'rails_apps_pages'
gem 'rails_apps_testing'
gem 'rails_layout'
gem 'spring-commands-rspec'
end
group :production do
gem 'pg'
end
group :test do
gem 'capybara'
gem 'selenium-webdriver'
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-rails'
gem 'launchy'
gem 'database_cleaner'
gem 'shoulda'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'bootstrap', '~> 4.0'
gem 'momentjs-rails'
gem 'rails_bootstrap_sortable'
gem 'high_voltage'
gem 'jquery-rails'
gem 'devise'
gem 'gon'