plato 0.0.0 → 0.0.1

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.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/bin/plato +6 -0
  3. data/plato.gemspec +57 -0
  4. metadata +8 -6
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.0
1
+ 0.0.1
data/bin/plato ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'plato'
4
+
5
+ # bare-bones for now...
6
+ Plato::Site.new.generate!
data/plato.gemspec ADDED
@@ -0,0 +1,57 @@
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{plato}
8
+ s.version = "0.0.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Matt Freels"]
12
+ s.date = %q{2010-08-10}
13
+ s.default_executable = %q{plato}
14
+ s.description = %q{use templates and content to generate static sites.}
15
+ s.email = %q{matt@freels.name}
16
+ s.executables = ["plato"]
17
+ s.files = [
18
+ ".gitignore",
19
+ "Rakefile",
20
+ "VERSION",
21
+ "bin/plato",
22
+ "lib/plato.rb",
23
+ "lib/plato/config.rb",
24
+ "lib/plato/document.rb",
25
+ "lib/plato/manifest.rb",
26
+ "lib/plato/path_template.rb",
27
+ "lib/plato/rendering.rb",
28
+ "lib/plato/repo.rb",
29
+ "lib/plato/site.rb",
30
+ "plato.gemspec"
31
+ ]
32
+ s.homepage = %q{http://github.com/freels/plato}
33
+ s.rdoc_options = ["--charset=UTF-8"]
34
+ s.require_paths = ["lib"]
35
+ s.rubygems_version = %q{1.3.7}
36
+ s.summary = %q{An ideal static site generator}
37
+
38
+ if s.respond_to? :specification_version then
39
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
40
+ s.specification_version = 3
41
+
42
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
43
+ s.add_runtime_dependency(%q<tilt>, [">= 1.0.1"])
44
+ s.add_development_dependency(%q<rspec>, [">= 0"])
45
+ s.add_development_dependency(%q<rr>, [">= 0"])
46
+ else
47
+ s.add_dependency(%q<tilt>, [">= 1.0.1"])
48
+ s.add_dependency(%q<rspec>, [">= 0"])
49
+ s.add_dependency(%q<rr>, [">= 0"])
50
+ end
51
+ else
52
+ s.add_dependency(%q<tilt>, [">= 1.0.1"])
53
+ s.add_dependency(%q<rspec>, [">= 0"])
54
+ s.add_dependency(%q<rr>, [">= 0"])
55
+ end
56
+ end
57
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plato
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 0
10
- version: 0.0.0
9
+ - 1
10
+ version: 0.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matt Freels
@@ -16,7 +16,7 @@ bindir: bin
16
16
  cert_chain: []
17
17
 
18
18
  date: 2010-08-10 00:00:00 -07:00
19
- default_executable:
19
+ default_executable: plato
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  name: tilt
@@ -64,8 +64,8 @@ dependencies:
64
64
  version_requirements: *id003
65
65
  description: use templates and content to generate static sites.
66
66
  email: matt@freels.name
67
- executables: []
68
-
67
+ executables:
68
+ - plato
69
69
  extensions: []
70
70
 
71
71
  extra_rdoc_files: []
@@ -74,6 +74,7 @@ files:
74
74
  - .gitignore
75
75
  - Rakefile
76
76
  - VERSION
77
+ - bin/plato
77
78
  - lib/plato.rb
78
79
  - lib/plato/config.rb
79
80
  - lib/plato/document.rb
@@ -82,6 +83,7 @@ files:
82
83
  - lib/plato/rendering.rb
83
84
  - lib/plato/repo.rb
84
85
  - lib/plato/site.rb
86
+ - plato.gemspec
85
87
  has_rdoc: true
86
88
  homepage: http://github.com/freels/plato
87
89
  licenses: []