-
- Downloads
Update Status page Rails app
- Update to Rails 4.2.5.1 - Update gems, Unicorn is now using the same version as GitLab CE - Remove jQuery since we aren’t using it anywhere - Remove Bootstrap.js since we aren’t using it anywhere - Made copyright year dynamic
parent
7c4b3dbd
No related branches found
No related tags found
Showing
- Gemfile 9 additions, 11 deletionsGemfile
- Gemfile.lock 62 additions, 57 deletionsGemfile.lock
- app/assets/javascripts/application.js 0 additions, 4 deletionsapp/assets/javascripts/application.js
- app/assets/stylesheets/status.scss 1 addition, 3 deletionsapp/assets/stylesheets/status.scss
- app/views/layouts/application.html.erb 26 additions, 17 deletionsapp/views/layouts/application.html.erb
source 'https://rubygems.org' | ||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
gem 'rails', '4.2.4' | ||
gem 'rails', '4.2.5.1' | ||
# Use sqlite3 as the database for Active Record | ||
gem 'sqlite3' | ||
# 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' | ||
# See https://github.com/rails/execjs#readme for more supported runtimes | ||
# gem 'therubyracer', platforms: :ruby | ||
# 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 | ||
gem 'bootstrap3-rails' | ||
# Use ActiveModel has_secure_password | ||
# gem 'bcrypt', '~> 3.1.7' | ||
# Use Unicorn as the app server | ||
gem 'unicorn' | ||
# Use Capistrano for deployment | ||
# gem 'capistrano-rails', group: :development | ||
gem "unicorn", '~> 4.8.2' | ||
group :development do | ||
# Access an IRB console on exception pages or by using <%= console %> in views | ||
Loading
| Loading
|
Please register or sign in to comment