Skip to content

Commit

Permalink
Drop space before semicolon (style).
Browse files Browse the repository at this point in the history
  • Loading branch information
fnichol committed Aug 5, 2014
1 parent ba0d18a commit af20674
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/emeril/git_tagger.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ module Emeril

# Exception class raised when a git repo is not clean.
#
class GitNotCleanError < StandardError ; end
class GitNotCleanError < StandardError; end

# Exception class raised when a git push does not return successfully.
#
class GitPushError < StandardError ; end
class GitPushError < StandardError; end

# Applies a version tag on a git repository and pushes it to the origin
# remote.
Expand Down
2 changes: 1 addition & 1 deletion lib/emeril/metadata_chopper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Emeril

# Exception class raised when there is a metadata.rb parsing issue.
#
class MetadataParseError < StandardError ; end
class MetadataParseError < StandardError; end

# A rather insane and questionable class to quickly consume a metadata.rb
# file and return the cookbook name and version attributes.
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/emeril/publisher_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class DummyKnife < Emeril::Publisher::SharePlugin

def run ; end
def run; end
end

describe Emeril::Publisher do
Expand Down

0 comments on commit af20674

Please sign in to comment.