shoestrap 0.3.0.pre1 → 0.3.0.pre2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/shoestrap/tasks/middleman.rb +4 -1
- data/shoestrap.gemspec +1 -1
- metadata +1 -1
@@ -7,7 +7,10 @@ require 'airbrake/tasks'
|
|
7
7
|
desc 'Build the project'
|
8
8
|
task :build do
|
9
9
|
puts 'RUNNING MIDDLEMAN BUILD'
|
10
|
-
|
10
|
+
if File.symlink? 'public'
|
11
|
+
File.rm 'public'
|
12
|
+
end
|
13
|
+
`bundle exec middleman build && ln -s build public`
|
11
14
|
end
|
12
15
|
|
13
16
|
desc 'Post Deployment Task for blazing'
|
data/shoestrap.gemspec
CHANGED
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "shoestrap"
|
6
|
-
s.version = '0.3.0.
|
6
|
+
s.version = '0.3.0.pre2'
|
7
7
|
s.platform = Gem::Platform::RUBY
|
8
8
|
s.authors = ["Immanuel Häussermann", "Felipe Kaufmann", "Phil Schilter", "Noëlle Rosenberg"]
|
9
9
|
s.email = "info@screenconcept.ch"
|