acts_as_localizable 0.3.1 → 0.3.2
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 +2 -7
- data/README.textile +2 -5
- data/VERSION +1 -1
- data/acts_as_localizable.gemspec +1 -1
- metadata +3 -3
data/README
CHANGED
|
@@ -12,18 +12,13 @@ ActiveRecord
|
|
|
12
12
|
I18n
|
|
13
13
|
Rails( > 3.0.0beta4)
|
|
14
14
|
|
|
15
|
-
To install Acts As Localizable you can
|
|
16
|
-
|
|
17
|
-
rails plugin install git://git@github.com:just1word/acts_as_localizable.git
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
Or you can use the acts_as_localizable gem in your Gemfile or just install it.
|
|
15
|
+
To install Acts As Localizable you can install it as a gem.
|
|
21
16
|
|
|
22
17
|
|
|
23
18
|
gem install acts_as_localizable
|
|
24
19
|
|
|
25
20
|
|
|
26
|
-
Once the
|
|
21
|
+
Once the gem is installed you need to create the LocalizedField table in your project. To do this run:
|
|
27
22
|
|
|
28
23
|
|
|
29
24
|
rails generate localized_fields
|
data/README.textile
CHANGED
|
@@ -10,14 +10,11 @@ ActiveRecord
|
|
|
10
10
|
I18n
|
|
11
11
|
Rails( > 3.0.0beta4)
|
|
12
12
|
|
|
13
|
-
To install Acts As Localizable you can
|
|
14
|
-
<pre><code>rails plugin install git://git@github.com:just1word/acts_as_localizable.git</code></pre>
|
|
15
|
-
|
|
16
|
-
Or you can use the acts_as_localizable gem in your Gemfile or just install it.
|
|
13
|
+
To install Acts As Localizable you can install it as a gem.
|
|
17
14
|
|
|
18
15
|
<pre><code>gem install acts_as_localizable</code></pre>
|
|
19
16
|
|
|
20
|
-
Once the
|
|
17
|
+
Once the gem is installed you need to create the LocalizedField table in your project. To do this run:
|
|
21
18
|
|
|
22
19
|
<pre><code>
|
|
23
20
|
rails generate localized_fields
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.2
|
data/acts_as_localizable.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acts_as_localizable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.3.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- davydotcom
|