manuscript 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/config.ru +2 -2
- data/manuscript.gemspec +1 -1
- data/views/template.haml +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -38,7 +38,7 @@ In the repository directory, edit the file called <tt>config.ru</tt> to match yo
|
|
38
38
|
require 'rubygems'
|
39
39
|
require 'manuscript'
|
40
40
|
|
41
|
-
ActiveRecord::Base.establish_connection :adapter => 'sqlite3', :database => 'manuscript.sqlite3.db'
|
41
|
+
ActiveRecord::Base.establish_connection :adapter => 'sqlite3', :database => 'manuscript.sqlite3.db', :encoding => 'UTF-8'
|
42
42
|
|
43
43
|
use Rack::Session::Cookie
|
44
44
|
use Rack::Static, :urls => ["/template_files"]
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.5
|
data/config.ru
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
|
1
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__),'lib'))
|
2
2
|
require 'manuscript'
|
3
3
|
|
4
|
-
ActiveRecord::Base.establish_connection :adapter => 'sqlite3', :database => 'manuscript.sqlite3.db'
|
4
|
+
ActiveRecord::Base.establish_connection :adapter => 'sqlite3', :database => 'manuscript.sqlite3.db', :encoding => 'UTF-8'
|
5
5
|
|
6
6
|
use Rack::Session::Cookie
|
7
7
|
use Rack::Static, :urls => ["/template_files"]
|
data/manuscript.gemspec
CHANGED
data/views/template.haml
CHANGED