Skip to content

Commit

Permalink
Update ruby to 2.4.1 (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
timurvafin committed Aug 2, 2017
1 parent 06a23da commit 9e58c92
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .rubocop.yml
Expand Up @@ -4,7 +4,7 @@ Rails:
Enabled: true

AllCops:
TargetRubyVersion: 2.3
TargetRubyVersion: 2.4
DisplayCopNames: true
Exclude:
- bin/**/*
Expand Down Expand Up @@ -55,12 +55,6 @@ Style/EmptyMethod:
- compact
- expanded

Style/AlignParameters:
EnforcedStyle: with_fixed_indentation
SupportedStyles:
- with_first_parameter
- with_fixed_indentation

Style/FrozenStringLiteralComment:
Enabled: false

Expand All @@ -73,6 +67,12 @@ Metrics/LineLength:
Metrics/BlockLength:
Enabled: false

Style/AlignParameters:
EnforcedStyle: with_fixed_indentation
SupportedStyles:
- with_first_parameter
- with_fixed_indentation

Lint/EndAlignment:
EnforcedStyleAlignWith: variable
SupportedStylesAlignWith:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
@@ -1 +1 @@
2.3.3
2.4.1
2 changes: 1 addition & 1 deletion Gemfile
@@ -1,6 +1,6 @@
source "https://rubygems.org"

ruby "2.3.3"
ruby "2.4.1"

gem "pg"
gem "rails", "5.0.2"
Expand Down
2 changes: 1 addition & 1 deletion Guardfile
@@ -1,7 +1,7 @@
require "guard/rspec/dsl"

guard :rspec, cmd: "bin/rspec" do
notification :terminal_notifier if `uname` =~ /Darwin/
notification :terminal_notifier if `uname`.match?(/Darwin/)

dsl = Guard::RSpec::Dsl.new(self)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -5,7 +5,7 @@
[![Code Climate](https://codeclimate.com/github/fs/rails-base.png)](https://codeclimate.com/github/fs/rails-base)

Rails Base is the base Rails application template used at Flatstack.
It's based on Rails 5 and Ruby 2.3.3.
It's based on Rails 5 and Ruby 2.4

## Application Gems

Expand Down

0 comments on commit 9e58c92

Please sign in to comment.