sinatra-r18n 0.4.6 → 0.4.7
Sign up to get free protection for your applications and to get access to all the features.
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sinatra-r18n
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 1
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 0
|
7
8
|
- 4
|
8
|
-
-
|
9
|
-
version: 0.4.
|
9
|
+
- 7
|
10
|
+
version: 0.4.7
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Andrey "A.I." Sitnik
|
@@ -14,21 +15,23 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date: 2010-
|
18
|
+
date: 2010-08-07 00:00:00 +04:00
|
18
19
|
default_executable:
|
19
20
|
dependencies:
|
20
21
|
- !ruby/object:Gem::Dependency
|
21
22
|
name: r18n-core
|
22
23
|
prerelease: false
|
23
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
24
26
|
requirements:
|
25
27
|
- - "="
|
26
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 1
|
27
30
|
segments:
|
28
31
|
- 0
|
29
32
|
- 4
|
30
|
-
-
|
31
|
-
version: 0.4.
|
33
|
+
- 7
|
34
|
+
version: 0.4.7
|
32
35
|
type: :runtime
|
33
36
|
version_requirements: *id001
|
34
37
|
description: " A Sinatra extension that provides i18n support to translate your web\n application. It is just a wrapper for R18n core library.\n It has nice Ruby-style syntax, filters, flexible locales, custom loaders,\n translation support for any classes, time and number localization, several\n user language support, agnostic core package with out-of-box support for\n Rails, Sinatra, Merb and desktop applications.\n"
|
@@ -44,6 +47,12 @@ files:
|
|
44
47
|
- lib/sinatra/r18n.rb
|
45
48
|
- LICENSE
|
46
49
|
- README.rdoc
|
50
|
+
- spec/spec_helper.rb
|
51
|
+
- spec/app/views/post.erb
|
52
|
+
- spec/app/i18n/en.yml
|
53
|
+
- spec/app/i18n/ru.yml
|
54
|
+
- spec/app/app.rb
|
55
|
+
- spec/sinatra-r18n_spec.rb
|
47
56
|
has_rdoc: true
|
48
57
|
homepage: http://r18n.rubyforge.org/
|
49
58
|
licenses: []
|
@@ -54,23 +63,27 @@ rdoc_options: []
|
|
54
63
|
require_paths:
|
55
64
|
- lib
|
56
65
|
required_ruby_version: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
57
67
|
requirements:
|
58
68
|
- - ">="
|
59
69
|
- !ruby/object:Gem::Version
|
70
|
+
hash: 3
|
60
71
|
segments:
|
61
72
|
- 0
|
62
73
|
version: "0"
|
63
74
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
none: false
|
64
76
|
requirements:
|
65
77
|
- - ">="
|
66
78
|
- !ruby/object:Gem::Version
|
79
|
+
hash: 3
|
67
80
|
segments:
|
68
81
|
- 0
|
69
82
|
version: "0"
|
70
83
|
requirements: []
|
71
84
|
|
72
85
|
rubyforge_project: sinatra-r18n
|
73
|
-
rubygems_version: 1.3.
|
86
|
+
rubygems_version: 1.3.7
|
74
87
|
signing_key:
|
75
88
|
specification_version: 3
|
76
89
|
summary: A Sinatra extension that provides i18n support to translate your web application.
|