Skip to content

Commit

Permalink
squasher.gemspec: use long description (#81)
Browse files Browse the repository at this point in the history
thanks
  • Loading branch information
olleolleolle authored Apr 18, 2024
1 parent b864ca0 commit e2f9edf
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion squasher.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit e2f9edf

Please sign in to comment.