-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
48 lines (42 loc) · 1.3 KB
/
Gemfile
File metadata and controls
48 lines (42 loc) · 1.3 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.1.2'
# Use postgresql as the database for Active Record
gem 'pg', '~> 0.18'
# Use Puma as the app server
gem 'puma', '~> 3.7'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'jquery-rails'
gem 'bootstrap-sass'
gem 'devise'
#debugging gem
gem 'pry'
group :development, :test do
#moniter files and perform action when saved
gem 'guard'
#will reload brower when certain files are saved
gem 'guard-livereload'
#run tests when files are saved
gem 'guard-rspec'
#resting library for ruby
gem 'rspec-rails'
#integration testing with rails
gem 'capybara'# , '~> 2.14.0'
#create factories for active record objects
gem 'factory_girl_rails'
#cleans databases after test runs
gem 'database_cleaner'
#matchers for model and controler tests
gem 'shoulda-matchers', '~> 2.0'
gem 'rails-controller-testing', '0.1.1'
#creates data charts
gem 'chartkick'
#provides time based data grouping
gem 'groupdate'
end