diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-24 14:20:22 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-24 14:20:22 -0400 |
commit | 5581530930129d7854ed5d99d058939ad9c790c2 (patch) | |
tree | 157515f64b34a86e0f6d33dc641e06a7ecc2982c /Gemfile | |
download | thoughts-5581530930129d7854ed5d99d058939ad9c790c2.tar.gz thoughts-5581530930129d7854ed5d99d058939ad9c790c2.tar.bz2 thoughts-5581530930129d7854ed5d99d058939ad9c790c2.zip |
Initial commit
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..ed467b0 --- /dev/null +++ b/Gemfile | |||
@@ -0,0 +1,54 @@ | |||
1 | source 'https://rubygems.org' | ||
2 | |||
3 | git_source(:github) do |repo_name| | ||
4 | repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") | ||
5 | "https://github.com/#{repo_name}.git" | ||
6 | end | ||
7 | |||
8 | |||
9 | # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
10 | gem 'rails', '~> 5.1.1' | ||
11 | # Use sqlite3 as the database for Active Record | ||
12 | gem 'sqlite3' | ||
13 | # Use Puma as the app server | ||
14 | gem 'puma', '~> 3.7' | ||
15 | # Use SCSS for stylesheets | ||
16 | gem 'sass-rails', '~> 5.0' | ||
17 | # Use Uglifier as compressor for JavaScript assets | ||
18 | gem 'uglifier', '>= 1.3.0' | ||
19 | # See https://github.com/rails/execjs#readme for more supported runtimes | ||
20 | # gem 'therubyracer', platforms: :ruby | ||
21 | |||
22 | # Use CoffeeScript for .coffee assets and views | ||
23 | gem 'coffee-rails', '~> 4.2' | ||
24 | # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks | ||
25 | gem 'turbolinks', '~> 5' | ||
26 | # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | ||
27 | gem 'jbuilder', '~> 2.5' | ||
28 | # Use Redis adapter to run Action Cable in production | ||
29 | # gem 'redis', '~> 3.0' | ||
30 | # Use ActiveModel has_secure_password | ||
31 | # gem 'bcrypt', '~> 3.1.7' | ||
32 | |||
33 | # Use Capistrano for deployment | ||
34 | # gem 'capistrano-rails', group: :development | ||
35 | |||
36 | group :development, :test do | ||
37 | # Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
38 | gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
39 | # Adds support for Capybara system testing and selenium driver | ||
40 | gem 'capybara', '~> 2.13' | ||
41 | gem 'selenium-webdriver' | ||
42 | end | ||
43 | |||
44 | group :development do | ||
45 | # Access an IRB console on exception pages or by using <%= console %> anywhere in the code. | ||
46 | gem 'web-console', '>= 3.3.0' | ||
47 | gem 'listen', '>= 3.0.5', '< 3.2' | ||
48 | # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | ||
49 | gem 'spring' | ||
50 | gem 'spring-watcher-listen', '~> 2.0.0' | ||
51 | end | ||
52 | |||
53 | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
54 | gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | ||