jekyll-localization 0.1.4 → 0.1.5

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/ChangeLog CHANGED
@@ -1,5 +1,9 @@
1
1
  = Revision history for jekyll-localization
2
2
 
3
+ == 0.1.5 [2012-05-23]
4
+
5
+ * Don't space pad day.
6
+
3
7
  == 0.1.4 [2012-04-18]
4
8
 
5
9
  * More flexible approach to date/time localization.
data/README CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  == VERSION
4
4
 
5
- This documentation refers to jekyll-localization version 0.1.4
5
+ This documentation refers to jekyll-localization version 0.1.5
6
6
 
7
7
 
8
8
  == DESCRIPTION
@@ -45,7 +45,7 @@ RubyGem:: http://rubygems.org/gems/jekyll-localization
45
45
 
46
46
  == LICENSE AND COPYRIGHT
47
47
 
48
- Copyright (C) 2010-2011 University of Cologne,
48
+ Copyright (C) 2010-2012 University of Cologne,
49
49
  Albertus-Magnus-Platz, 50923 Cologne, Germany
50
50
 
51
51
  jekyll-localization is free software: you can redistribute it and/or modify it
@@ -6,7 +6,7 @@
6
6
  # jekyll-localization -- Jekyll plugin that adds localization features to the #
7
7
  # rendering engine #
8
8
  # #
9
- # Copyright (C) 2010-2011 University of Cologne, #
9
+ # Copyright (C) 2010-2012 University of Cologne, #
10
10
  # Albertus-Magnus-Platz, #
11
11
  # 50923 Cologne, Germany #
12
12
  # #
@@ -46,16 +46,16 @@ module Jekyll
46
46
  'fr' => %w[French Französisch Français]
47
47
  }
48
48
 
49
- DATE_FMT = Hash.new { |h, k| h[k] = '%a %e %b %Y %M:%M:%S %Z' }.update(
50
- 'en' => '%a %e %b %Y %M:%M:%S %p %Z'
49
+ DATE_FMT = Hash.new { |h, k| h[k] = '%a %-d %b %Y %M:%M:%S %Z' }.update(
50
+ 'en' => '%a %-d %b %Y %M:%M:%S %p %Z'
51
51
  )
52
52
 
53
- DATE_FMT_LONG = Hash.new { |h, k| h[k] = '%e %B %Y' }.update(
54
- 'de' => '%e. %B %Y'
53
+ DATE_FMT_LONG = Hash.new { |h, k| h[k] = '%-d %B %Y' }.update(
54
+ 'de' => '%-d. %B %Y'
55
55
  )
56
56
 
57
- DATE_FMT_SHORT = Hash.new { |h, k| h[k] = '%e %b %Y' }.update(
58
- 'de' => '%e. %b %Y'
57
+ DATE_FMT_SHORT = Hash.new { |h, k| h[k] = '%-d %b %Y' }.update(
58
+ 'de' => '%-d. %b %Y'
59
59
  )
60
60
 
61
61
  MONTHNAMES = Hash.new { |h, k| h[k] = Date::MONTHNAMES }.update(
@@ -6,7 +6,7 @@ module Jekyll
6
6
 
7
7
  MAJOR = 0
8
8
  MINOR = 1
9
- TINY = 4
9
+ TINY = 5
10
10
 
11
11
  class << self
12
12
 
metadata CHANGED
@@ -1,95 +1,80 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: jekyll-localization
3
- version: !ruby/object:Gem::Version
4
- hash: 19
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.5
5
5
  prerelease:
6
- segments:
7
- - 0
8
- - 1
9
- - 4
10
- version: 0.1.4
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Jens Wille
14
9
  - Arne Eilermann
15
10
  autorequire:
16
11
  bindir: bin
17
12
  cert_chain: []
18
-
19
- date: 2012-04-18 00:00:00 Z
20
- dependencies:
21
- - !ruby/object:Gem::Dependency
13
+ date: 2012-05-23 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
22
16
  name: jekyll-rendering
23
- prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
17
+ requirement: !ruby/object:Gem::Requirement
25
18
  none: false
26
- requirements:
27
- - - ">="
28
- - !ruby/object:Gem::Version
29
- hash: 3
30
- segments:
31
- - 0
32
- version: "0"
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: '0'
33
23
  type: :runtime
34
- version_requirements: *id001
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ! '>='
29
+ - !ruby/object:Gem::Version
30
+ version: '0'
35
31
  description: Jekyll plugin that adds localization features to the rendering engine.
36
- email:
32
+ email:
37
33
  - jens.wille@uni-koeln.de
38
34
  - eilermann@lavabit.com
39
35
  executables: []
40
-
41
36
  extensions: []
42
-
43
- extra_rdoc_files:
37
+ extra_rdoc_files:
44
38
  - README
45
39
  - COPYING
46
40
  - ChangeLog
47
- files:
48
- - lib/jekyll/localization/version.rb
41
+ files:
49
42
  - lib/jekyll/localization.rb
50
- - ChangeLog
43
+ - lib/jekyll/localization/version.rb
51
44
  - COPYING
52
- - README
45
+ - ChangeLog
53
46
  - Rakefile
47
+ - README
54
48
  homepage: http://github.com/blackwinter/jekyll-localization
55
49
  licenses: []
56
-
57
50
  post_install_message:
58
- rdoc_options:
59
- - --main
60
- - README
51
+ rdoc_options:
61
52
  - --charset
62
53
  - UTF-8
54
+ - --line-numbers
63
55
  - --all
64
56
  - --title
65
- - jekyll-localization Application documentation (v0.1.4)
66
- - --line-numbers
67
- require_paths:
57
+ - jekyll-localization Application documentation (v0.1.5)
58
+ - --main
59
+ - README
60
+ require_paths:
68
61
  - lib
69
- required_ruby_version: !ruby/object:Gem::Requirement
62
+ required_ruby_version: !ruby/object:Gem::Requirement
70
63
  none: false
71
- requirements:
72
- - - ">="
73
- - !ruby/object:Gem::Version
74
- hash: 3
75
- segments:
76
- - 0
77
- version: "0"
78
- required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ! '>='
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ required_rubygems_version: !ruby/object:Gem::Requirement
79
69
  none: false
80
- requirements:
81
- - - ">="
82
- - !ruby/object:Gem::Version
83
- hash: 3
84
- segments:
85
- - 0
86
- version: "0"
70
+ requirements:
71
+ - - ! '>='
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
87
74
  requirements: []
88
-
89
75
  rubyforge_project:
90
- rubygems_version: 1.8.22
76
+ rubygems_version: 1.8.24
91
77
  signing_key:
92
78
  specification_version: 3
93
79
  summary: Jekyll plugin that adds localization features to the rendering engine.
94
80
  test_files: []
95
-