spec/test_data/solutions/fluent-migrator/Rakefile.rb in physique-0.3.10 vs spec/test_data/solutions/fluent-migrator/Rakefile.rb in physique-0.4.0
- old
+ new
@@ -1,20 +1,20 @@
-require 'physique'
-
-Physique::Solution.new do |s|
- s.file = 'Basic.sln'
-
- s.use_nuget do |n|
- n.exe = '../.nuget/nuget.exe'
- n.restore_location = 'packages'
- end
-
- s.run_tests do |t|
- t.runner = :nspec
- end
-
- s.fluently_migrate do |t|
- t.instance = '(local)'
- t.name = 'MyDatabase'
- t.project = 'Basic.Migrations/Basic.Migrations.csproj'
- end
-end
+require 'physique'
+
+Physique::Solution.new do |s|
+ s.file = 'Basic.sln'
+
+ s.use_nuget do |n|
+ n.exe = '../.nuget/nuget.exe'
+ n.restore_location = 'packages'
+ end
+
+ s.run_tests do |t|
+ t.runner = :nspec
+ end
+
+ s.fluently_migrate do |t|
+ t.instance = ENV['DATABASE_INSTANCE'] || '(local)'
+ t.name = 'MyDatabase'
+ t.project = 'Basic.Migrations/Basic.Migrations.csproj'
+ end
+end