jpmobile 0.0.8 → 0.1.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +0 -3
- data/{spec/spec.opts → .rspec} +1 -2
- data/README.rdoc +122 -128
- data/Rakefile +23 -101
- data/VERSION.yml +4 -3
- data/jpmobile.gemspec +130 -182
- data/lib/jpmobile.rb +37 -24
- data/lib/jpmobile/docomo_guid.rb +2 -1
- data/lib/jpmobile/email.rb +3 -4
- data/lib/jpmobile/emoticon.rb +2 -6
- data/lib/jpmobile/encoding.rb +29 -0
- data/lib/jpmobile/filter.rb +42 -134
- data/lib/jpmobile/helpers.rb +5 -18
- data/lib/jpmobile/hook_action_controller.rb +24 -16
- data/lib/jpmobile/hook_action_view.rb +28 -89
- data/lib/jpmobile/mobile/abstract_mobile.rb +21 -4
- data/lib/jpmobile/mobile/android.rb +10 -0
- data/lib/jpmobile/mobile/au.rb +28 -3
- data/lib/jpmobile/mobile/ddipocket.rb +12 -0
- data/lib/jpmobile/mobile/display.rb +29 -26
- data/lib/jpmobile/mobile/docomo.rb +38 -12
- data/lib/jpmobile/mobile/iphone.rb +26 -0
- data/lib/jpmobile/mobile/smart_phone.rb +21 -0
- data/lib/jpmobile/mobile/softbank.rb +16 -41
- data/lib/jpmobile/mobile/vodafone.rb +17 -0
- data/lib/jpmobile/mobile/willcom.rb +1 -10
- data/lib/jpmobile/mobile/windows_phone.rb +10 -0
- data/lib/jpmobile/position.rb +4 -3
- data/lib/jpmobile/rack.rb +43 -0
- data/lib/jpmobile/rack/filter.rb +51 -0
- data/lib/jpmobile/rack/mobile_carrier.rb +33 -0
- data/lib/jpmobile/rack/params_filter.rb +47 -0
- data/lib/jpmobile/rails.rb +22 -0
- data/lib/jpmobile/request_with_mobile.rb +8 -12
- data/lib/jpmobile/trans_sid.rb +44 -26
- data/lib/jpmobile/util.rb +68 -0
- data/{tasks → lib/tasks}/jpmobile_tasks.rake +32 -13
- data/spec/rack/jpmobile/android_spec.rb +20 -0
- data/spec/rack/jpmobile/au_spec.rb +206 -0
- data/spec/rack/jpmobile/docomo_spec.rb +237 -0
- data/spec/rack/jpmobile/emoticon_spec.rb +215 -0
- data/spec/rack/jpmobile/filter_spec.rb +181 -0
- data/spec/rack/jpmobile/iphone_spec.rb +32 -0
- data/spec/rack/jpmobile/mobile_by_ua_spec.rb +39 -0
- data/spec/rack/jpmobile/params_filter_spec.rb +193 -0
- data/spec/rack/jpmobile/softbank_spec.rb +123 -0
- data/spec/rack/jpmobile/willcom_spec.rb +67 -0
- data/spec/rack/jpmobile/windows_phone.rb +20 -0
- data/spec/rack_helper.rb +86 -0
- data/spec/spec_helper.rb +3 -2
- data/spec/unit/detect_by_email_spec.rb +21 -27
- data/spec/unit/is_carrier_spec.rb +56 -84
- data/spec/unit/spec_helper.rb +1 -2
- data/spec/unit/util_spec.rb +2 -2
- data/spec/unit/valid_ip_spec.rb +43 -52
- data/test/legacy/autoload_test.rb +1 -3
- data/test/legacy/emoticon_test.rb +5 -6
- data/test/legacy/helper.rb +0 -71
- data/test/rails/overrides/.rspec +5 -0
- data/test/rails/overrides/Gemfile +32 -0
- data/test/rails/overrides/app/controllers/docomo_guid_always_controller.rb +3 -0
- data/test/rails/overrides/app/controllers/docomo_guid_base_controller.rb +5 -0
- data/test/rails/overrides/app/controllers/docomo_guid_docomo_controller.rb +3 -0
- data/test/rails/overrides/app/controllers/filter_controller.rb +0 -34
- data/test/rails/overrides/app/controllers/filter_controller_base.rb +19 -0
- data/test/rails/overrides/app/controllers/hankaku_filter_controller.rb +3 -0
- data/test/rails/overrides/app/controllers/links_controller.rb +28 -0
- data/test/rails/overrides/app/controllers/mobile_spec_controller.rb +1 -1
- data/test/rails/overrides/app/controllers/template_path_controller.rb +3 -0
- data/test/rails/overrides/app/controllers/trans_sid_always_and_session_off_controller.rb +4 -0
- data/test/rails/overrides/app/controllers/trans_sid_always_controller.rb +3 -0
- data/test/rails/overrides/app/controllers/trans_sid_base_controller.rb +18 -0
- data/test/rails/overrides/app/controllers/trans_sid_mobile_controller.rb +3 -0
- data/test/rails/overrides/app/controllers/trans_sid_none_controller.rb +3 -0
- data/test/rails/overrides/app/views/links/au_gps.html.erb +1 -0
- data/test/rails/overrides/app/views/links/au_location.html.erb +1 -0
- data/test/rails/overrides/app/views/links/docomo_foma_gps.html.erb +1 -0
- data/test/rails/overrides/app/views/links/docomo_openiarea.html.erb +1 -0
- data/test/rails/overrides/app/views/links/docomo_utn.html.erb +1 -0
- data/test/rails/overrides/app/views/links/link.html.erb +1 -0
- data/test/rails/overrides/app/views/links/show_all.html.erb +1 -0
- data/test/rails/overrides/app/views/links/softbank_location.html.erb +1 -0
- data/test/rails/overrides/app/views/links/willcom_location.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/_partial_smart_phone.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/_partial_smart_phone_iphone.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/index_smart_phone.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/index_smart_phone_iphone.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/show_mobile.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/show_mobile_docomo.html.erb +1 -0
- data/test/rails/overrides/autotest/discover.rb +2 -0
- data/test/rails/overrides/config/initializers/jpmobile_generator.rb +1 -0
- data/test/rails/overrides/config/routes.rb +58 -0
- data/test/rails/overrides/db/migrate/001_add_sessions_table.rb +16 -0
- data/test/rails/overrides/spec/helpers/helpers_spec.rb +2 -2
- data/test/rails/overrides/spec/{controllers → requests}/docomo_guid_spec.rb +37 -14
- data/test/rails/overrides/spec/{controllers → requests}/docomo_spec.rb +11 -8
- data/test/rails/overrides/spec/{controllers → requests}/emobile_spec.rb +24 -8
- data/test/rails/overrides/spec/requests/filter_spec.rb +171 -0
- data/test/rails/overrides/spec/requests/helpers_spec.rb +187 -0
- data/test/rails/overrides/spec/requests/pc_spec.rb +22 -0
- data/test/rails/overrides/spec/requests/softbank_emulator_spec.rb +21 -0
- data/test/rails/overrides/spec/requests/template_path_spec.rb +234 -0
- data/test/rails/overrides/spec/requests/trans_sid_spec.rb +142 -0
- data/test/rails/overrides/spec/spec_helper.rb +17 -48
- data/test/sinatra/guestbook.rb +40 -0
- data/test/sinatra/test/filter_test.rb +39 -0
- metadata +185 -312
- data/lib/jpmobile/hook_request.rb +0 -5
- data/lib/jpmobile/rack/auth.rb +0 -55
- data/lib/jpmobile/rack/combined_logger.rb +0 -54
- data/lib/jpmobile/rack/request.rb +0 -7
- data/lib/jpmobile/rack/trans_sid.rb +0 -14
- data/lib/jpmobile/version.rb +0 -9
- data/spec/unit/detect_by_ua_spec.rb +0 -40
- data/test/legacy/au_test.rb +0 -173
- data/test/legacy/docomo_test.rb +0 -187
- data/test/legacy/emoticon_functional_test.rb +0 -195
- data/test/legacy/filter_test.rb +0 -34
- data/test/legacy/helpers_test.rb +0 -217
- data/test/legacy/softbank_test.rb +0 -183
- data/test/legacy/willcom_test.rb +0 -56
- data/test/rails/2.3.2/spec/controllers/trans_sid_spec.rb +0 -99
- data/test/rails/overrides/app/controllers/docomo_guid_controller.rb +0 -13
- data/test/rails/overrides/app/controllers/trans_sid_controller.rb +0 -28
- data/test/rails/overrides/lib/tasks/rspec.rake +0 -165
- data/test/rails/overrides/spec/controllers/filter_spec.rb +0 -159
- data/test/rails/overrides/spec/controllers/pc_spec.rb +0 -13
- data/test/rails/overrides/spec/controllers/softbank_emulator_spec.rb +0 -42
- data/test/rails/overrides/spec/controllers/template_path_spec.rb +0 -117
- data/test/rails/overrides/spec/controllers/trans_sid_spec.rb +0 -117
- data/test/rails/overrides/spec/rspec.rake +0 -165
- data/test/rails/overrides/spec/spec.opts +0 -4
@@ -0,0 +1,40 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'sinatra'
|
3
|
+
require 'jpmobile'
|
4
|
+
require 'jpmobile/rack'
|
5
|
+
require 'singleton'
|
6
|
+
require 'pp'
|
7
|
+
|
8
|
+
require 'jpmobile'
|
9
|
+
require 'jpmobile/rack'
|
10
|
+
|
11
|
+
class SinatraTestHelper
|
12
|
+
include Singleton
|
13
|
+
attr_accessor :last_app
|
14
|
+
end
|
15
|
+
|
16
|
+
class Guestbook < Sinatra::Base
|
17
|
+
use Jpmobile::Rack::MobileCarrier
|
18
|
+
use Jpmobile::Rack::ParamsFilter
|
19
|
+
use Jpmobile::Rack::Filter
|
20
|
+
|
21
|
+
def call(env)
|
22
|
+
_dup = dup
|
23
|
+
SinatraTestHelper.instance.last_app = _dup
|
24
|
+
_dup.call!(env)
|
25
|
+
end
|
26
|
+
|
27
|
+
def assigns(sym)
|
28
|
+
instance_variable_get("@#{sym}")
|
29
|
+
end
|
30
|
+
|
31
|
+
get '/' do
|
32
|
+
@g = params[:g]
|
33
|
+
end
|
34
|
+
|
35
|
+
post '/' do
|
36
|
+
@p = params[:p]
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
Guestbook.run
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'guestbook'
|
3
|
+
require 'rack/test'
|
4
|
+
require 'test/unit'
|
5
|
+
|
6
|
+
class SinatraOnJpmobile < Test::Unit::TestCase
|
7
|
+
include Rack::Test::Methods
|
8
|
+
include Jpmobile::Util
|
9
|
+
|
10
|
+
def app
|
11
|
+
Guestbook
|
12
|
+
end
|
13
|
+
|
14
|
+
def last_app
|
15
|
+
SinatraTestHelper.instance.last_app
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_not_convert_pc_get
|
19
|
+
get '/', {:g => Jpmobile::Util.sjis("万葉")}, {}
|
20
|
+
assert_equal last_response.body, "万葉"
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_not_convert_pc_post
|
24
|
+
post '/', {:p => Jpmobile::Util.utf8("けーたい")}, {}
|
25
|
+
assert_equal last_response.body, "けーたい"
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_docomo_get_convert_to_utf8
|
29
|
+
get '/', {:g => utf8_to_sjis("万葉")}, {"HTTP_USER_AGENT" => "DoCoMo/2.0 SH902i(c100;TB;W24H12)"}
|
30
|
+
assert_equal last_app.assigns(:g), "万葉"
|
31
|
+
assert_equal last_response.body, utf8_to_sjis("万葉")
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_docomo_post_convert_to_utf8
|
35
|
+
post '/', {:p => utf8_to_sjis("けーたい")}, {"HTTP_USER_AGENT" => "DoCoMo/2.0 SH902i(c100;TB;W24H12)"}
|
36
|
+
assert_equal last_app.assigns(:p), "けーたい"
|
37
|
+
assert_equal last_response.body, utf8_to_sjis("けーたい")
|
38
|
+
end
|
39
|
+
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jpmobile
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease: false
|
4
|
+
prerelease: true
|
6
5
|
segments:
|
7
6
|
- 0
|
7
|
+
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- pre
|
10
|
+
version: 0.1.0.pre
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Yoji Shidara
|
@@ -16,10 +16,69 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2010-
|
19
|
+
date: 2010-07-28 00:00:00 +09:00
|
20
20
|
default_executable:
|
21
|
-
dependencies:
|
22
|
-
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
23
|
+
name: rspec
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
segments:
|
31
|
+
- 1
|
32
|
+
- 3
|
33
|
+
- 0
|
34
|
+
version: 1.3.0
|
35
|
+
type: :development
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: rspec-rails
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
segments:
|
46
|
+
- 1
|
47
|
+
- 3
|
48
|
+
- 2
|
49
|
+
version: 1.3.2
|
50
|
+
type: :development
|
51
|
+
version_requirements: *id002
|
52
|
+
- !ruby/object:Gem::Dependency
|
53
|
+
name: rspec-fixture
|
54
|
+
prerelease: false
|
55
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
segments:
|
61
|
+
- 0
|
62
|
+
- 0
|
63
|
+
- 2
|
64
|
+
version: 0.0.2
|
65
|
+
type: :development
|
66
|
+
version_requirements: *id003
|
67
|
+
- !ruby/object:Gem::Dependency
|
68
|
+
name: jeweler
|
69
|
+
prerelease: false
|
70
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
segments:
|
76
|
+
- 1
|
77
|
+
- 4
|
78
|
+
- 0
|
79
|
+
version: 1.4.0
|
80
|
+
type: :development
|
81
|
+
version_requirements: *id004
|
23
82
|
description: A Rails plugin for Japanese mobile-phones
|
24
83
|
email: dara@shidara.net
|
25
84
|
executables: []
|
@@ -30,6 +89,7 @@ extra_rdoc_files:
|
|
30
89
|
- README.rdoc
|
31
90
|
files:
|
32
91
|
- .gitignore
|
92
|
+
- .rspec
|
33
93
|
- CHANGELOG
|
34
94
|
- MIT-LICENSE
|
35
95
|
- README.rdoc
|
@@ -48,18 +108,24 @@ files:
|
|
48
108
|
- lib/jpmobile/emoticon/docomo.rb
|
49
109
|
- lib/jpmobile/emoticon/softbank.rb
|
50
110
|
- lib/jpmobile/emoticon/z_combine.rb
|
111
|
+
- lib/jpmobile/encoding.rb
|
51
112
|
- lib/jpmobile/filter.rb
|
52
113
|
- lib/jpmobile/helpers.rb
|
53
114
|
- lib/jpmobile/hook_action_controller.rb
|
54
115
|
- lib/jpmobile/hook_action_view.rb
|
55
|
-
- lib/jpmobile/hook_request.rb
|
56
116
|
- lib/jpmobile/mobile/abstract_mobile.rb
|
117
|
+
- lib/jpmobile/mobile/android.rb
|
57
118
|
- lib/jpmobile/mobile/au.rb
|
119
|
+
- lib/jpmobile/mobile/ddipocket.rb
|
58
120
|
- lib/jpmobile/mobile/display.rb
|
59
121
|
- lib/jpmobile/mobile/docomo.rb
|
60
122
|
- lib/jpmobile/mobile/emobile.rb
|
123
|
+
- lib/jpmobile/mobile/iphone.rb
|
124
|
+
- lib/jpmobile/mobile/smart_phone.rb
|
61
125
|
- lib/jpmobile/mobile/softbank.rb
|
126
|
+
- lib/jpmobile/mobile/vodafone.rb
|
62
127
|
- lib/jpmobile/mobile/willcom.rb
|
128
|
+
- lib/jpmobile/mobile/windows_phone.rb
|
63
129
|
- lib/jpmobile/mobile/z_display_info_docomo.rb
|
64
130
|
- lib/jpmobile/mobile/z_ip_addresses_au.rb
|
65
131
|
- lib/jpmobile/mobile/z_ip_addresses_docomo.rb
|
@@ -67,64 +133,96 @@ files:
|
|
67
133
|
- lib/jpmobile/mobile/z_ip_addresses_softbank.rb
|
68
134
|
- lib/jpmobile/mobile/z_ip_addresses_willcom.rb
|
69
135
|
- lib/jpmobile/position.rb
|
70
|
-
- lib/jpmobile/rack
|
71
|
-
- lib/jpmobile/rack/
|
72
|
-
- lib/jpmobile/rack/
|
73
|
-
- lib/jpmobile/rack/
|
136
|
+
- lib/jpmobile/rack.rb
|
137
|
+
- lib/jpmobile/rack/filter.rb
|
138
|
+
- lib/jpmobile/rack/mobile_carrier.rb
|
139
|
+
- lib/jpmobile/rack/params_filter.rb
|
140
|
+
- lib/jpmobile/rails.rb
|
74
141
|
- lib/jpmobile/request_with_mobile.rb
|
75
142
|
- lib/jpmobile/trans_sid.rb
|
76
143
|
- lib/jpmobile/util.rb
|
77
|
-
- lib/
|
78
|
-
- spec/
|
144
|
+
- lib/tasks/jpmobile_tasks.rake
|
145
|
+
- spec/rack/jpmobile/android_spec.rb
|
146
|
+
- spec/rack/jpmobile/au_spec.rb
|
147
|
+
- spec/rack/jpmobile/docomo_spec.rb
|
148
|
+
- spec/rack/jpmobile/emoticon_spec.rb
|
149
|
+
- spec/rack/jpmobile/filter_spec.rb
|
150
|
+
- spec/rack/jpmobile/iphone_spec.rb
|
151
|
+
- spec/rack/jpmobile/mobile_by_ua_spec.rb
|
152
|
+
- spec/rack/jpmobile/params_filter_spec.rb
|
153
|
+
- spec/rack/jpmobile/softbank_spec.rb
|
154
|
+
- spec/rack/jpmobile/willcom_spec.rb
|
155
|
+
- spec/rack/jpmobile/windows_phone.rb
|
156
|
+
- spec/rack_helper.rb
|
79
157
|
- spec/spec_helper.rb
|
80
158
|
- spec/unit/detect_by_email_spec.rb
|
81
|
-
- spec/unit/detect_by_ua_spec.rb
|
82
159
|
- spec/unit/is_carrier_spec.rb
|
83
160
|
- spec/unit/spec_helper.rb
|
84
161
|
- spec/unit/util_spec.rb
|
85
162
|
- spec/unit/valid_ip_spec.rb
|
86
|
-
- tasks/jpmobile_tasks.rake
|
87
|
-
- test/legacy/au_test.rb
|
88
163
|
- test/legacy/autoload_test.rb
|
89
|
-
- test/legacy/docomo_test.rb
|
90
|
-
- test/legacy/emoticon_functional_test.rb
|
91
164
|
- test/legacy/emoticon_test.rb
|
92
|
-
- test/legacy/filter_test.rb
|
93
165
|
- test/legacy/helper.rb
|
94
|
-
- test/legacy/helpers_test.rb
|
95
|
-
- test/legacy/softbank_test.rb
|
96
|
-
- test/legacy/willcom_test.rb
|
97
166
|
- test/rails/.gitignore
|
98
|
-
- test/rails/
|
167
|
+
- test/rails/overrides/.rspec
|
168
|
+
- test/rails/overrides/Gemfile
|
99
169
|
- test/rails/overrides/app/controllers/application_controller.rb
|
100
|
-
- test/rails/overrides/app/controllers/
|
170
|
+
- test/rails/overrides/app/controllers/docomo_guid_always_controller.rb
|
171
|
+
- test/rails/overrides/app/controllers/docomo_guid_base_controller.rb
|
172
|
+
- test/rails/overrides/app/controllers/docomo_guid_docomo_controller.rb
|
101
173
|
- test/rails/overrides/app/controllers/filter_controller.rb
|
174
|
+
- test/rails/overrides/app/controllers/filter_controller_base.rb
|
175
|
+
- test/rails/overrides/app/controllers/hankaku_filter_controller.rb
|
176
|
+
- test/rails/overrides/app/controllers/links_controller.rb
|
102
177
|
- test/rails/overrides/app/controllers/mobile_spec_controller.rb
|
103
178
|
- test/rails/overrides/app/controllers/template_path_controller.rb
|
104
|
-
- test/rails/overrides/app/controllers/
|
179
|
+
- test/rails/overrides/app/controllers/trans_sid_always_and_session_off_controller.rb
|
180
|
+
- test/rails/overrides/app/controllers/trans_sid_always_controller.rb
|
181
|
+
- test/rails/overrides/app/controllers/trans_sid_base_controller.rb
|
182
|
+
- test/rails/overrides/app/controllers/trans_sid_mobile_controller.rb
|
183
|
+
- test/rails/overrides/app/controllers/trans_sid_none_controller.rb
|
105
184
|
- test/rails/overrides/app/views/filter/index.html.erb
|
106
185
|
- test/rails/overrides/app/views/hankaku_filter/index.html.erb
|
186
|
+
- test/rails/overrides/app/views/links/au_gps.html.erb
|
187
|
+
- test/rails/overrides/app/views/links/au_location.html.erb
|
188
|
+
- test/rails/overrides/app/views/links/docomo_foma_gps.html.erb
|
189
|
+
- test/rails/overrides/app/views/links/docomo_openiarea.html.erb
|
190
|
+
- test/rails/overrides/app/views/links/docomo_utn.html.erb
|
191
|
+
- test/rails/overrides/app/views/links/link.html.erb
|
192
|
+
- test/rails/overrides/app/views/links/show_all.html.erb
|
193
|
+
- test/rails/overrides/app/views/links/softbank_location.html.erb
|
194
|
+
- test/rails/overrides/app/views/links/willcom_location.html.erb
|
107
195
|
- test/rails/overrides/app/views/template_path/_partial.html.erb
|
108
196
|
- test/rails/overrides/app/views/template_path/_partial_mobile.html.erb
|
109
197
|
- test/rails/overrides/app/views/template_path/_partial_mobile_docomo.html.erb
|
198
|
+
- test/rails/overrides/app/views/template_path/_partial_smart_phone.html.erb
|
199
|
+
- test/rails/overrides/app/views/template_path/_partial_smart_phone_iphone.html.erb
|
110
200
|
- test/rails/overrides/app/views/template_path/index.html.erb
|
111
201
|
- test/rails/overrides/app/views/template_path/index_mobile.html.erb
|
112
202
|
- test/rails/overrides/app/views/template_path/index_mobile_docomo.html.erb
|
203
|
+
- test/rails/overrides/app/views/template_path/index_smart_phone.html.erb
|
204
|
+
- test/rails/overrides/app/views/template_path/index_smart_phone_iphone.html.erb
|
113
205
|
- test/rails/overrides/app/views/template_path/partial.html.erb
|
114
|
-
- test/rails/overrides/
|
115
|
-
- test/rails/overrides/
|
116
|
-
- test/rails/overrides/
|
117
|
-
- test/rails/overrides/
|
118
|
-
- test/rails/overrides/
|
119
|
-
- test/rails/overrides/
|
120
|
-
- test/rails/overrides/spec/controllers/softbank_emulator_spec.rb
|
121
|
-
- test/rails/overrides/spec/controllers/template_path_spec.rb
|
122
|
-
- test/rails/overrides/spec/controllers/trans_sid_spec.rb
|
206
|
+
- test/rails/overrides/app/views/template_path/show_mobile.html.erb
|
207
|
+
- test/rails/overrides/app/views/template_path/show_mobile_docomo.html.erb
|
208
|
+
- test/rails/overrides/autotest/discover.rb
|
209
|
+
- test/rails/overrides/config/initializers/jpmobile_generator.rb
|
210
|
+
- test/rails/overrides/config/routes.rb
|
211
|
+
- test/rails/overrides/db/migrate/001_add_sessions_table.rb
|
123
212
|
- test/rails/overrides/spec/helpers/helpers_spec.rb
|
124
213
|
- test/rails/overrides/spec/rcov.opts
|
125
|
-
- test/rails/overrides/spec/
|
126
|
-
- test/rails/overrides/spec/
|
214
|
+
- test/rails/overrides/spec/requests/docomo_guid_spec.rb
|
215
|
+
- test/rails/overrides/spec/requests/docomo_spec.rb
|
216
|
+
- test/rails/overrides/spec/requests/emobile_spec.rb
|
217
|
+
- test/rails/overrides/spec/requests/filter_spec.rb
|
218
|
+
- test/rails/overrides/spec/requests/helpers_spec.rb
|
219
|
+
- test/rails/overrides/spec/requests/pc_spec.rb
|
220
|
+
- test/rails/overrides/spec/requests/softbank_emulator_spec.rb
|
221
|
+
- test/rails/overrides/spec/requests/template_path_spec.rb
|
222
|
+
- test/rails/overrides/spec/requests/trans_sid_spec.rb
|
127
223
|
- test/rails/overrides/spec/spec_helper.rb
|
224
|
+
- test/sinatra/guestbook.rb
|
225
|
+
- test/sinatra/test/filter_test.rb
|
128
226
|
- tools/disabled_update_display_info_docomo.rb
|
129
227
|
- tools/emoji/genregexp.rb
|
130
228
|
- tools/generate_au_emoticon_table.rb
|
@@ -134,128 +232,6 @@ files:
|
|
134
232
|
- tools/list_gps_unsupported_au.rb
|
135
233
|
- tools/update_ip_addresses_au.rb
|
136
234
|
- tools/update_ip_addresses_willcom.rb
|
137
|
-
- test/rails/rails_root/spec/helpers/helpers_spec.rb
|
138
|
-
- test/rails/rails_root/spec/requests/softbank_emulator_spec.rb
|
139
|
-
- test/rails/rails_root/spec/requests/docomo_spec.rb
|
140
|
-
- test/rails/rails_root/spec/requests/helpers_spec.rb
|
141
|
-
- test/rails/rails_root/spec/requests/docomo_guid_spec.rb
|
142
|
-
- test/rails/rails_root/spec/requests/trans_sid_spec.rb
|
143
|
-
- test/rails/rails_root/spec/requests/template_path_spec.rb
|
144
|
-
- test/rails/rails_root/spec/requests/filter_spec.rb
|
145
|
-
- test/rails/rails_root/spec/requests/pc_spec.rb
|
146
|
-
- test/rails/rails_root/spec/requests/emobile_spec.rb
|
147
|
-
- test/rails/rails_root/spec/spec_helper.rb
|
148
|
-
- test/rails/rails_root/autotest/discover.rb
|
149
|
-
- test/rails/rails_root/app/helpers/application_helper.rb
|
150
|
-
- test/rails/rails_root/app/models/user.rb
|
151
|
-
- test/rails/rails_root/app/controllers/trans_sid_always_controller.rb
|
152
|
-
- test/rails/rails_root/app/controllers/hankaku_filter_controller.rb
|
153
|
-
- test/rails/rails_root/app/controllers/filter_controller_base.rb
|
154
|
-
- test/rails/rails_root/app/controllers/links_controller.rb
|
155
|
-
- test/rails/rails_root/app/controllers/trans_sid_base_controller.rb
|
156
|
-
- test/rails/rails_root/app/controllers/trans_sid_none_controller.rb
|
157
|
-
- test/rails/rails_root/app/controllers/trans_sid_always_and_session_off_controller.rb
|
158
|
-
- test/rails/rails_root/app/controllers/template_path_controller.rb
|
159
|
-
- test/rails/rails_root/app/controllers/docomo_guid_docomo_controller.rb
|
160
|
-
- test/rails/rails_root/app/controllers/filter_controller.rb
|
161
|
-
- test/rails/rails_root/app/controllers/mobile_spec_controller.rb
|
162
|
-
- test/rails/rails_root/app/controllers/trans_sid_mobile_controller.rb
|
163
|
-
- test/rails/rails_root/app/controllers/application_controller.rb
|
164
|
-
- test/rails/rails_root/app/controllers/docomo_guid_always_controller.rb
|
165
|
-
- test/rails/rails_root/app/controllers/docomo_guid_base_controller.rb
|
166
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/install.rb
|
167
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/emoticon_spec.rb
|
168
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/au_spec.rb
|
169
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/willcom_spec.rb
|
170
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/params_filter_spec.rb
|
171
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/docomo_spec.rb
|
172
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/filter_spec.rb
|
173
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/windows_phone.rb
|
174
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/mobile_by_ua_spec.rb
|
175
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/iphone_spec.rb
|
176
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/softbank_spec.rb
|
177
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/android_spec.rb
|
178
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/detect_by_email_spec.rb
|
179
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/spec_helper.rb
|
180
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/valid_ip_spec.rb
|
181
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/util_spec.rb
|
182
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/is_carrier_spec.rb
|
183
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/spec_helper.rb
|
184
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack_helper.rb
|
185
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_softbank_emoticon_table.rb
|
186
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/update_ip_addresses_au.rb
|
187
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/disabled_update_display_info_docomo.rb
|
188
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/update_ip_addresses_willcom.rb
|
189
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/emoji/genregexp.rb
|
190
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_emoticon_conversion_table.rb
|
191
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/list_gps_unsupported_au.rb
|
192
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_au_emoticon_table.rb
|
193
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_docomo_emoticon_table.rb
|
194
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/init.rb
|
195
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile.rb
|
196
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/position.rb
|
197
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/filter.rb
|
198
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/request_with_mobile.rb
|
199
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/docomo_guid.rb
|
200
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/params_filter.rb
|
201
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/filter.rb
|
202
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/mobile_carrier.rb
|
203
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/datum_conv.rb
|
204
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/encoding.rb
|
205
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack.rb
|
206
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/util.rb
|
207
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/trans_sid.rb
|
208
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_willcom.rb
|
209
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/abstract_mobile.rb
|
210
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/iphone.rb
|
211
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_emobile.rb
|
212
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/emobile.rb
|
213
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_au.rb
|
214
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/docomo.rb
|
215
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/display.rb
|
216
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/smart_phone.rb
|
217
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_docomo.rb
|
218
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_softbank.rb
|
219
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/softbank.rb
|
220
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/willcom.rb
|
221
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_display_info_docomo.rb
|
222
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/windows_phone.rb
|
223
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/au.rb
|
224
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/vodafone.rb
|
225
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/android.rb
|
226
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/ddipocket.rb
|
227
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/helpers.rb
|
228
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/z_combine.rb
|
229
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/docomo.rb
|
230
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/conversion_table.rb
|
231
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/softbank.rb
|
232
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/au.rb
|
233
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_view.rb
|
234
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon.rb
|
235
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/email.rb
|
236
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rails.rb
|
237
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_controller.rb
|
238
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tmp/conversion-table.rb
|
239
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tmp/utf8_to_image.rb
|
240
|
-
- test/rails/rails_root/db/migrate/20100824062306_create_users.rb
|
241
|
-
- test/rails/rails_root/db/migrate/001_add_sessions_table.rb
|
242
|
-
- test/rails/rails_root/db/schema.rb
|
243
|
-
- test/rails/rails_root/db/seeds.rb
|
244
|
-
- test/rails/rails_root/config/environments/development.rb
|
245
|
-
- test/rails/rails_root/config/environments/test.rb
|
246
|
-
- test/rails/rails_root/config/environments/production.rb
|
247
|
-
- test/rails/rails_root/config/environment.rb
|
248
|
-
- test/rails/rails_root/config/routes.rb
|
249
|
-
- test/rails/rails_root/config/application.rb
|
250
|
-
- test/rails/rails_root/config/initializers/inflections.rb
|
251
|
-
- test/rails/rails_root/config/initializers/mime_types.rb
|
252
|
-
- test/rails/rails_root/config/initializers/backtrace_silencers.rb
|
253
|
-
- test/rails/rails_root/config/initializers/session_store.rb
|
254
|
-
- test/rails/rails_root/config/initializers/secret_token.rb
|
255
|
-
- test/rails/rails_root/config/initializers/jpmobile_generator.rb
|
256
|
-
- test/rails/rails_root/config/boot.rb
|
257
|
-
- test/rails/rails_root/test/performance/browsing_test.rb
|
258
|
-
- test/rails/rails_root/test/test_helper.rb
|
259
235
|
has_rdoc: true
|
260
236
|
homepage: http://github.com/jpmobile/jpmobile
|
261
237
|
licenses: []
|
@@ -270,19 +246,19 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
270
246
|
requirements:
|
271
247
|
- - ">="
|
272
248
|
- !ruby/object:Gem::Version
|
273
|
-
hash: 3
|
274
249
|
segments:
|
275
250
|
- 0
|
276
251
|
version: "0"
|
277
252
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
278
253
|
none: false
|
279
254
|
requirements:
|
280
|
-
- - "
|
255
|
+
- - ">"
|
281
256
|
- !ruby/object:Gem::Version
|
282
|
-
hash: 3
|
283
257
|
segments:
|
284
|
-
-
|
285
|
-
|
258
|
+
- 1
|
259
|
+
- 3
|
260
|
+
- 1
|
261
|
+
version: 1.3.1
|
286
262
|
requirements: []
|
287
263
|
|
288
264
|
rubyforge_project:
|
@@ -291,159 +267,56 @@ signing_key:
|
|
291
267
|
specification_version: 3
|
292
268
|
summary: A Rails plugin for Japanese mobile-phones
|
293
269
|
test_files:
|
270
|
+
- spec/rack/jpmobile/android_spec.rb
|
271
|
+
- spec/rack/jpmobile/au_spec.rb
|
272
|
+
- spec/rack/jpmobile/docomo_spec.rb
|
273
|
+
- spec/rack/jpmobile/emoticon_spec.rb
|
274
|
+
- spec/rack/jpmobile/filter_spec.rb
|
275
|
+
- spec/rack/jpmobile/iphone_spec.rb
|
276
|
+
- spec/rack/jpmobile/mobile_by_ua_spec.rb
|
277
|
+
- spec/rack/jpmobile/params_filter_spec.rb
|
278
|
+
- spec/rack/jpmobile/softbank_spec.rb
|
279
|
+
- spec/rack/jpmobile/willcom_spec.rb
|
280
|
+
- spec/rack/jpmobile/windows_phone.rb
|
281
|
+
- spec/rack_helper.rb
|
282
|
+
- spec/spec_helper.rb
|
294
283
|
- spec/unit/detect_by_email_spec.rb
|
295
|
-
- spec/unit/
|
284
|
+
- spec/unit/is_carrier_spec.rb
|
296
285
|
- spec/unit/spec_helper.rb
|
297
|
-
- spec/unit/valid_ip_spec.rb
|
298
286
|
- spec/unit/util_spec.rb
|
299
|
-
- spec/unit/
|
300
|
-
- spec/spec_helper.rb
|
301
|
-
- test/legacy/filter_test.rb
|
287
|
+
- spec/unit/valid_ip_spec.rb
|
302
288
|
- test/legacy/autoload_test.rb
|
303
|
-
- test/legacy/softbank_test.rb
|
304
|
-
- test/legacy/au_test.rb
|
305
|
-
- test/legacy/willcom_test.rb
|
306
|
-
- test/legacy/emoticon_functional_test.rb
|
307
289
|
- test/legacy/emoticon_test.rb
|
308
|
-
- test/legacy/helpers_test.rb
|
309
|
-
- test/legacy/docomo_test.rb
|
310
290
|
- test/legacy/helper.rb
|
311
|
-
- test/rails/
|
312
|
-
- test/rails/
|
313
|
-
- test/rails/
|
314
|
-
- test/rails/
|
315
|
-
- test/rails/rails_root/spec/requests/docomo_guid_spec.rb
|
316
|
-
- test/rails/rails_root/spec/requests/trans_sid_spec.rb
|
317
|
-
- test/rails/rails_root/spec/requests/template_path_spec.rb
|
318
|
-
- test/rails/rails_root/spec/requests/filter_spec.rb
|
319
|
-
- test/rails/rails_root/spec/requests/pc_spec.rb
|
320
|
-
- test/rails/rails_root/spec/requests/emobile_spec.rb
|
321
|
-
- test/rails/rails_root/spec/spec_helper.rb
|
322
|
-
- test/rails/rails_root/autotest/discover.rb
|
323
|
-
- test/rails/rails_root/app/helpers/application_helper.rb
|
324
|
-
- test/rails/rails_root/app/models/user.rb
|
325
|
-
- test/rails/rails_root/app/controllers/trans_sid_always_controller.rb
|
326
|
-
- test/rails/rails_root/app/controllers/hankaku_filter_controller.rb
|
327
|
-
- test/rails/rails_root/app/controllers/filter_controller_base.rb
|
328
|
-
- test/rails/rails_root/app/controllers/links_controller.rb
|
329
|
-
- test/rails/rails_root/app/controllers/trans_sid_base_controller.rb
|
330
|
-
- test/rails/rails_root/app/controllers/trans_sid_none_controller.rb
|
331
|
-
- test/rails/rails_root/app/controllers/trans_sid_always_and_session_off_controller.rb
|
332
|
-
- test/rails/rails_root/app/controllers/template_path_controller.rb
|
333
|
-
- test/rails/rails_root/app/controllers/docomo_guid_docomo_controller.rb
|
334
|
-
- test/rails/rails_root/app/controllers/filter_controller.rb
|
335
|
-
- test/rails/rails_root/app/controllers/mobile_spec_controller.rb
|
336
|
-
- test/rails/rails_root/app/controllers/trans_sid_mobile_controller.rb
|
337
|
-
- test/rails/rails_root/app/controllers/application_controller.rb
|
338
|
-
- test/rails/rails_root/app/controllers/docomo_guid_always_controller.rb
|
339
|
-
- test/rails/rails_root/app/controllers/docomo_guid_base_controller.rb
|
340
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/install.rb
|
341
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/emoticon_spec.rb
|
342
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/au_spec.rb
|
343
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/willcom_spec.rb
|
344
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/params_filter_spec.rb
|
345
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/docomo_spec.rb
|
346
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/filter_spec.rb
|
347
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/windows_phone.rb
|
348
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/mobile_by_ua_spec.rb
|
349
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/iphone_spec.rb
|
350
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/softbank_spec.rb
|
351
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack/jpmobile/android_spec.rb
|
352
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/detect_by_email_spec.rb
|
353
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/spec_helper.rb
|
354
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/valid_ip_spec.rb
|
355
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/util_spec.rb
|
356
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/is_carrier_spec.rb
|
357
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/spec_helper.rb
|
358
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/spec/rack_helper.rb
|
359
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_softbank_emoticon_table.rb
|
360
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/update_ip_addresses_au.rb
|
361
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/disabled_update_display_info_docomo.rb
|
362
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/update_ip_addresses_willcom.rb
|
363
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/emoji/genregexp.rb
|
364
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_emoticon_conversion_table.rb
|
365
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/list_gps_unsupported_au.rb
|
366
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_au_emoticon_table.rb
|
367
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_docomo_emoticon_table.rb
|
368
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/init.rb
|
369
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile.rb
|
370
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/position.rb
|
371
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/filter.rb
|
372
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/request_with_mobile.rb
|
373
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/docomo_guid.rb
|
374
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/params_filter.rb
|
375
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/filter.rb
|
376
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/mobile_carrier.rb
|
377
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/datum_conv.rb
|
378
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/encoding.rb
|
379
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack.rb
|
380
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/util.rb
|
381
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/trans_sid.rb
|
382
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_willcom.rb
|
383
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/abstract_mobile.rb
|
384
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/iphone.rb
|
385
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_emobile.rb
|
386
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/emobile.rb
|
387
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_au.rb
|
388
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/docomo.rb
|
389
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/display.rb
|
390
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/smart_phone.rb
|
391
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_docomo.rb
|
392
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_softbank.rb
|
393
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/softbank.rb
|
394
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/willcom.rb
|
395
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_display_info_docomo.rb
|
396
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/windows_phone.rb
|
397
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/au.rb
|
398
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/vodafone.rb
|
399
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/android.rb
|
400
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/ddipocket.rb
|
401
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/helpers.rb
|
402
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/z_combine.rb
|
403
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/docomo.rb
|
404
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/conversion_table.rb
|
405
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/softbank.rb
|
406
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/au.rb
|
407
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_view.rb
|
408
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon.rb
|
409
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/email.rb
|
410
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rails.rb
|
411
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_controller.rb
|
412
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tmp/conversion-table.rb
|
413
|
-
- test/rails/rails_root/vendor/plugins/jpmobile/tmp/utf8_to_image.rb
|
414
|
-
- test/rails/rails_root/db/migrate/20100824062306_create_users.rb
|
415
|
-
- test/rails/rails_root/db/migrate/001_add_sessions_table.rb
|
416
|
-
- test/rails/rails_root/db/schema.rb
|
417
|
-
- test/rails/rails_root/db/seeds.rb
|
418
|
-
- test/rails/rails_root/config/environments/development.rb
|
419
|
-
- test/rails/rails_root/config/environments/test.rb
|
420
|
-
- test/rails/rails_root/config/environments/production.rb
|
421
|
-
- test/rails/rails_root/config/environment.rb
|
422
|
-
- test/rails/rails_root/config/routes.rb
|
423
|
-
- test/rails/rails_root/config/application.rb
|
424
|
-
- test/rails/rails_root/config/initializers/inflections.rb
|
425
|
-
- test/rails/rails_root/config/initializers/mime_types.rb
|
426
|
-
- test/rails/rails_root/config/initializers/backtrace_silencers.rb
|
427
|
-
- test/rails/rails_root/config/initializers/session_store.rb
|
428
|
-
- test/rails/rails_root/config/initializers/secret_token.rb
|
429
|
-
- test/rails/rails_root/config/initializers/jpmobile_generator.rb
|
430
|
-
- test/rails/rails_root/config/boot.rb
|
431
|
-
- test/rails/rails_root/test/performance/browsing_test.rb
|
432
|
-
- test/rails/rails_root/test/test_helper.rb
|
433
|
-
- test/rails/overrides/spec/helpers/helpers_spec.rb
|
434
|
-
- test/rails/overrides/spec/spec_helper.rb
|
435
|
-
- test/rails/overrides/spec/controllers/softbank_emulator_spec.rb
|
436
|
-
- test/rails/overrides/spec/controllers/docomo_spec.rb
|
437
|
-
- test/rails/overrides/spec/controllers/docomo_guid_spec.rb
|
438
|
-
- test/rails/overrides/spec/controllers/trans_sid_spec.rb
|
439
|
-
- test/rails/overrides/spec/controllers/template_path_spec.rb
|
440
|
-
- test/rails/overrides/spec/controllers/filter_spec.rb
|
441
|
-
- test/rails/overrides/spec/controllers/pc_spec.rb
|
442
|
-
- test/rails/overrides/spec/controllers/emobile_spec.rb
|
443
|
-
- test/rails/overrides/app/controllers/trans_sid_controller.rb
|
444
|
-
- test/rails/overrides/app/controllers/template_path_controller.rb
|
291
|
+
- test/rails/overrides/app/controllers/application_controller.rb
|
292
|
+
- test/rails/overrides/app/controllers/docomo_guid_always_controller.rb
|
293
|
+
- test/rails/overrides/app/controllers/docomo_guid_base_controller.rb
|
294
|
+
- test/rails/overrides/app/controllers/docomo_guid_docomo_controller.rb
|
445
295
|
- test/rails/overrides/app/controllers/filter_controller.rb
|
296
|
+
- test/rails/overrides/app/controllers/filter_controller_base.rb
|
297
|
+
- test/rails/overrides/app/controllers/hankaku_filter_controller.rb
|
298
|
+
- test/rails/overrides/app/controllers/links_controller.rb
|
446
299
|
- test/rails/overrides/app/controllers/mobile_spec_controller.rb
|
447
|
-
- test/rails/overrides/app/controllers/
|
448
|
-
- test/rails/overrides/app/controllers/
|
449
|
-
- test/rails/
|
300
|
+
- test/rails/overrides/app/controllers/template_path_controller.rb
|
301
|
+
- test/rails/overrides/app/controllers/trans_sid_always_and_session_off_controller.rb
|
302
|
+
- test/rails/overrides/app/controllers/trans_sid_always_controller.rb
|
303
|
+
- test/rails/overrides/app/controllers/trans_sid_base_controller.rb
|
304
|
+
- test/rails/overrides/app/controllers/trans_sid_mobile_controller.rb
|
305
|
+
- test/rails/overrides/app/controllers/trans_sid_none_controller.rb
|
306
|
+
- test/rails/overrides/autotest/discover.rb
|
307
|
+
- test/rails/overrides/config/initializers/jpmobile_generator.rb
|
308
|
+
- test/rails/overrides/config/routes.rb
|
309
|
+
- test/rails/overrides/db/migrate/001_add_sessions_table.rb
|
310
|
+
- test/rails/overrides/spec/helpers/helpers_spec.rb
|
311
|
+
- test/rails/overrides/spec/requests/docomo_guid_spec.rb
|
312
|
+
- test/rails/overrides/spec/requests/docomo_spec.rb
|
313
|
+
- test/rails/overrides/spec/requests/emobile_spec.rb
|
314
|
+
- test/rails/overrides/spec/requests/filter_spec.rb
|
315
|
+
- test/rails/overrides/spec/requests/helpers_spec.rb
|
316
|
+
- test/rails/overrides/spec/requests/pc_spec.rb
|
317
|
+
- test/rails/overrides/spec/requests/softbank_emulator_spec.rb
|
318
|
+
- test/rails/overrides/spec/requests/template_path_spec.rb
|
319
|
+
- test/rails/overrides/spec/requests/trans_sid_spec.rb
|
320
|
+
- test/rails/overrides/spec/spec_helper.rb
|
321
|
+
- test/sinatra/guestbook.rb
|
322
|
+
- test/sinatra/test/filter_test.rb
|