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.
Files changed (5) hide show
  1. data/README.rdoc +5 -5
  2. data/VERSION +1 -1
  3. data/lib/typus.rb +2 -1
  4. data/typus.gemspec +1 -1
  5. 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. Create a Rails application using a template.
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. Start the server:
21
+ Step 2: Start the server:
22
22
 
23
23
  $ cd example.com && script/server
24
24
 
25
- Step 3. Go to the admin area and enjoy it!
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:* Install from GitHub the latest version which it's compatible with Rails 2.3.2.
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:* Add *Typus* to your `config/environment.rb`.
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.2
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
- Gem.path.each { |g| I18n.load_path += Dir[File.join("#{g}/gems/typus-**/config/locales/**/*.{rb,yml}")] }
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{typus}
5
- s.version = "0.9.2"
5
+ s.version = "0.9.3"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Francesc Esplugas"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fesplugas-typus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.2
4
+ version: 0.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francesc Esplugas