forked from SUSE/hackweek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
106 lines (97 loc) · 2.54 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
97
98
99
100
101
102
103
104
105
106
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# FIXME: 1.7.4 got yanked
gem 'ruby-progressbar', '1.10.1'
# as framework
gem 'rails', '~> 5.2'
# To speedup app startup
gem 'spring', group: [:development, :test]
gem 'spring-commands-rspec', group: [:development, :test]
gem 'spring-watcher-listen', '~> 2.0.0', group: [:development, :test]
# gem package to include jQuery UI assets for the Rails asset pipeline
gem 'jquery-ui-rails'
# To use jQuery's autocomplete with Rails
gem 'rails-jquery-autocomplete'
# Misc tools for fancy development
group :development, :test do
# as our rails console
gem 'pry-rails'
gem 'pry-byebug'
# to improve inspect output
gem 'hirb'
end
# as databases
gem 'mysql2'
# for stylesheets
gem 'sass-rails', '~> 5.0'
# as the front-end framework
gem 'bootstrap-sass'
# as vector icons
gem 'font-awesome-rails'
gem 'impressionist'
# as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# as JavaScript library
gem 'jquery-rails'
gem 'jquery-hotkeys-rails'
gem 'js_cookie_rails'
gem 'jquery-atwho-rails'
# as templating language
gem 'haml-rails'
# as authentification framework
gem 'devise'
gem 'devise_ichain_authenticatable'
# as authorization framework
gem 'cancancan'
# for user avatars
gem 'gravtastic'
# for markdown rendering
gem 'redcarpet'
# for token input
gem 'selectize-rails'
# as state machine
gem 'aasm'
# as exception notifier
gem 'airbrake'
gem 'airbrake-ruby'
# to set env variables
gem 'figaro'
# for keyboard shortcuts
gem 'mousetrap-rails'
# as search engine
gem 'thinking-sphinx'
# for pagination
gem 'kaminari'
# for slugs
gem 'stringex'
# for seeds
gem 'factory_bot_rails', :group => [:development, :test]
gem 'faker', :group => [:development, :test]
# as test framework
gem 'rspec-rails', :group => [:development, :test]
gem 'capybara', :group => [:development, :test]
gem 'rails-controller-testing', group: [:development, :test]
# for file attachments
gem 'paperclip', '~> 6.1'
# as deployer
gem 'mina', '~> 0.3'
# as the app server
gem 'puma', '~> 4.3'
# as the log formater
gem 'lograge'
# for speeding up application boot
gem 'bootsnap', '>= 1.1.0', require: false
gem 'listen', '>= 3.0.5', '<= 3.2.1', :group => [:development, :test]
group :test do
# for cleaning the test DB
gem 'database_cleaner'
# for measuring test coverage
gem 'coveralls', :require => false
# as style hound
gem 'rubocop'
gem 'rubocop-rspec'
# Time travel in tests
gem 'timecop'
# Let's add real browser testing to our features (required to test AJAX)
gem 'poltergeist'
end