Skip to content

Commit

Permalink
Merge pull request #288 from meatballhat/require-paths-gemspec-goof
Browse files Browse the repository at this point in the history
Correcting the gemspec to use the right `require_paths`
  • Loading branch information
meatballhat committed Nov 20, 2013
2 parents 60add6d + 2f8d32b commit 027bfcd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.3.1 (2013-11-20)

* Correcting `require_paths` in gemspec

## 2.3.0 (2013-11-07)

* Fix re-introduced `ThreadError` on Ruby 2
Expand Down
4 changes: 3 additions & 1 deletion lib/resque_scheduler/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# vim:fileencoding=utf-8

module ResqueScheduler
VERSION = '2.3.0'
VERSION = '2.3.1'
end
10 changes: 5 additions & 5 deletions resque-scheduler.gemspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- encoding: utf-8 -*-
# vim:fileencoding=utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'resque_scheduler/version'
Expand All @@ -15,10 +15,10 @@ Gem::Specification.new do |spec|
Also supports queueing jobs on a fixed, cron-like schedule.}
spec.license = 'MIT'

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

spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'mocha'
Expand Down

0 comments on commit 027bfcd

Please sign in to comment.