Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Fixed gemspec statement order
Browse files Browse the repository at this point in the history
  • Loading branch information
elgalu committed Mar 6, 2013
1 parent d499bbe commit 0bc1b83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions time_ago_in_words.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ Gem::Specification.new do |spec|
spec.email = ["elgalu3@gmail.com"]
spec.homepage = "https://github.com/elgalu/time_ago_in_words"

spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", ">= 1.2"
spec.add_development_dependency "rake"
Expand Down

0 comments on commit 0bc1b83

Please sign in to comment.