ceilingfish-toto 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/ceilingfish-toto.gemspec +79 -0
  3. data/lib/toto.rb +1 -1
  4. metadata +3 -2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.2
1
+ 0.4.3
@@ -0,0 +1,79 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{ceilingfish-toto}
8
+ s.version = "0.4.3"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["cloudhead", "ceilingfish"]
12
+ s.date = %q{2010-02-24}
13
+ s.description = %q{the tiniest blog-engine in Oz.}
14
+ s.email = %q{ceilingfish@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.md"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.md",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "ceilingfish-toto.gemspec",
27
+ "lib/ceilingfish-toto.rb",
28
+ "lib/ext/ext.rb",
29
+ "lib/toto.rb",
30
+ "test/articles/some-random-article.txt",
31
+ "test/articles/the-dichotomy-of-design.txt",
32
+ "test/articles/the-wonderful-wizard-of-oz.txt",
33
+ "test/articles/tilt-factor.txt",
34
+ "test/articles/two-thousand-and-one.txt",
35
+ "test/autotest.rb",
36
+ "test/templates/about.rhtml",
37
+ "test/templates/archives.rhtml",
38
+ "test/templates/article.rhtml",
39
+ "test/templates/feed.builder",
40
+ "test/templates/index.rhtml",
41
+ "test/templates/layout.rhtml",
42
+ "test/templates/repo.rhtml",
43
+ "test/test_helper.rb",
44
+ "test/toto_test.rb"
45
+ ]
46
+ s.homepage = %q{http://github.com/ceilingfish/toto}
47
+ s.rdoc_options = ["--charset=UTF-8"]
48
+ s.require_paths = ["lib"]
49
+ s.rubygems_version = %q{1.3.5}
50
+ s.summary = %q{the tiniest blog-engine in Oz}
51
+ s.test_files = [
52
+ "test/autotest.rb",
53
+ "test/test_helper.rb",
54
+ "test/toto_test.rb"
55
+ ]
56
+
57
+ if s.respond_to? :specification_version then
58
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
59
+ s.specification_version = 3
60
+
61
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
62
+ s.add_development_dependency(%q<riot>, [">= 0"])
63
+ s.add_runtime_dependency(%q<builder>, [">= 0"])
64
+ s.add_runtime_dependency(%q<rack>, [">= 0"])
65
+ s.add_runtime_dependency(%q<rdiscount>, [">= 0"])
66
+ else
67
+ s.add_dependency(%q<riot>, [">= 0"])
68
+ s.add_dependency(%q<builder>, [">= 0"])
69
+ s.add_dependency(%q<rack>, [">= 0"])
70
+ s.add_dependency(%q<rdiscount>, [">= 0"])
71
+ end
72
+ else
73
+ s.add_dependency(%q<riot>, [">= 0"])
74
+ s.add_dependency(%q<builder>, [">= 0"])
75
+ s.add_dependency(%q<rack>, [">= 0"])
76
+ s.add_dependency(%q<rdiscount>, [">= 0"])
77
+ end
78
+ end
79
+
data/lib/toto.rb CHANGED
@@ -67,7 +67,7 @@ module Toto
67
67
 
68
68
  def archives filter = ""
69
69
  entries = ! self.articles.empty??
70
- self.articles.select do |a|
70
+ self.articles.reverse.select do |a|
71
71
  filter !~ /^\d{4}/ || a.path =~ /^\/#{filter}/
72
72
  end : []
73
73
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ceilingfish-toto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - cloudhead
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2010-02-23 00:00:00 +00:00
13
+ date: 2010-02-24 00:00:00 +00:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -69,6 +69,7 @@ files:
69
69
  - README.md
70
70
  - Rakefile
71
71
  - VERSION
72
+ - ceilingfish-toto.gemspec
72
73
  - lib/ceilingfish-toto.rb
73
74
  - lib/ext/ext.rb
74
75
  - lib/toto.rb