gettext_i18n_rails 0.3.0 → 0.3.1
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/Gemfile +1 -0
- data/Gemfile.lock +5 -1
- data/Rakefile +3 -3
- data/VERSION +1 -1
- data/gettext_i18n_rails.gemspec +5 -2
- metadata +19 -5
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -84,10 +84,13 @@ GEM
|
|
|
84
84
|
rspec-expectations (2.6.0)
|
|
85
85
|
diff-lcs (~> 1.1.2)
|
|
86
86
|
rspec-mocks (2.6.0)
|
|
87
|
+
ruby_parser (2.3.1)
|
|
88
|
+
sexp_processor (~> 3.0)
|
|
89
|
+
sexp_processor (3.0.8)
|
|
87
90
|
sprockets (2.0.0)
|
|
88
91
|
hike (~> 1.2)
|
|
89
92
|
rack (~> 1.0)
|
|
90
|
-
tilt (
|
|
93
|
+
tilt (~> 1.1, != 1.3.0)
|
|
91
94
|
sqlite3 (1.3.4)
|
|
92
95
|
thor (0.14.6)
|
|
93
96
|
tilt (1.3.3)
|
|
@@ -105,4 +108,5 @@ DEPENDENCIES
|
|
|
105
108
|
rails (~> 3)
|
|
106
109
|
rake
|
|
107
110
|
rspec (~> 2)
|
|
111
|
+
ruby_parser
|
|
108
112
|
sqlite3 (~> 1.3.4)
|
data/Rakefile
CHANGED
|
@@ -3,9 +3,9 @@ task :spec do
|
|
|
3
3
|
end
|
|
4
4
|
|
|
5
5
|
task :default do
|
|
6
|
-
sh "RAILS=2.3.14 bundle && bundle exec rake spec"
|
|
7
|
-
sh "RAILS=3.0.9 bundle && bundle exec rake spec"
|
|
8
|
-
sh "RAILS=3.1.0 bundle && bundle exec rake spec"
|
|
6
|
+
sh "RAILS=2.3.14 && (bundle || bundle install) && bundle exec rake spec"
|
|
7
|
+
sh "RAILS=3.0.9 && (bundle || bundle install) && bundle exec rake spec"
|
|
8
|
+
sh "RAILS=3.1.0 && (bundle || bundle install) && bundle exec rake spec"
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
begin
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.1
|
data/gettext_i18n_rails.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{gettext_i18n_rails}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Michael Grosser"]
|
|
12
|
-
s.date = %q{2011-
|
|
12
|
+
s.date = %q{2011-12-01}
|
|
13
13
|
s.email = %q{grosser.michael@gmail.com}
|
|
14
14
|
s.files = [
|
|
15
15
|
"Gemfile",
|
|
@@ -49,11 +49,14 @@ Gem::Specification.new do |s|
|
|
|
49
49
|
|
|
50
50
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
51
51
|
s.add_runtime_dependency(%q<fast_gettext>, [">= 0"])
|
|
52
|
+
s.add_runtime_dependency(%q<ruby_parser>, [">= 0"])
|
|
52
53
|
else
|
|
53
54
|
s.add_dependency(%q<fast_gettext>, [">= 0"])
|
|
55
|
+
s.add_dependency(%q<ruby_parser>, [">= 0"])
|
|
54
56
|
end
|
|
55
57
|
else
|
|
56
58
|
s.add_dependency(%q<fast_gettext>, [">= 0"])
|
|
59
|
+
s.add_dependency(%q<ruby_parser>, [">= 0"])
|
|
57
60
|
end
|
|
58
61
|
end
|
|
59
62
|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gettext_i18n_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 17
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.3.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Michael Grosser
|
|
@@ -15,10 +15,11 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
18
|
+
date: 2011-12-01 00:00:00 -08:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
22
|
+
type: :runtime
|
|
22
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
23
24
|
none: false
|
|
24
25
|
requirements:
|
|
@@ -28,10 +29,23 @@ dependencies:
|
|
|
28
29
|
segments:
|
|
29
30
|
- 0
|
|
30
31
|
version: "0"
|
|
31
|
-
type: :runtime
|
|
32
32
|
name: fast_gettext
|
|
33
33
|
version_requirements: *id001
|
|
34
34
|
prerelease: false
|
|
35
|
+
- !ruby/object:Gem::Dependency
|
|
36
|
+
type: :runtime
|
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
38
|
+
none: false
|
|
39
|
+
requirements:
|
|
40
|
+
- - ">="
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
hash: 3
|
|
43
|
+
segments:
|
|
44
|
+
- 0
|
|
45
|
+
version: "0"
|
|
46
|
+
name: ruby_parser
|
|
47
|
+
version_requirements: *id002
|
|
48
|
+
prerelease: false
|
|
35
49
|
description:
|
|
36
50
|
email: grosser.michael@gmail.com
|
|
37
51
|
executables: []
|