i18n_screwdriver 0.1.0 → 0.1.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/VERSION +1 -1
- data/i18n_screwdriver.gemspec +2 -1
- data/init.rb +1 -0
- data/lib/i18n_screwdriver.rb +1 -8
- metadata +4 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/i18n_screwdriver.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{i18n_screwdriver}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Tobias Miesel"]
|
|
@@ -22,6 +22,7 @@ Gem::Specification.new do |s|
|
|
|
22
22
|
"Rakefile",
|
|
23
23
|
"VERSION",
|
|
24
24
|
"i18n_screwdriver.gemspec",
|
|
25
|
+
"init.rb",
|
|
25
26
|
"lib/i18n_screwdriver.rb",
|
|
26
27
|
"tasks/i18n.rake",
|
|
27
28
|
"test/helper.rb",
|
data/init.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ActionView::Base.send :include, I18n::Screwdriver
|
data/lib/i18n_screwdriver.rb
CHANGED
|
@@ -12,11 +12,4 @@ module I18n
|
|
|
12
12
|
end
|
|
13
13
|
end
|
|
14
14
|
end
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
ActionController::Base.send :include, I18n::Screwdriver
|
|
18
|
-
ActionView::Helpers::TranslationHelper.send :include, I18n::Screwdriver
|
|
19
|
-
# make helper available in tests
|
|
20
|
-
ActionController::TestCase.send :include, I18n::Screwdriver
|
|
21
|
-
ActiveSupport::TestCase.send :include, I18n::Screwdriver
|
|
22
|
-
ActionController::IntegrationTest.send :include, I18n::Screwdriver
|
|
15
|
+
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: i18n_screwdriver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Tobias Miesel
|
|
@@ -140,6 +140,7 @@ files:
|
|
|
140
140
|
- Rakefile
|
|
141
141
|
- VERSION
|
|
142
142
|
- i18n_screwdriver.gemspec
|
|
143
|
+
- init.rb
|
|
143
144
|
- lib/i18n_screwdriver.rb
|
|
144
145
|
- tasks/i18n.rake
|
|
145
146
|
- test/helper.rb
|