Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

squasher.gemspec: use long description on Rubygems.org, to clarify #81

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading