From 8112ed9f9aabb291486cd6a8917230a9ddc0b7a9 Mon Sep 17 00:00:00 2001 From: Tim Vergenz Date: Thu, 1 Jun 2017 13:06:08 -0700 Subject: [PATCH] Fix gemspec: rename lib/tasks{migrate => annotate_models_migrate}.rake Fix bug introduced by #469. --- annotate.gemspec | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/annotate.gemspec b/annotate.gemspec index 1f45cedf2..afeaeb763 100644 --- a/annotate.gemspec +++ b/annotate.gemspec @@ -14,7 +14,27 @@ Gem::Specification.new do |s| s.email = ['alex@stinky.com', 'cuong.tran@gmail.com', 'x@nofxx.com', 'turadg@aleahmad.net', 'jon@cloudability.com'] s.executables = ['annotate'] s.extra_rdoc_files = ['README.rdoc', 'CHANGELOG.rdoc', 'TODO.rdoc'] - s.files = ['AUTHORS.rdoc', 'CHANGELOG.rdoc', 'LICENSE.txt', 'README.rdoc', 'TODO.rdoc', 'annotate.gemspec', 'bin/annotate', 'lib/annotate.rb', 'lib/annotate/active_record_patch.rb', 'lib/annotate/annotate_models.rb', 'lib/annotate/annotate_routes.rb', 'lib/annotate/tasks.rb', 'lib/annotate/version.rb', 'lib/generators/annotate/USAGE', 'lib/generators/annotate/install_generator.rb', 'lib/generators/annotate/templates/auto_annotate_models.rake', 'lib/tasks/annotate_models.rake', 'lib/tasks/annotate_routes.rake', 'lib/tasks/migrate.rake'] + s.files = [ + 'AUTHORS.rdoc', + 'CHANGELOG.rdoc', + 'LICENSE.txt', + 'README.rdoc', + 'TODO.rdoc', + 'annotate.gemspec', + 'bin/annotate', + 'lib/annotate.rb', + 'lib/annotate/active_record_patch.rb', + 'lib/annotate/annotate_models.rb', + 'lib/annotate/annotate_routes.rb', + 'lib/annotate/tasks.rb', + 'lib/annotate/version.rb', + 'lib/generators/annotate/USAGE', + 'lib/generators/annotate/install_generator.rb', + 'lib/generators/annotate/templates/auto_annotate_models.rake', + 'lib/tasks/annotate_models.rake', + 'lib/tasks/annotate_routes.rake', + 'lib/tasks/annotate_models_migrate.rake' + ] s.homepage = 'http://github.com/ctran/annotate_models' s.licenses = ['Ruby'] s.require_paths = ['lib']