mobile_intent 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +3 -0
  5. data/Gemfile +9 -0
  6. data/Guardfile +9 -0
  7. data/LICENSE.txt +22 -0
  8. data/README.md +53 -0
  9. data/Rakefile +6 -0
  10. data/lib/assets/javascripts/mobile_intent.js.coffee.erb +31 -0
  11. data/lib/mobile_intent.rb +17 -0
  12. data/lib/mobile_intent/application.rb +45 -0
  13. data/lib/mobile_intent/config.rb +19 -0
  14. data/lib/mobile_intent/engine.rb +6 -0
  15. data/lib/mobile_intent/helpers.rb +31 -0
  16. data/lib/mobile_intent/railtie.rb +21 -0
  17. data/lib/mobile_intent/version.rb +3 -0
  18. data/mobile_intent.gemspec +28 -0
  19. data/spec/controllers/top_controller_spec.rb +10 -0
  20. data/spec/dummy/.gitignore +16 -0
  21. data/spec/dummy/Gemfile +46 -0
  22. data/spec/dummy/README.rdoc +28 -0
  23. data/spec/dummy/Rakefile +6 -0
  24. data/spec/dummy/app/assets/images/.keep +0 -0
  25. data/spec/dummy/app/assets/javascripts/application.js +17 -0
  26. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  27. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  28. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  29. data/spec/dummy/app/controllers/top_controller.rb +4 -0
  30. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  31. data/spec/dummy/app/mailers/.keep +0 -0
  32. data/spec/dummy/app/models/.keep +0 -0
  33. data/spec/dummy/app/models/concerns/.keep +0 -0
  34. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  35. data/spec/dummy/app/views/top/index.html.erb +5 -0
  36. data/spec/dummy/bin/bundle +3 -0
  37. data/spec/dummy/bin/rails +4 -0
  38. data/spec/dummy/bin/rake +4 -0
  39. data/spec/dummy/config.ru +4 -0
  40. data/spec/dummy/config/application.rb +20 -0
  41. data/spec/dummy/config/boot.rb +4 -0
  42. data/spec/dummy/config/database.yml +25 -0
  43. data/spec/dummy/config/environment.rb +5 -0
  44. data/spec/dummy/config/environments/development.rb +29 -0
  45. data/spec/dummy/config/environments/production.rb +80 -0
  46. data/spec/dummy/config/environments/test.rb +36 -0
  47. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  48. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  49. data/spec/dummy/config/initializers/inflections.rb +16 -0
  50. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  51. data/spec/dummy/config/initializers/mobile_intent.rb +3 -0
  52. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  53. data/spec/dummy/config/initializers/session_store.rb +3 -0
  54. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  55. data/spec/dummy/config/locales/en.yml +23 -0
  56. data/spec/dummy/config/routes.rb +56 -0
  57. data/spec/dummy/db/seeds.rb +7 -0
  58. data/spec/dummy/lib/assets/.keep +0 -0
  59. data/spec/dummy/lib/tasks/.keep +0 -0
  60. data/spec/dummy/log/.keep +0 -0
  61. data/spec/dummy/public/404.html +58 -0
  62. data/spec/dummy/public/422.html +58 -0
  63. data/spec/dummy/public/500.html +57 -0
  64. data/spec/dummy/public/favicon.ico +0 -0
  65. data/spec/dummy/public/robots.txt +5 -0
  66. data/spec/dummy/vendor/assets/javascripts/.keep +0 -0
  67. data/spec/dummy/vendor/assets/stylesheets/.keep +0 -0
  68. data/spec/helpers/mobile_intent_helpers_spec.rb +4 -0
  69. data/spec/mobile_intent/application_spec.rb +50 -0
  70. data/spec/mobile_intent/config_spec.rb +17 -0
  71. data/spec/mobile_intent_spec.rb +17 -0
  72. data/spec/spec_helper.rb +10 -0
  73. metadata +259 -0
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
+ # Mayor.create(name: 'Emanuel', city: cities.first)
File without changes
File without changes
File without changes
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/404.html -->
52
+ <div class="dialog">
53
+ <h1>The page you were looking for doesn't exist.</h1>
54
+ <p>You may have mistyped the address or the page may have moved.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/422.html -->
52
+ <div class="dialog">
53
+ <h1>The change you wanted was rejected.</h1>
54
+ <p>Maybe you tried to change something you didn't have access to.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,57 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/500.html -->
52
+ <div class="dialog">
53
+ <h1>We're sorry, but something went wrong.</h1>
54
+ </div>
55
+ <p>If you are the application owner check the logs for more information.</p>
56
+ </body>
57
+ </html>
File without changes
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
File without changes
File without changes
@@ -0,0 +1,4 @@
1
+ require 'spec_helper'
2
+
3
+ describe MobileIntent::Helpers do
4
+ end
@@ -0,0 +1,50 @@
1
+ require 'spec_helper'
2
+
3
+ describe MobileIntent::Application do
4
+ let(:name) { :app_name }
5
+ let(:android) { 'com.example.myapp' }
6
+ let(:ios) { 'myappname' }
7
+ subject { application }
8
+
9
+ context :with_android do
10
+ let(:application) { described_class.new name, android: android }
11
+ it { expect(subject).to be_android }
12
+ it { expect(subject).not_to be_ios }
13
+ describe :intent_url do
14
+ it { expect(subject.intent_url(:hoge)).to eq "#{name}://hoge" }
15
+ end
16
+ its(:android_market_url) { should eq "market://details?id=#{android}" }
17
+ describe :android_intent_url do
18
+ it { expect(subject.android_intent_url(:hoge)).to eq "intent://hoge#Intent;scheme=#{name};package=#{android};end" }
19
+ end
20
+ describe :ios_market_url do
21
+ it { expect { subejct.ios_market_url }.to raise_error }
22
+ end
23
+
24
+ describe :launch_url do
25
+ context :android_chrome do
26
+ it { expect(subject.launch_url(:hoge, 'Android Chrome')).to eq subject.android_intent_url(:hoge) }
27
+ end
28
+ context :old_android do
29
+ it { expect(subject.launch_url(:hoge, 'Android Unko')).to eq subject.intent_url(:hoge) }
30
+ end
31
+ end
32
+ end
33
+
34
+ context :with_ios do
35
+ let(:application) { described_class.new name, ios: ios }
36
+ it { expect(subject).to be_ios }
37
+ it { expect(subject).not_to be_android }
38
+ describe :intent_url do
39
+ it { expect(subject.intent_url(:hoge)).to eq "#{name}://hoge" }
40
+ end
41
+ its(:ios_market_url) { should eq "itms://itunes.com/apps/#{ios}" }
42
+ describe :android_market_url do
43
+ it { expect { subject.android_market_url }.to raise_error }
44
+ end
45
+ describe :android_intent_url do
46
+ it { expect { subject.android_intent_url(:hoge) }.to raise_error }
47
+ end
48
+ end
49
+
50
+ end
@@ -0,0 +1,17 @@
1
+ require 'spec_helper'
2
+
3
+ describe MobileIntent::Config do
4
+ let(:config) { described_class.new }
5
+ subject { config }
6
+ before { config.send(:register, :app_name, :andorid => 'com.example.app') }
7
+
8
+ describe :register do
9
+ it { expect(config.send(:register, :app_name)).to be_a MobileIntent::Application }
10
+ it { expect(config).to have(1).apps }
11
+ end
12
+
13
+ describe :has? do
14
+ it { expect(subject).to be_has :app_name }
15
+ it { expect(subject).not_to be_has :other_app }
16
+ end
17
+ end
@@ -0,0 +1,17 @@
1
+ require 'spec_helper'
2
+
3
+ describe MobileIntent do
4
+ describe MobileIntent, ".config" do
5
+ it { expect(MobileIntent.config).to be_a MobileIntent::Config }
6
+ end
7
+
8
+ describe MobileIntent, ".setup" do
9
+ it 'register app' do
10
+ expect {
11
+ MobileIntent.setup do
12
+ register :my_app, :android => 'com.example.myapp', :ios => 'myapp_name'
13
+ end
14
+ }.to change { MobileIntent.config.has? :my_app }.from(false).to(true)
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,10 @@
1
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
+ require 'mobile_intent'
3
+
4
+ ENV['RAILS_ENV'] ||= 'test'
5
+ require File.expand_path("../dummy/config/environment", __FILE__)
6
+ require 'rspec/rails'
7
+ require 'rspec/autorun'
8
+
9
+ RSpec.configure do |config|
10
+ end
metadata ADDED
@@ -0,0 +1,259 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mobile_intent
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - masarakki
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ - - <
21
+ - !ruby/object:Gem::Version
22
+ version: '5.0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '3.0'
30
+ - - <
31
+ - !ruby/object:Gem::Version
32
+ version: '5.0'
33
+ - !ruby/object:Gem::Dependency
34
+ name: bundler
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ~>
38
+ - !ruby/object:Gem::Version
39
+ version: '1.3'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ~>
45
+ - !ruby/object:Gem::Version
46
+ version: '1.3'
47
+ - !ruby/object:Gem::Dependency
48
+ name: rake
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - '>='
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rspec
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - '>='
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - '>='
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ - !ruby/object:Gem::Dependency
76
+ name: rspec-rails
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - '>='
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - '>='
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ - !ruby/object:Gem::Dependency
90
+ name: sqlite3
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - '>='
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ type: :development
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - '>='
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ description: start application via custom scheme
104
+ email:
105
+ - masaki@hisme.net
106
+ executables: []
107
+ extensions: []
108
+ extra_rdoc_files: []
109
+ files:
110
+ - .gitignore
111
+ - .rspec
112
+ - .travis.yml
113
+ - Gemfile
114
+ - Guardfile
115
+ - LICENSE.txt
116
+ - README.md
117
+ - Rakefile
118
+ - lib/assets/javascripts/mobile_intent.js.coffee.erb
119
+ - lib/mobile_intent.rb
120
+ - lib/mobile_intent/application.rb
121
+ - lib/mobile_intent/config.rb
122
+ - lib/mobile_intent/engine.rb
123
+ - lib/mobile_intent/helpers.rb
124
+ - lib/mobile_intent/railtie.rb
125
+ - lib/mobile_intent/version.rb
126
+ - mobile_intent.gemspec
127
+ - spec/controllers/top_controller_spec.rb
128
+ - spec/dummy/.gitignore
129
+ - spec/dummy/Gemfile
130
+ - spec/dummy/README.rdoc
131
+ - spec/dummy/Rakefile
132
+ - spec/dummy/app/assets/images/.keep
133
+ - spec/dummy/app/assets/javascripts/application.js
134
+ - spec/dummy/app/assets/stylesheets/application.css
135
+ - spec/dummy/app/controllers/application_controller.rb
136
+ - spec/dummy/app/controllers/concerns/.keep
137
+ - spec/dummy/app/controllers/top_controller.rb
138
+ - spec/dummy/app/helpers/application_helper.rb
139
+ - spec/dummy/app/mailers/.keep
140
+ - spec/dummy/app/models/.keep
141
+ - spec/dummy/app/models/concerns/.keep
142
+ - spec/dummy/app/views/layouts/application.html.erb
143
+ - spec/dummy/app/views/top/index.html.erb
144
+ - spec/dummy/bin/bundle
145
+ - spec/dummy/bin/rails
146
+ - spec/dummy/bin/rake
147
+ - spec/dummy/config.ru
148
+ - spec/dummy/config/application.rb
149
+ - spec/dummy/config/boot.rb
150
+ - spec/dummy/config/database.yml
151
+ - spec/dummy/config/environment.rb
152
+ - spec/dummy/config/environments/development.rb
153
+ - spec/dummy/config/environments/production.rb
154
+ - spec/dummy/config/environments/test.rb
155
+ - spec/dummy/config/initializers/backtrace_silencers.rb
156
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
157
+ - spec/dummy/config/initializers/inflections.rb
158
+ - spec/dummy/config/initializers/mime_types.rb
159
+ - spec/dummy/config/initializers/mobile_intent.rb
160
+ - spec/dummy/config/initializers/secret_token.rb
161
+ - spec/dummy/config/initializers/session_store.rb
162
+ - spec/dummy/config/initializers/wrap_parameters.rb
163
+ - spec/dummy/config/locales/en.yml
164
+ - spec/dummy/config/routes.rb
165
+ - spec/dummy/db/seeds.rb
166
+ - spec/dummy/lib/assets/.keep
167
+ - spec/dummy/lib/tasks/.keep
168
+ - spec/dummy/log/.keep
169
+ - spec/dummy/public/404.html
170
+ - spec/dummy/public/422.html
171
+ - spec/dummy/public/500.html
172
+ - spec/dummy/public/favicon.ico
173
+ - spec/dummy/public/robots.txt
174
+ - spec/dummy/vendor/assets/javascripts/.keep
175
+ - spec/dummy/vendor/assets/stylesheets/.keep
176
+ - spec/helpers/mobile_intent_helpers_spec.rb
177
+ - spec/mobile_intent/application_spec.rb
178
+ - spec/mobile_intent/config_spec.rb
179
+ - spec/mobile_intent_spec.rb
180
+ - spec/spec_helper.rb
181
+ homepage: https://github.com/masarakki/mobile_intent
182
+ licenses:
183
+ - MIT
184
+ metadata: {}
185
+ post_install_message:
186
+ rdoc_options: []
187
+ require_paths:
188
+ - lib
189
+ required_ruby_version: !ruby/object:Gem::Requirement
190
+ requirements:
191
+ - - '>='
192
+ - !ruby/object:Gem::Version
193
+ version: '0'
194
+ required_rubygems_version: !ruby/object:Gem::Requirement
195
+ requirements:
196
+ - - '>='
197
+ - !ruby/object:Gem::Version
198
+ version: '0'
199
+ requirements: []
200
+ rubyforge_project:
201
+ rubygems_version: 2.0.3
202
+ signing_key:
203
+ specification_version: 4
204
+ summary: start application via custom scheme
205
+ test_files:
206
+ - spec/controllers/top_controller_spec.rb
207
+ - spec/dummy/.gitignore
208
+ - spec/dummy/Gemfile
209
+ - spec/dummy/README.rdoc
210
+ - spec/dummy/Rakefile
211
+ - spec/dummy/app/assets/images/.keep
212
+ - spec/dummy/app/assets/javascripts/application.js
213
+ - spec/dummy/app/assets/stylesheets/application.css
214
+ - spec/dummy/app/controllers/application_controller.rb
215
+ - spec/dummy/app/controllers/concerns/.keep
216
+ - spec/dummy/app/controllers/top_controller.rb
217
+ - spec/dummy/app/helpers/application_helper.rb
218
+ - spec/dummy/app/mailers/.keep
219
+ - spec/dummy/app/models/.keep
220
+ - spec/dummy/app/models/concerns/.keep
221
+ - spec/dummy/app/views/layouts/application.html.erb
222
+ - spec/dummy/app/views/top/index.html.erb
223
+ - spec/dummy/bin/bundle
224
+ - spec/dummy/bin/rails
225
+ - spec/dummy/bin/rake
226
+ - spec/dummy/config.ru
227
+ - spec/dummy/config/application.rb
228
+ - spec/dummy/config/boot.rb
229
+ - spec/dummy/config/database.yml
230
+ - spec/dummy/config/environment.rb
231
+ - spec/dummy/config/environments/development.rb
232
+ - spec/dummy/config/environments/production.rb
233
+ - spec/dummy/config/environments/test.rb
234
+ - spec/dummy/config/initializers/backtrace_silencers.rb
235
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
236
+ - spec/dummy/config/initializers/inflections.rb
237
+ - spec/dummy/config/initializers/mime_types.rb
238
+ - spec/dummy/config/initializers/mobile_intent.rb
239
+ - spec/dummy/config/initializers/secret_token.rb
240
+ - spec/dummy/config/initializers/session_store.rb
241
+ - spec/dummy/config/initializers/wrap_parameters.rb
242
+ - spec/dummy/config/locales/en.yml
243
+ - spec/dummy/config/routes.rb
244
+ - spec/dummy/db/seeds.rb
245
+ - spec/dummy/lib/assets/.keep
246
+ - spec/dummy/lib/tasks/.keep
247
+ - spec/dummy/log/.keep
248
+ - spec/dummy/public/404.html
249
+ - spec/dummy/public/422.html
250
+ - spec/dummy/public/500.html
251
+ - spec/dummy/public/favicon.ico
252
+ - spec/dummy/public/robots.txt
253
+ - spec/dummy/vendor/assets/javascripts/.keep
254
+ - spec/dummy/vendor/assets/stylesheets/.keep
255
+ - spec/helpers/mobile_intent_helpers_spec.rb
256
+ - spec/mobile_intent/application_spec.rb
257
+ - spec/mobile_intent/config_spec.rb
258
+ - spec/mobile_intent_spec.rb
259
+ - spec/spec_helper.rb