exception_handler 0.7.6.0 → 0.7.7.0
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.
- checksums.yaml +4 -4
- data/.gitignore +40 -33
- data/.slugignore +7 -7
- data/.travis.yml +5 -5
- data/Gemfile +13 -13
- data/README.md +436 -436
- data/Rakefile +7 -7
- data/app/assets/stylesheets/exception_handler.css.erb +18 -18
- data/app/assets/stylesheets/styles/_base.css.erb +35 -35
- data/app/assets/stylesheets/styles/_exception.css.erb +105 -105
- data/app/assets/stylesheets/styles/_footer.css.erb +24 -24
- data/app/assets/stylesheets/styles/_responsive.css +5 -5
- data/app/controllers/exception_handler/exceptions_controller.rb +59 -59
- data/app/mailers/exception_handler/exception_mailer.rb +17 -17
- data/app/models/exception_handler/exception.rb +199 -191
- data/app/views/exception_handler/exceptions/show.html.erb +3 -3
- data/app/views/exception_handler/mailers/layout.haml +8 -8
- data/app/views/exception_handler/mailers/layout.text.erb +1 -1
- data/app/views/exception_handler/mailers/new_exception.erb +4 -4
- data/app/views/layouts/exception.html.erb +27 -27
- data/config/locales/exception_handler.en.yml +28 -28
- data/db/migrate/000000_create_errors.rb +34 -34
- data/exception_handler.gemspec +62 -80
- data/lib/exception_handler.rb +55 -45
- data/lib/exception_handler/config.rb +116 -104
- data/lib/exception_handler/engine.rb +70 -61
- data/lib/exception_handler/version.rb +25 -0
- data/lib/generators/exception_handler/views_generator.rb +33 -33
- metadata +7 -71
- data/.gitattributes +0 -1
- data/.rspec +0 -4
- data/LICENSE.txt +0 -22
- data/spec/database.yml +0 -3
- data/spec/dummy/Rakefile +0 -6
- data/spec/dummy/app/assets/config/manifest.js +0 -4
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +0 -13
- data/spec/dummy/app/assets/javascripts/cable.coffee +0 -11
- data/spec/dummy/app/assets/javascripts/channels/.keep +0 -0
- data/spec/dummy/app/assets/stylesheets/application.css +0 -15
- data/spec/dummy/app/channels/application_cable/channel.rb +0 -5
- data/spec/dummy/app/channels/application_cable/connection.rb +0 -5
- data/spec/dummy/app/controllers/application_controller.rb +0 -5
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +0 -2
- data/spec/dummy/app/jobs/application_job.rb +0 -2
- data/spec/dummy/app/mailers/application_mailer.rb +0 -4
- data/spec/dummy/app/models/application_record.rb +0 -3
- data/spec/dummy/app/models/concerns/.keep +0 -0
- data/spec/dummy/app/views/layouts/application.html.erb +0 -15
- data/spec/dummy/app/views/layouts/mailer.html.erb +0 -13
- data/spec/dummy/app/views/layouts/mailer.text.erb +0 -1
- data/spec/dummy/bin/bundle +0 -3
- data/spec/dummy/bin/rails +0 -4
- data/spec/dummy/bin/rake +0 -4
- data/spec/dummy/bin/setup +0 -34
- data/spec/dummy/bin/update +0 -29
- data/spec/dummy/config.ru +0 -8
- data/spec/dummy/config/application.rb +0 -21
- data/spec/dummy/config/boot.rb +0 -5
- data/spec/dummy/config/cable.yml +0 -10
- data/spec/dummy/config/database.yml +0 -25
- data/spec/dummy/config/environment.rb +0 -5
- data/spec/dummy/config/environments/development.rb +0 -62
- data/spec/dummy/config/environments/production.rb +0 -87
- data/spec/dummy/config/environments/test.rb +0 -42
- data/spec/dummy/config/initializers/active_record_belongs_to_required_by_default.rb +0 -6
- data/spec/dummy/config/initializers/application_controller_renderer.rb +0 -6
- data/spec/dummy/config/initializers/assets.rb +0 -11
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/dummy/config/initializers/callback_terminator.rb +0 -6
- data/spec/dummy/config/initializers/cookies_serializer.rb +0 -5
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +0 -4
- data/spec/dummy/config/initializers/inflections.rb +0 -16
- data/spec/dummy/config/initializers/mime_types.rb +0 -4
- data/spec/dummy/config/initializers/per_form_csrf_tokens.rb +0 -4
- data/spec/dummy/config/initializers/request_forgery_protection.rb +0 -4
- data/spec/dummy/config/initializers/session_store.rb +0 -3
- data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/spec/dummy/config/locales/en.yml +0 -23
- data/spec/dummy/config/puma.rb +0 -47
- data/spec/dummy/config/routes.rb +0 -6
- data/spec/dummy/config/secrets.yml +0 -22
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +0 -67
- data/spec/dummy/public/422.html +0 -67
- data/spec/dummy/public/500.html +0 -66
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/exception_handler.rb +0 -22
- data/spec/exception_handler/exception_controller_spec.rb +0 -18
- data/spec/spec_helper.rb +0 -55
|
@@ -1,61 +1,70 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
# =>
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
#########################################################
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
# =>
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
1
|
+
###########################################
|
|
2
|
+
###########################################
|
|
3
|
+
## _____ _ ##
|
|
4
|
+
## | ___| (_) ##
|
|
5
|
+
## | |__ _ __ __ _ _ _ __ ___ ##
|
|
6
|
+
## | __| '_ \ / _` | | '_ \ / _ \ ##
|
|
7
|
+
## | |__| | | | (_| | | | | | __/ ##
|
|
8
|
+
## \____/_| |_|\__, |_|_| |_|\___| ##
|
|
9
|
+
## __/ | ##
|
|
10
|
+
## |___/ ##
|
|
11
|
+
###########################################
|
|
12
|
+
###########################################
|
|
13
|
+
|
|
14
|
+
module ExceptionHandler
|
|
15
|
+
class Engine < Rails::Engine
|
|
16
|
+
|
|
17
|
+
# => Rails default MIME types:
|
|
18
|
+
# => http://apidock.com/rails/ActionController/MimeResponds/InstanceMethods/respond_to#14-Rails-defined-Mime-Types
|
|
19
|
+
|
|
20
|
+
#########################################################
|
|
21
|
+
#########################################################
|
|
22
|
+
|
|
23
|
+
# => Wraps helpers in ExceptionHandler module
|
|
24
|
+
# => http://guides.rubyonrails.org/engines.html#inside-an-engine
|
|
25
|
+
# => http://stackoverflow.com/questions/31877839/accessing-helpers-from-the-parent-app-in-an-isolated-rails-engine
|
|
26
|
+
isolate_namespace ExceptionHandler
|
|
27
|
+
|
|
28
|
+
# => Tests
|
|
29
|
+
config.generators do |g|
|
|
30
|
+
g.test_framework :rspec
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
# => Assets
|
|
34
|
+
# => For Sprockets 4, had to include link_tree in exception_handler.css
|
|
35
|
+
config.assets.precompile << "exception_handler.css"
|
|
36
|
+
|
|
37
|
+
#########################################################
|
|
38
|
+
#########################################################
|
|
39
|
+
|
|
40
|
+
# => Config
|
|
41
|
+
# => Builds lib/exception_handler/config.rb
|
|
42
|
+
# config.before_initialize do |app| => Needs to be fixed for ActiveRecord::Base
|
|
43
|
+
initializer :exception_handler_config, before: "better_errors.configure_rails_initialization" do |app|
|
|
44
|
+
ExceptionHandler.config ||= ExceptionHandler::Config.new config.try(:exception_handler)
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
#########################################################
|
|
48
|
+
#########################################################
|
|
49
|
+
|
|
50
|
+
# => Middleware
|
|
51
|
+
# => This should be config.before_initialize but because ActiveRecord is not initialized, cannot check for table
|
|
52
|
+
initializer :exception_handler, before: "better_errors.configure_rails_initialization" do |app|
|
|
53
|
+
app.config.exceptions_app = ->(env) { ExceptionHandler::ExceptionsController.action(:show).call(env) }
|
|
54
|
+
app.config.consider_all_requests_local = !ExceptionHandler.config.try(:dev) if Rails.env.development?
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
# => Migrations
|
|
58
|
+
# => This has to be kept in an initializer (to access app)
|
|
59
|
+
# => https://blog.pivotal.io/labs/labs/leave-your-migrations-in-your-rails-engines
|
|
60
|
+
initializer :migration_paths do |app|
|
|
61
|
+
config.paths["db/migrate"].expanded.each do |expanded_path|
|
|
62
|
+
app.config.paths["db/migrate"] << expanded_path if ExceptionHandler.config.try(:db)
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
#########################################################
|
|
67
|
+
#########################################################
|
|
68
|
+
|
|
69
|
+
end
|
|
70
|
+
end
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
###########################################
|
|
2
|
+
###########################################
|
|
3
|
+
## _ _ _ ##
|
|
4
|
+
## | | | | (_) ##
|
|
5
|
+
## | | | | ___ _ __ ___ _ ___ _ __ ##
|
|
6
|
+
## | | | |/ _ \ '__/ __| |/ _ \| '_ \ ##
|
|
7
|
+
## \ \_/ / __/ | \__ \ | (_) | | | | ##
|
|
8
|
+
## \___/ \___|_| |___/_|\___/|_| |_| ##
|
|
9
|
+
## ##
|
|
10
|
+
###########################################
|
|
11
|
+
###########################################
|
|
12
|
+
|
|
13
|
+
module ExceptionHandler
|
|
14
|
+
module VERSION
|
|
15
|
+
MAJOR = 0
|
|
16
|
+
MINOR = 7
|
|
17
|
+
TINY = 7
|
|
18
|
+
PRE = 0 # "alpha"
|
|
19
|
+
|
|
20
|
+
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
###########################################
|
|
25
|
+
###########################################
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
module ExceptionHandler
|
|
2
|
-
class ViewsGenerator < Rails::Generators::Base
|
|
3
|
-
|
|
4
|
-
###########################################
|
|
5
|
-
###########################################
|
|
6
|
-
###########################################
|
|
7
|
-
|
|
8
|
-
#Views
|
|
9
|
-
VIEWS = %w(views controllers models assets)
|
|
10
|
-
|
|
11
|
-
#Options
|
|
12
|
-
class_option :files, aliases: "-v", default: VIEWS, type: :array, desc: "Select file types (views, models, controllers, assets)"
|
|
13
|
-
|
|
14
|
-
#Needed to reference files
|
|
15
|
-
source_root File.expand_path("../../../../app", __FILE__)
|
|
16
|
-
|
|
17
|
-
###########################################
|
|
18
|
-
###########################################
|
|
19
|
-
###########################################
|
|
20
|
-
|
|
21
|
-
#Files
|
|
22
|
-
def create_files
|
|
23
|
-
options.files.each do |arg|
|
|
24
|
-
directory arg, "app/#{arg}"
|
|
25
|
-
end
|
|
26
|
-
end
|
|
27
|
-
|
|
28
|
-
###########################################
|
|
29
|
-
###########################################
|
|
30
|
-
###########################################
|
|
31
|
-
|
|
32
|
-
end
|
|
33
|
-
end
|
|
1
|
+
module ExceptionHandler
|
|
2
|
+
class ViewsGenerator < Rails::Generators::Base
|
|
3
|
+
|
|
4
|
+
###########################################
|
|
5
|
+
###########################################
|
|
6
|
+
###########################################
|
|
7
|
+
|
|
8
|
+
#Views
|
|
9
|
+
VIEWS = %w(views controllers models assets)
|
|
10
|
+
|
|
11
|
+
#Options
|
|
12
|
+
class_option :files, aliases: "-v", default: VIEWS, type: :array, desc: "Select file types (views, models, controllers, assets)"
|
|
13
|
+
|
|
14
|
+
#Needed to reference files
|
|
15
|
+
source_root File.expand_path("../../../../app", __FILE__)
|
|
16
|
+
|
|
17
|
+
###########################################
|
|
18
|
+
###########################################
|
|
19
|
+
###########################################
|
|
20
|
+
|
|
21
|
+
#Files
|
|
22
|
+
def create_files
|
|
23
|
+
options.files.each do |arg|
|
|
24
|
+
directory arg, "app/#{arg}"
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
###########################################
|
|
29
|
+
###########################################
|
|
30
|
+
###########################################
|
|
31
|
+
|
|
32
|
+
end
|
|
33
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: exception_handler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- R.Peck
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-06-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -125,18 +125,15 @@ dependencies:
|
|
|
125
125
|
description: Rails gem to create custom error pages. Captures exceptions using "exception_app"
|
|
126
126
|
callback, routing to "Exception" controller, rendering the view as required.
|
|
127
127
|
email:
|
|
128
|
-
- rpeck@
|
|
128
|
+
- rpeck@fl.co.uk
|
|
129
129
|
executables: []
|
|
130
130
|
extensions: []
|
|
131
131
|
extra_rdoc_files: []
|
|
132
132
|
files:
|
|
133
|
-
- ".gitattributes"
|
|
134
133
|
- ".gitignore"
|
|
135
|
-
- ".rspec"
|
|
136
134
|
- ".slugignore"
|
|
137
135
|
- ".travis.yml"
|
|
138
136
|
- Gemfile
|
|
139
|
-
- LICENSE.txt
|
|
140
137
|
- README.md
|
|
141
138
|
- Rakefile
|
|
142
139
|
- app/assets/images/exception_handler/alert.jpg
|
|
@@ -171,70 +168,9 @@ files:
|
|
|
171
168
|
- lib/exception_handler.rb
|
|
172
169
|
- lib/exception_handler/config.rb
|
|
173
170
|
- lib/exception_handler/engine.rb
|
|
171
|
+
- lib/exception_handler/version.rb
|
|
174
172
|
- lib/generators/exception_handler/views_generator.rb
|
|
175
|
-
|
|
176
|
-
- spec/dummy/Rakefile
|
|
177
|
-
- spec/dummy/app/assets/config/manifest.js
|
|
178
|
-
- spec/dummy/app/assets/images/.keep
|
|
179
|
-
- spec/dummy/app/assets/javascripts/application.js
|
|
180
|
-
- spec/dummy/app/assets/javascripts/cable.coffee
|
|
181
|
-
- spec/dummy/app/assets/javascripts/channels/.keep
|
|
182
|
-
- spec/dummy/app/assets/stylesheets/application.css
|
|
183
|
-
- spec/dummy/app/channels/application_cable/channel.rb
|
|
184
|
-
- spec/dummy/app/channels/application_cable/connection.rb
|
|
185
|
-
- spec/dummy/app/controllers/application_controller.rb
|
|
186
|
-
- spec/dummy/app/controllers/concerns/.keep
|
|
187
|
-
- spec/dummy/app/helpers/application_helper.rb
|
|
188
|
-
- spec/dummy/app/jobs/application_job.rb
|
|
189
|
-
- spec/dummy/app/mailers/application_mailer.rb
|
|
190
|
-
- spec/dummy/app/models/application_record.rb
|
|
191
|
-
- spec/dummy/app/models/concerns/.keep
|
|
192
|
-
- spec/dummy/app/views/layouts/application.html.erb
|
|
193
|
-
- spec/dummy/app/views/layouts/mailer.html.erb
|
|
194
|
-
- spec/dummy/app/views/layouts/mailer.text.erb
|
|
195
|
-
- spec/dummy/bin/bundle
|
|
196
|
-
- spec/dummy/bin/rails
|
|
197
|
-
- spec/dummy/bin/rake
|
|
198
|
-
- spec/dummy/bin/setup
|
|
199
|
-
- spec/dummy/bin/update
|
|
200
|
-
- spec/dummy/config.ru
|
|
201
|
-
- spec/dummy/config/application.rb
|
|
202
|
-
- spec/dummy/config/boot.rb
|
|
203
|
-
- spec/dummy/config/cable.yml
|
|
204
|
-
- spec/dummy/config/database.yml
|
|
205
|
-
- spec/dummy/config/environment.rb
|
|
206
|
-
- spec/dummy/config/environments/development.rb
|
|
207
|
-
- spec/dummy/config/environments/production.rb
|
|
208
|
-
- spec/dummy/config/environments/test.rb
|
|
209
|
-
- spec/dummy/config/initializers/active_record_belongs_to_required_by_default.rb
|
|
210
|
-
- spec/dummy/config/initializers/application_controller_renderer.rb
|
|
211
|
-
- spec/dummy/config/initializers/assets.rb
|
|
212
|
-
- spec/dummy/config/initializers/backtrace_silencers.rb
|
|
213
|
-
- spec/dummy/config/initializers/callback_terminator.rb
|
|
214
|
-
- spec/dummy/config/initializers/cookies_serializer.rb
|
|
215
|
-
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
|
216
|
-
- spec/dummy/config/initializers/inflections.rb
|
|
217
|
-
- spec/dummy/config/initializers/mime_types.rb
|
|
218
|
-
- spec/dummy/config/initializers/per_form_csrf_tokens.rb
|
|
219
|
-
- spec/dummy/config/initializers/request_forgery_protection.rb
|
|
220
|
-
- spec/dummy/config/initializers/session_store.rb
|
|
221
|
-
- spec/dummy/config/initializers/wrap_parameters.rb
|
|
222
|
-
- spec/dummy/config/locales/en.yml
|
|
223
|
-
- spec/dummy/config/puma.rb
|
|
224
|
-
- spec/dummy/config/routes.rb
|
|
225
|
-
- spec/dummy/config/secrets.yml
|
|
226
|
-
- spec/dummy/lib/assets/.keep
|
|
227
|
-
- spec/dummy/log/.keep
|
|
228
|
-
- spec/dummy/public/404.html
|
|
229
|
-
- spec/dummy/public/422.html
|
|
230
|
-
- spec/dummy/public/500.html
|
|
231
|
-
- spec/dummy/public/apple-touch-icon-precomposed.png
|
|
232
|
-
- spec/dummy/public/apple-touch-icon.png
|
|
233
|
-
- spec/dummy/public/favicon.ico
|
|
234
|
-
- spec/exception_handler.rb
|
|
235
|
-
- spec/exception_handler/exception_controller_spec.rb
|
|
236
|
-
- spec/spec_helper.rb
|
|
237
|
-
homepage: http://github.com/richpeck/exception_handler
|
|
173
|
+
homepage: https://github.com/richpeck/exception_handler
|
|
238
174
|
licenses:
|
|
239
175
|
- MIT
|
|
240
176
|
metadata: {}
|
|
@@ -254,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
254
190
|
version: '0'
|
|
255
191
|
requirements: []
|
|
256
192
|
rubyforge_project:
|
|
257
|
-
rubygems_version: 2.6.
|
|
193
|
+
rubygems_version: 2.6.12
|
|
258
194
|
signing_key:
|
|
259
195
|
specification_version: 4
|
|
260
196
|
summary: Rails gem to show custom error pages in production. Also logs errors in db
|
data/.gitattributes
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
*.psd filter=lfs diff=lfs merge=lfs -text
|
data/.rspec
DELETED
data/LICENSE.txt
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
Copyright (c) 2014 richpeck
|
|
2
|
-
|
|
3
|
-
MIT License
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
-
a copy of this software and associated documentation files (the
|
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
-
the following conditions:
|
|
12
|
-
|
|
13
|
-
The above copyright notice and this permission notice shall be
|
|
14
|
-
included in all copies or substantial portions of the Software.
|
|
15
|
-
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/spec/database.yml
DELETED
data/spec/dummy/Rakefile
DELETED
|
File without changes
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
|
2
|
-
// listed below.
|
|
3
|
-
//
|
|
4
|
-
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
|
5
|
-
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
|
6
|
-
//
|
|
7
|
-
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
|
8
|
-
// compiled file. JavaScript code in this file should be added after the last require_* statement.
|
|
9
|
-
//
|
|
10
|
-
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
|
11
|
-
// about supported directives.
|
|
12
|
-
//
|
|
13
|
-
//= require_tree .
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# Action Cable provides the framework to deal with WebSockets in Rails.
|
|
2
|
-
# You can generate new channels where WebSocket features live using the rails generate channel command.
|
|
3
|
-
#
|
|
4
|
-
# Turn on the cable connection by removing the comments after the require statements (and ensure it's also on in config/routes.rb).
|
|
5
|
-
#
|
|
6
|
-
#= require action_cable
|
|
7
|
-
#= require_self
|
|
8
|
-
#= require_tree ./channels
|
|
9
|
-
#
|
|
10
|
-
# @App ||= {}
|
|
11
|
-
# App.cable = ActionCable.createConsumer()
|
|
File without changes
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
3
|
-
* listed below.
|
|
4
|
-
*
|
|
5
|
-
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
|
6
|
-
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
|
7
|
-
*
|
|
8
|
-
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
|
9
|
-
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
|
|
10
|
-
* files in this directory. Styles in this file should be added after the last require_* statement.
|
|
11
|
-
* It is generally better to create a new file per style scope.
|
|
12
|
-
*
|
|
13
|
-
*= require_tree .
|
|
14
|
-
*= require_self
|
|
15
|
-
*/
|