drumherum 0.1.38 → 0.1.39
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/drumherum/rake.rb +5 -5
- data/version.rb +1 -1
- metadata +1 -1
data/lib/drumherum/rake.rb
CHANGED
|
@@ -72,7 +72,7 @@ end
|
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
# -------------------------------------------------------------------------------------------------------
|
|
75
|
-
# publish
|
|
75
|
+
# publish
|
|
76
76
|
#
|
|
77
77
|
|
|
78
78
|
# Task :publish
|
|
@@ -130,8 +130,8 @@ end
|
|
|
130
130
|
#
|
|
131
131
|
|
|
132
132
|
|
|
133
|
-
# git_publish
|
|
134
|
-
#
|
|
133
|
+
# git_publish
|
|
134
|
+
#
|
|
135
135
|
desc 'publish actual version to github'
|
|
136
136
|
task :git_publish => [ :git_add, :git_commit, :git_push ] do
|
|
137
137
|
puts; puts; puts; puts
|
|
@@ -234,11 +234,11 @@ end
|
|
|
234
234
|
end
|
|
235
235
|
|
|
236
236
|
# doc rüberkopieren
|
|
237
|
-
Dir.chdir 'doc' do
|
|
237
|
+
Dir.chdir "#{File.join(Drumherum.directory_main,'doc')}" do
|
|
238
238
|
if Drumherum.host_os == :windows
|
|
239
239
|
sh "xcopy /E *.* \\tmp\\#{Drumherum.project_name} "
|
|
240
240
|
else
|
|
241
|
-
sh "cp . /tmp/#{Drumherum.project_name} "
|
|
241
|
+
sh "cp . -R /tmp/#{Drumherum.project_name} "
|
|
242
242
|
end
|
|
243
243
|
end
|
|
244
244
|
|
data/version.rb
CHANGED