Skip to content

Commit

Permalink
up version and give unique name
Browse files Browse the repository at this point in the history
  • Loading branch information
jwhitehorn committed Apr 19, 2014
1 parent de528a7 commit 2a439ee
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.bundle
.DS_Store
.idea
test/*.log
pkg
Expand Down
26 changes: 13 additions & 13 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
require 'rubygems'
require 'rake'
require 'echoe'
Echoe.new('acts_as_versioned', '3.2.1') do |p|
p.description = "Active Record model versioning"
p.url = "http://github.com/jwhitehorn/acts_as_versioned"
p.author = "Jason Whitehorn"
p.email = "[email protected]"
p.dependencies = ['activerecord']
end
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
require 'rubygems'
require 'rake'
require 'echoe'

Echoe.new('acts_as_versioned_jw', '3.2.2') do |p|
p.description = "Active Record model versioning"
p.url = "http://github.com/jwhitehorn/acts_as_versioned"
p.author = "Jason Whitehorn"
p.email = "[email protected]"
p.dependencies = ['activerecord']
end

Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }

0 comments on commit 2a439ee

Please sign in to comment.