manuscript 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -71,6 +71,11 @@ shown above.
71
71
 
72
72
  Template files will be saved into a directory '/template_files' alongside <tt>config.ru</tt>. They'll also be served from there. Now deploy away.
73
73
 
74
+ == Development plans
75
+
76
+ Expect to see editable stylesheet and javascript template files, as well as special processing for images. Page caching is also a priority. If you have others
77
+ you'd like to see, please file an issue.
78
+
74
79
  == Note on Patches/Pull Requests
75
80
 
76
81
  * Fork the project.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.3
1
+ 0.1.4
@@ -5,5 +5,11 @@ module Manuscript
5
5
  raise Sinatra::NotFound unless @page
6
6
  @page.to_html
7
7
  end
8
+
9
+ get "/" do
10
+ @page = Page.find_by_name('index')
11
+ raise Sinatra::NotFound unless @page
12
+ @page.to_html
13
+ end
8
14
  end
9
15
  end
data/manuscript.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{manuscript}
8
- s.version = "0.1.3"
8
+ s.version = "0.1.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["hotink"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: manuscript
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - hotink