Skip to content

Commit

Permalink
Fix Ruby syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
laurilehmijoki committed Jun 6, 2014
1 parent 204072e commit dfe75d9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions s3_website.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ Gem::Specification.new do |s|

s.files = `git ls-files`
.split("\n")
# Reject the SBT jar, as it is a big file.
.reject { |f| f.match('sbt-launch.jar') }
# Include the checksum file in the gem:
.push('resources/s3_website.jar.md5')
.reject { |f| f.match('sbt-launch.jar') } # Reject the SBT jar, as it is a big file
.push('resources/s3_website.jar.md5') # Include the checksum file in the gem
s.test_files = `git ls-files -- src/test/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
Expand Down

0 comments on commit dfe75d9

Please sign in to comment.