fesplugas-typus 0.9.2 → 0.9.3
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/README.rdoc +5 -5
- data/VERSION +1 -1
- data/lib/typus.rb +2 -1
- data/typus.gemspec +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
|
@@ -14,25 +14,25 @@ extensible enough to match lots of use cases.
|
|
|
14
14
|
|
|
15
15
|
== For the impatients: Demo in 3 steps
|
|
16
16
|
|
|
17
|
-
Step 1
|
|
17
|
+
Step 1: Create a Rails application using a template.
|
|
18
18
|
|
|
19
19
|
$ rails example.com -m http://intraducibles.com/projects/typus/demo.txt
|
|
20
20
|
|
|
21
|
-
Step 2
|
|
21
|
+
Step 2: Start the server:
|
|
22
22
|
|
|
23
23
|
$ cd example.com && script/server
|
|
24
24
|
|
|
25
|
-
Step 3
|
|
25
|
+
Step 3: Go to the admin area and enjoy it!
|
|
26
26
|
|
|
27
27
|
http://0.0.0.0:3000/admin
|
|
28
28
|
|
|
29
29
|
== Installing
|
|
30
30
|
|
|
31
|
-
*Plugin
|
|
31
|
+
*Plugin*: Install from GitHub the latest version which it's compatible with Rails 2.3.2.
|
|
32
32
|
|
|
33
33
|
$ script/plugin install git://github.com/fesplugas/typus.git
|
|
34
34
|
|
|
35
|
-
*Gem
|
|
35
|
+
*Gem*: Add *Typus* to your <tt>config/environment.rb</tt>.
|
|
36
36
|
|
|
37
37
|
config.gem 'fesplugas-typus', :lib => 'typus', :source => 'http://gems.github.com'
|
|
38
38
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.3
|
data/lib/typus.rb
CHANGED
|
@@ -104,7 +104,8 @@ module Typus
|
|
|
104
104
|
if plugin?
|
|
105
105
|
I18n.load_path += Dir[File.join("#{Rails.root}/vendor/plugins/typus/config/locales/**/*.{rb,yml}")]
|
|
106
106
|
else
|
|
107
|
-
|
|
107
|
+
# FIXME
|
|
108
|
+
Gem.path.each { |g| I18n.load_path += Dir[File.join("#{g}/gems/*typus*/config/locales/**/*.{rb,yml}")] }
|
|
108
109
|
end
|
|
109
110
|
|
|
110
111
|
# Require the test/models on when testing.
|
data/typus.gemspec
CHANGED