Skip to content

Commit

Permalink
update-ruby
Browse files Browse the repository at this point in the history
  • Loading branch information
masarakki committed Jan 5, 2017
1 parent 1a4ea6c commit fc8d4c8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ AllCops:
- gemfiles/vendor/bundle/**/*
Metrics/AbcSize:
Enabled: false
Metrics/BlockLength:
Enabled: false
Metrics/LineLength:
Enabled: false
Metrics/MethodLength:
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ language: ruby
sudo: false
cache: bundler
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
- 2.2.6
- 2.3.3
- 2.4.0
gemfile:
- gemfiles/cap3.gemfile
- gemfiles/cap2.gemfile
Expand Down
2 changes: 1 addition & 1 deletion Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ guard :rspec, cmd: 'bundle exec rspec' do
watch('spec/spec_helper.rb') { 'spec' }
end

guard :rubocop, cli: '--auto-correct' do
guard :rubocop, cli: '-aD' do
watch(%r{.+\.rb$})
watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end
2 changes: 0 additions & 2 deletions lib/capistrano/env.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ def self.filemode
config.capenv_filemode
end

private

def self.config
@config ||= Capistrano::Env::Config.new
end
Expand Down
2 changes: 1 addition & 1 deletion lib/capistrano/env/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Capistrano
module Env
VERSION = '0.3.3'
VERSION = '0.3.3'.freeze
end
end

0 comments on commit fc8d4c8

Please sign in to comment.