zena 0.16.1 → 0.16.2
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/History.txt +5 -0
- data/lib/tasks/zena.rake +1 -1
- data/lib/zena/deploy/template.rb +1 -1
- data/lib/zena/info.rb +1 -1
- data/zena.gemspec +2 -2
- metadata +2 -2
data/History.txt
CHANGED
data/lib/tasks/zena.rake
CHANGED
|
@@ -71,7 +71,7 @@ def copy_files(from, to)
|
|
|
71
71
|
next if f =~ /\A./
|
|
72
72
|
copy_files("#{from}/#{f}", "#{to}/#{f}")
|
|
73
73
|
end
|
|
74
|
-
elsif File.exist?(to)
|
|
74
|
+
elsif !ENV['OVERWRITE_ASSETS'] && File.exist?(to)
|
|
75
75
|
if COPY_FILE_OVERWRITE_ALL.has_key?(base)
|
|
76
76
|
if COPY_FILE_OVERWRITE_ALL[base]
|
|
77
77
|
FileUtils.cp(from, base)
|
data/lib/zena/deploy/template.rb
CHANGED
data/lib/zena/info.rb
CHANGED
|
@@ -9,7 +9,7 @@ ZENA_CALENDAR_LANGS = ["en", "fr"] # FIXME: build this dynamically from existing
|
|
|
9
9
|
ENABLE_XSENDFILE = false
|
|
10
10
|
|
|
11
11
|
module Zena
|
|
12
|
-
VERSION = '0.16.
|
|
12
|
+
VERSION = '0.16.2'
|
|
13
13
|
REVISION = 1336
|
|
14
14
|
ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
|
|
15
15
|
end
|
data/zena.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{zena}
|
|
8
|
-
s.version = "0.16.
|
|
8
|
+
s.version = "0.16.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Gaspard Bucher"]
|
|
12
|
-
s.date = %q{2010-01-
|
|
12
|
+
s.date = %q{2010-01-17}
|
|
13
13
|
s.default_executable = %q{zena}
|
|
14
14
|
s.description = %q{zena is a Ruby on Rails CMS (content managment system) with a focus on usability, ease of customization and web 2.0 goodness (application like behaviour).}
|
|
15
15
|
s.email = %q{gaspard@teti.ch}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zena
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.16.
|
|
4
|
+
version: 0.16.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gaspard Bucher
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2010-01-
|
|
12
|
+
date: 2010-01-17 00:00:00 +01:00
|
|
13
13
|
default_executable: zena
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|