-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
squasher.gemspec: use long description (#81)
thanks
- Loading branch information
1 parent
b864ca0
commit e2f9edf
Showing
1 changed file
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,14 @@ Gem::Specification.new do |spec| | |
spec.version = Squasher::VERSION | ||
spec.authors = ["Sergey Pchelintsev"] | ||
spec.email = ["[email protected]"] | ||
spec.description = %q{Squash your old migrations} | ||
spec.description = <<-DESCRIPTION.chomp.gsub("\n", " ") | ||
Squasher compresses old ActiveRecord migrations. On a big project with | ||
many migrations, every rake db:migrate might take a few seconds, or creating | ||
of a new database might take a few minutes. That's because ActiveRecord loads | ||
all those migration files. Squasher removes all the migrations and creates a | ||
single migration with the final database state of the specified date. | ||
The new migration will look like a schema.rb file. | ||
DESCRIPTION | ||
spec.summary = %q{Squash your old migrations} | ||
spec.homepage = "https://github.com/jalkoby/squasher" | ||
spec.license = "MIT" | ||
|