Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael van Rooijen committed May 1, 2011
2 parents 5e3d03e + 55f7029 commit adc9d1c
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 3 deletions.
47 changes: 46 additions & 1 deletion README.md
Expand Up @@ -109,6 +109,52 @@ HireFire currently works with the following worker and mapper libraries:
- [Redis](https://github.com/ezmobius/redis-rb)


Suggestions, Bugs, Requests, Questions
--------------------------------------

View the [issue log](https://github.com/meskyanichi/hirefire/issues) and post them there.


Contributors
------------

<table>
<tr>
<th>Contributor</th>
<th>Contribution</th>
</tr>
<tr>
<td><a href="https://github.com/dirk" target="_blank">Dirk Gadsden ( dirk )</a></td>
<td>Implementing a more functional job/worker ratio notation using Lambda</td>
</tr>
<tr>
<td><a href="https://github.com/michelson" target="_blank">Miguel Michelson Martinez ( michelson )</a></td>
<td>Allowing HireFire to initialize in non-Ruby on Rails environments</td>
</tr>
<tr>
<td><a href="https://github.com/nbibler" target="_blank">Nathaniel Bibler ( nbibler )</a></td>
<td>Ensures that HireFire gracefully handles RestClient exceptions</td>
</tr>
<tr>
<td><a href="https://github.com/samoli" target="_blank">Sam Oliver ( samoli )</a></td>
<td>Adding the ability to specify a minimum amount of workers</td>
</tr>
</table>


Want to contribute?
-------------------

- Fork/Clone the **develop** branch
- Write RSpec tests, and test against:
- Ruby 1.9.2
- Ruby 1.8.7
- Ruby Enterprise Edition 1.8.7
- Try to keep the overall *structure / design* of the gem the same

I can't guarantee I'll pull every pull request. Also, I may accept your pull request and drastically change parts to improve readability/maintainability. Feel free to discuss about improvements, new functionality/features in the [issue log](https://github.com/meskyanichi/hirefire/issues) before contributing if you need/want more information.


Frequently Asked Questions
--------------------------

Expand Down Expand Up @@ -139,7 +185,6 @@ Frequently Asked Questions
- **Answer:** When you run multiple jobs concurrently, you can speed up your processing dramatically. *Normally you wouldn't set the workers to 10 for example, but with HireFire you can tell it to Hire 10 workers when there are 50 jobs (would normally be overkill and cost you A LOT of money) but since (see Q/A above) Workers are pro-rated to the second, and HireFire immediately fires all workers once all the jobs in the queue have been processed, it makes no different whether you have a single worker processing 50 jobs, or 5 workers, or even 10 workers. It processes 10 times faster, but costs the same.*



Other potentially interesting gems
----------------------------------

Expand Down
2 changes: 1 addition & 1 deletion hirefire.gemspec
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |gem|

##
# Production gem dependencies
gem.add_dependency 'heroku', ['~> 1.20.1']
gem.add_dependency 'heroku', ['~> 2.0.0']
gem.add_dependency 'rush', ['~> 0.6.7']

end
2 changes: 1 addition & 1 deletion lib/hirefire/version.rb
Expand Up @@ -6,7 +6,7 @@ module Version
##
# @return [String] the current version of the HireFire gem
def self.current
'0.1.2'
'0.1.3'
end

end
Expand Down

0 comments on commit adc9d1c

Please sign in to comment.