This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from slloyd-hirst/rubocop_improvements
Rubocop improvements
- Loading branch information
Showing
34 changed files
with
302 additions
and
309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Metrics/LineLength: | ||
Max: 120 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
language: ruby | ||
rvm: | ||
- 2.1.0 | ||
- 2.1.1 | ||
- 2.1.2 | ||
- 2.0.0 | ||
- 1.9.3 | ||
- 2.3.0 | ||
- 2.2.3 | ||
- rbx-2 | ||
|
||
matrix: | ||
allow_failures: | ||
- rvm: rbx-2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
guard 'rspec', :version => 2 do | ||
guard 'rspec', version: 2 do | ||
watch(%r{^spec/.+_spec\.rb$}) | ||
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } | ||
watch('spec/spec_helper.rb') { "spec" } | ||
watch('spec/spec_helper.rb') { 'spec' } | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,3 @@ rescue Fudge::Exceptions::Base => e | |
puts e.message | ||
exit 1 | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
# -*- encoding: utf-8 -*- | ||
$:.push File.expand_path('../lib', __FILE__) | ||
$LOAD_PATH.push File.expand_path('../lib', __FILE__) | ||
require 'fudge/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = 'fudge' | ||
s.version = Fudge::VERSION | ||
s.authors = %q{Sage One team} | ||
s.email = %q{[email protected]} | ||
s.homepage = %q{http://github.com/Sage/fudge} | ||
s.summary = %q{Fudge CI Server} | ||
s.description = %q{Fudge Continuous Integration Server} | ||
s.authors = 'Sage One team' | ||
s.email = '[email protected]' | ||
s.homepage = 'http://github.com/Sage/fudge' | ||
s.summary = 'Fudge CI Server' | ||
s.description = 'Fudge Continuous Integration Server' | ||
s.license = 'MIT' | ||
|
||
s.files = Dir['lib/**/*'] | ||
s.test_files = Dir['spec/**/*.rb'] | ||
s.executables = %w{fudge} | ||
s.require_paths = %w{lib} | ||
s.executables = %w(fudge) | ||
s.require_paths = %w(lib) | ||
|
||
s.add_dependency 'thor' | ||
s.add_dependency 'json' | ||
s.add_development_dependency 'redcarpet' | ||
s.add_development_dependency 'rspec', '>= 3.0.0' | ||
s.add_development_dependency 'guard-rspec' | ||
s.add_development_dependency 'rb-fsevent' #guard dependency | ||
s.add_development_dependency 'rb-fsevent' # guard dependency | ||
s.add_development_dependency 'yard' | ||
s.add_development_dependency 'cane' | ||
s.add_development_dependency 'flog' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.