Sha256: 55275bf6638e12af0fca737a39e971164562235694535c0a90709da1f4c4ea20
Contents?: true
Size: 621 Bytes
Versions: 44
Compression:
Stored size: 621 Bytes
Contents
namespace :social_stream do namespace :migrations do desc "Copy pending migrations from all the social_stream components" task "update" do Rake::Task['railties:install:migrations'].reenable Rake::Task['mailboxer_engine:install:migrations'].invoke File.read(File.expand_path("../../../social_stream.gemspec", __FILE__)). scan(/dependency.*social_stream-(\w*)/). flatten. each do |d| Rake::Task['railties:install:migrations'].reenable Rake::Task["social_stream_#{ d }_engine:install:migrations"].invoke end end end end
Version data entries
44 entries across 44 versions & 1 rubygems