forked from desarrollolocal/Suggestion_Box
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
67 lines (63 loc) · 3.02 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.0'
# 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.1.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.7'
# Client library for easily using the Cloudinary service
gem 'cloudinary'
# Twitter's Bootstrap, converted to Sass and ready to drop into Rails or Compass
gem 'bootstrap-sass', '3.3.3'
# This gem integrates the Twitter Bootstrap pagination component with the will_paginate pagination gem
gem 'will_paginate-bootstrap'
# Call JavaScript code and manipulate JavaScript objects from Ruby. Call Ruby code and manipulate Ruby objects from JavaScript.
gem 'therubyracer', '~> 0.12.1'
# It lets you create pretty URLs and work with human-friendly strings as if they were numeric ids.
gem 'friendly_id', '~> 5.1.0'
# Provides object geocoding (by street or IP address), reverse geocoding (coordinates to street address), distance queries for ActiveRecord and Mongoid, result caching, and more.
gem 'geocoder', '~> 1.2.8'
# A wysiwyg text editor for Twitter Bootstrap
gem 'bootstrap-wysihtml5-rails', '~> 0.3.3.6'
group :development, :test do
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# MailCatcher runs a super simple SMTP server
gem 'mailcatcher'
# RSpec for Rails
gem 'rspec-rails'
# Capybara is an integration testing tool for rack based web applications. It simulates how a user would interact with a website
gem 'capybara'
# Headless Webkit driver for Capybara
gem 'capybara-webkit', '~> 1.7.0'
# WebDriver is a tool for writing automated tests of websites. It aims to mimic the behaviour of a real user, and as such interacts with the HTML of the application.
gem 'selenium-webdriver', '~> 2.47.1'
# Strategies for cleaning databases. Can be used to ensure a clean state for testing.
gem 'database_cleaner', '~> 1.5.0'
# Poltergeist is a driver for Capybara that allows you to run your tests on a headless WebKit browser, provided by PhantomJS.
gem 'poltergeist'
end
group :production do
# Use PostgreSQL as the database for Active Record
gem 'pg'
# Run Rails the 12factor way
gem 'rails_12factor'
end