Skip to content

Commit 732453e

Browse files
committedJan 28, 2017
Create new rails 5.0.1 application
1 parent 19c2b3b commit 732453e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+1187
-0
lines changed
 

‎.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore all logfiles and tempfiles.
11+
/log/*
12+
/tmp/*
13+
!/log/.keep
14+
!/tmp/.keep
15+
16+
# Ignore Byebug command history file.
17+
.byebug_history

‎Gemfile

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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.0.1'
11+
# Use postgresql as the database for Active Record
12+
gem 'pg', '~> 0.18'
13+
# Use Puma as the app server
14+
gem 'puma', '~> 3.0'
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+
# Use CoffeeScript for .coffee assets and views
20+
gem 'coffee-rails', '~> 4.2'
21+
# See https://github.com/rails/execjs#readme for more supported runtimes
22+
# gem 'therubyracer', platforms: :ruby
23+
24+
# Use jquery as the JavaScript library
25+
gem 'jquery-rails'
26+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
27+
gem 'turbolinks', '~> 5'
28+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
29+
gem 'jbuilder', '~> 2.5'
30+
# Use Redis adapter to run Action Cable in production
31+
# gem 'redis', '~> 3.0'
32+
# Use ActiveModel has_secure_password
33+
# gem 'bcrypt', '~> 3.1.7'
34+
35+
# Use Capistrano for deployment
36+
# gem 'capistrano-rails', group: :development
37+
38+
group :development, :test do
39+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
40+
gem 'byebug', platform: :mri
41+
end
42+
43+
group :development do
44+
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
45+
gem 'web-console', '>= 3.3.0'
46+
gem 'listen', '~> 3.0.5'
47+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
48+
gem 'spring'
49+
gem 'spring-watcher-listen', '~> 2.0.0'
50+
end
51+
52+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
53+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

0 commit comments

Comments
 (0)
Please sign in to comment.