Skip to content

Commit

Permalink
Renamed the gem so I could publish it to rubygems.org based on Michael
Browse files Browse the repository at this point in the history
Grosser's awesome contribution
  • Loading branch information
thuss committed Mar 17, 2010
1 parent 8873dd9 commit 16c2780
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Rails migrations in non-Rails (and non Ruby) projects.
USAGE
=====
Install Ruby, RubyGems and a ruby-database driver (e.g. `gem install mysql`) then:
sudo gem install standalone_migrations
sudo gem install standalone-migrations

Add to `Rakefile` in your projects base directory:
begin
Expand Down Expand Up @@ -65,5 +65,5 @@ Contributors
This work is based on [Lincoln Stoll's blog post](http://lstoll.net/2008/04/stand-alone-activerecord-migrations/) and [David Welton's post](http://journal.dedasys.com/2007/01/28/using-migrations-outside-of-rails).

- [Todd Huss](http://gabrito.com/)
- [Michael Grosser](http://pragmatig.wordpress.com)
- [Steve Hodgkiss](http://stevehodgkiss.com/)`s [activerecord-migrator-standalone](http://github.com/stevehodgkiss/activerecord-migrator-standalone)
- [Michael Grosser](http://pragmatig.wordpress.com)
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ begin
Jeweler::Tasks.new do |gem|
gem.name = 'standalone_migrations'
gem.summary = "A thin wrapper to use Rails Migrations in non Rails projects"
gem.email = "grosser.michael@gmail.com"
gem.email = "thuss@gabrito.com"
gem.homepage = "http://github.com/thuss/standalone-migrations"
gem.authors = ["Michael Grosser"]
gem.authors = ["Todd Huss", "Michael Grosser"]
%w[rake activerecord].each{|d| gem.add_dependency d}
end

Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install jeweler"
end
end
12 changes: 6 additions & 6 deletions standalone-migrations.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{standalone_migrations}
s.version = "0.1.2"
s.name = %q{standalone-migrations}
s.version = "0.1.3"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Michael Grosser"]
s.date = %q{2010-03-16}
s.email = %q{grosser.michael@gmail.com}
s.authors = ["Todd Huss", "Michael Grosser"]
s.date = %q{2010-03-17}
s.email = %q{thuss@gabrito.com}
s.extra_rdoc_files = [
"README.markdown"
]
Expand All @@ -21,7 +21,7 @@ Gem::Specification.new do |s|
"VERSION",
"database.yml",
"lib/standalone_migrations.rb",
"standalone_migrations.gemspec",
"standalone-migrations.gemspec",
"tasks/standalone_migrations.rake",
"vendor/migration_helpers/MIT-LICENSE",
"vendor/migration_helpers/README.markdown",
Expand Down

0 comments on commit 16c2780

Please sign in to comment.