forked from schmicles/ar-student-schema
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
53 lines (43 loc) · 1.35 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
require 'rake'
require 'rspec/core/rake_task'
require_relative 'db/config'
require_relative 'lib/students_importer'
require 'faker'
desc "create the database"
task "db:create" do
touch 'db/ar-students.sqlite3'
end
desc "drop the database"
task "db:drop" do
rm_f 'db/ar-students.sqlite3'
end
desc "seed the file with some test data"
task "db:popteachers" do
require_relative "app.rb"
9.times do
teacher = Teacher.new
teacher.name = Faker::Name.name
teacher.email = Faker::Internet.email
teacher.phone = Faker::PhoneNumber.cell_phone
teacher.save
end
end
desc "migrate the database (options: VERSION=x, VERBOSE=false, SCOPE=blog)."
task "db:migrate" do
ActiveRecord::Migrator.migrations_paths << File.dirname(__FILE__) + 'db/migrate'
ActiveRecord::Migration.verbose = ENV["VERBOSE"] ? ENV["VERBOSE"] == "true" : true
ActiveRecord::Migrator.migrate(ActiveRecord::Migrator.migrations_paths, ENV["VERSION"] ? ENV["VERSION"].to_i : nil) do |migration|
ENV["SCOPE"].blank? || (ENV["SCOPE"] == migration.scope)
end
end
desc "populate the test database with sample data"
task "db:populate" do
StudentsImporter.import
end
desc 'Retrieves the current schema version number'
task "db:version" do
puts "Current version: #{ActiveRecord::Migrator.current_version}"
end
desc "Run the specs"
RSpec::Core::RakeTask.new(:specs)
task :default => :specs