dtf 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/dtf/version.rb +1 -1
- data/lib/tasks/setup.thor +3 -3
- metadata +1 -1
data/lib/dtf/version.rb
CHANGED
data/lib/tasks/setup.thor
CHANGED
|
@@ -14,8 +14,8 @@ class DtfSetup < Thor
|
|
|
14
14
|
#
|
|
15
15
|
# Migrations
|
|
16
16
|
from_dir = "#{File.join("#{Gem.loaded_specs['dtf'].gem_dir}", 'db/migrate')}"
|
|
17
|
-
# Add schema.rb
|
|
18
|
-
other_files = ["#{from_dir}/../schema.rb"
|
|
17
|
+
# Add schema.rb to list of additional files to be pushed
|
|
18
|
+
other_files = ["#{from_dir}/../schema.rb"]
|
|
19
19
|
|
|
20
20
|
other_files.each do |source|
|
|
21
21
|
puts "Generating db/#{File.basename(source)}"
|
|
@@ -65,4 +65,4 @@ class DtfSetup < Thor
|
|
|
65
65
|
puts "Don't forget to run 'rake db:setup' next! Run 'rake db:drop:all' first, if your databases already exist."
|
|
66
66
|
end
|
|
67
67
|
|
|
68
|
-
end
|
|
68
|
+
end
|