Skip to content

Commit

Permalink
Fixed my dumb rake misuse
Browse files Browse the repository at this point in the history
  • Loading branch information
mikbe committed Jul 2, 2011
1 parent 8aa94f6 commit 9ff4c4c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
13 changes: 8 additions & 5 deletions README.markdown
Expand Up @@ -170,8 +170,9 @@ This example shows you how you might actually use it in a multi-threaded environ

##Version History##

Post release updates:
Added running specs to rake tasks (Colin Gemmell)
Post release updates:

* Added running specs to rake tasks (Colin Gemmell)

**2011.06.28**
Ver: 0.1.3
Expand All @@ -195,7 +196,8 @@ Design updates/fixes:
Ver: 0.1.1

Features:
If events fired specifically returns true and returns false if it can't for whatever reason (e.g. no listeners registered).

* If events fired specifically returns true and returns false if it can't for whatever reason (e.g. no listeners registered).

Fixes:

Expand All @@ -214,8 +216,9 @@ Releasing just to stop RubyGems.org from showing last beta instead of newest bet

**2011.06.05**
Ver: 0.1.0.beta2
Wrapped #\_id2ref call in begin...rescue block. (Evan Phoenix)
Added thread synchronization to calls that modify or read callbacks cache.

* Wrapped #\_id2ref call in begin...rescue block. (Evan Phoenix)
* Added thread synchronization to calls that modify or read callbacks cache.

**2011.06.05**
Ver: 0.1.0.beta1
Expand Down
7 changes: 1 addition & 6 deletions Rakefile
Expand Up @@ -12,10 +12,5 @@ end

# Add running specs to the gem tasks
[:build, :install, :release].each do |task_name|
bundler_task = Rake::Task[task_name]
task "bundler_#{task_name}" do
bundler_task
end
task task_name => [:spec, "bundler_#{task_name}"]
task task_name => :spec
end

0 comments on commit 9ff4c4c

Please sign in to comment.