-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
96 lines (87 loc) · 2.3 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
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.1"
gem "rails", "~> 5.1.2"
gem "puma", "~> 3.7"
gem "sass-rails", "~> 5.0"
gem "uglifier", ">= 1.3.0"
gem "coffee-rails", "~> 4.2"
gem "turbolinks", "~> 5"
gem "jbuilder", "~> 2.5"
gem "trailblazer", ">= 2.0.3"
gem "trailblazer-rails"
gem "trailblazer-cells"
gem "cells-rails"
gem "cells-slim"
gem "dry-validation"
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "bootstrap-sass"
gem "jquery-rails"
gem "pg"
gem "simple_form"
gem "slim-rails"
gem "carrierwave", "~> 1.0"
gem "mini_magick"
gem "rmagick"
gem "file_validators"
gem "html2slim", "~> 0.2.0"
gem "plyr-rails"
gem "selectize-rails"
gem "bullet"
gem 'solano', '~> 1.31', '>= 1.31.7'
######Authorizacion and Authentication######
gem "devise"
gem "pundit"
gem "omniauth"
gem "omniauth-facebook"
gem "omniauth-google-oauth2"
#####Admin######
gem "activeadmin"
group :development do
gem "web-console", ">= 3.3.0"
gem "listen", ">= 3.0.5", "< 3.2"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "better_errors", git: "https://github.com/charliesome/better_errors.git", branch: "master"
gem "binding_of_caller"
gem "guard-bundler"
gem "guard-rails"
gem "guard-rspec"
gem "rails_layout"
gem "rb-fchange", require: false
gem "rb-fsevent", require: false
gem "rb-inotify", require: false
gem "spring-commands-rspec"
gem "annotate"
gem "pry"
gem "pry-byebug"
gem "pry-rails"
gem "pry-rescue"
gem "awesome_print", require: "ap"
gem "rails-erd", require: false
# deploy stuff
gem "capistrano", "~> 3.6"
gem "capistrano-rails", "~> 1.3"
gem "capistrano-passenger"
gem "capistrano-rbenv", "~> 2.0"
end
group :development, :test do
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "capybara", "~> 2.13"
gem "poltergeist"
gem "database_cleaner"
gem "selenium-webdriver", "~> 2.53.4"
gem "factory_girl_rails"
gem "faker"
gem "rspec-rails"
gem "shoulda-matchers", git: "https://github.com/thoughtbot/shoulda-matchers.git", branch: "rails-5"
gem "pundit-matchers", "~> 1.3.0"
gem "rubocop", require: false
gem "rubocop-rails"
gem "launchy"
gem "execjs"
gem "therubyracer", platforms: :ruby
end