shoestrap 0.3.0.pre1 → 0.3.0.pre2
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/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"
|