forked from SUSE/hackweek
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
89 lines (81 loc) · 2.04 KB
/
Copy pathGemfile
File metadata and controls
89 lines (81 loc) · 2.04 KB
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
source 'https://rubygems.org'
# FIXME: 1.7.4 got yanked
gem 'ruby-progressbar', '1.7.1'
# as framework
gem 'rails', '~> 4.2'
# To speedup app startup
gem 'spring', group: [:development, :test]
gem 'spring-commands-rspec', group: [:development, :test]
# Misc tools for fancy development
group :development, :test do
gem 'better_errors'
gem 'rack-mini-profiler'
gem 'pry-byebug'
gem 'pry-rails'
gem 'hirb'
gem 'quiet_assets'
end
# as databases
gem 'mysql2'
gem 'sqlite3' # Required for Travis-CI tests
# for stylesheets
gem 'sass-rails', '~> 5.0'
# for .js.coffee assets
gem 'coffee-rails', '~> 4.1.0'
# as the front-end framework
gem 'bootstrap-sass'
# as vector icons
gem 'font-awesome-rails'
# as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# as JavaScript library
gem 'jquery-rails'
gem 'jquery-hotkeys-rails'
gem 'jquery-cookie-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 'hoptoad_notifier', '~> 2.3'
# to set env variables
gem 'figaro'
# for keyboard shortcuts
gem 'mousetrap-rails'
# as search engine
gem 'thinking-sphinx'
# for pagination
gem 'kaminari'
# for seeds
gem 'factory_girl_rails', :group => [:development, :test]
gem 'faker', :group => [:development, :test]
# as test framework
gem 'rspec-rails', :group => [:development, :test]
gem 'capybara', :group => [:development, :test]
# for file attachments
gem 'paperclip', '~> 4.1'
# as interactive debugger in error pages
gem 'web-console', '~> 2.0', group: :development
group :test do
# for cleaning the test DB
gem 'database_cleaner'
# for measuring test coverage
gem 'coveralls', :require => false
# as style hound
gem 'rubocop'
# Time travel in tests
gem 'timecop'
# Let's add real browser testing to our features (required to test AJAX)
gem 'poltergeist'
end