shoestrap 0.3.0.pre2 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +2 -1
- data/lib/shoestrap/app_builder.rb +1 -0
- data/lib/shoestrap/tasks/middleman.rb +3 -2
- data/shoestrap.gemspec +1 -1
- metadata +5 -5
data/CHANGELOG.md
CHANGED
@@ -7,9 +7,10 @@ require 'airbrake/tasks'
|
|
7
7
|
desc 'Build the project'
|
8
8
|
task :build do
|
9
9
|
puts 'RUNNING MIDDLEMAN BUILD'
|
10
|
-
if File.symlink? 'public'
|
11
|
-
File.
|
10
|
+
if File.symlink?('public') || File.exists?('public')
|
11
|
+
File.delete 'public'
|
12
12
|
end
|
13
|
+
|
13
14
|
`bundle exec middleman build && ln -s build public`
|
14
15
|
end
|
15
16
|
|
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'
|
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"
|
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shoestrap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.0
|
5
|
-
prerelease:
|
4
|
+
version: 0.3.0
|
5
|
+
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Immanuel Häussermann
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2013-
|
15
|
+
date: 2013-05-01 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: rspec
|
@@ -144,9 +144,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
144
144
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
145
145
|
none: false
|
146
146
|
requirements:
|
147
|
-
- - ! '
|
147
|
+
- - ! '>='
|
148
148
|
- !ruby/object:Gem::Version
|
149
|
-
version:
|
149
|
+
version: '0'
|
150
150
|
requirements: []
|
151
151
|
rubyforge_project: shoestrap
|
152
152
|
rubygems_version: 1.8.24
|