-
Notifications
You must be signed in to change notification settings - Fork 48
/
Rakefile
60 lines (50 loc) · 1.64 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Stolen from https://gist.github.com/schickling/6762581
# Thank you <3
require "yaml"
require "active_record"
namespace :db do
db_config = YAML.safe_load(File.open("spec/config/database.yml"))
def activerecord_below_5_2?
ActiveRecord.version.release < Gem::Version.new("5.2.0")
end
desc "Migrate the database"
task :migrate do
ActiveRecord::Base.establish_connection(db_config)
if activerecord_below_5_2?
ActiveRecord::Migrator.migrate("spec/db/migrate")
else
ActiveRecord::MigrationContext.new("spec/db/migrate").migrate
end
Rake::Task["db:schema"].invoke
puts "Database migrated."
end
desc "Create a db/schema.rb file that is portable against any supported DB"
task :schema do
ActiveRecord::Base.establish_connection(db_config)
require "active_record/schema_dumper"
filename = "spec/db/schema.rb"
File.open(filename, "w:utf-8") do |file|
ActiveRecord::SchemaDumper.dump(ActiveRecord::Base.connection, file)
end
end
end
namespace :g do
desc "Generate migration"
task :migration do
name = ARGV[1] || raise("Specify name: rake g:migration name")
timestamp = Time.now.strftime("%Y%m%d%H%M%S")
folder = "../spec/db/migrate"
path = File.expand_path("#{folder}/#{timestamp}_#{name}.rb", __FILE__)
migration_class = name.split("_").map(&:capitalize).join
File.open(path, "w") do |file|
file.write <<-MIGRATION.strip_heredoc
class #{migration_class} < ActiveRecord::Migration[5.2]
def change
end
end
MIGRATION
end
puts "Migration #{path} created"
abort # needed stop other tasks
end
end