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 CHANGED
@@ -1,7 +1,8 @@
1
1
  #Changelog
2
2
 
3
- ## 0.3.0.pre - 2013-04-25
3
+ ## 0.3.0 - 2013-05-01
4
4
 
5
+ * set timezone to 'Bern' by default
5
6
  * create db before migrating (doh!)
6
7
  * rakefiles for deployment stay in kushsaft and can be required in the application
7
8
  * add middleman deployment task
@@ -63,6 +63,7 @@ module Shoestrap
63
63
  config.i18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}').to_s]
64
64
  config.i18n.available_locales = [:de]
65
65
  config.i18n.default_locale = :de
66
+ config.time_zone = 'Bern'
66
67
  eos
67
68
  end
68
69
 
@@ -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.rm 'public'
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.pre2'
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.pre2
5
- prerelease: 6
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-04-28 00:00:00.000000000 Z
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: 1.3.1
149
+ version: '0'
150
150
  requirements: []
151
151
  rubyforge_project: shoestrap
152
152
  rubygems_version: 1.8.24