ObjectSpace stats:
TOTAL: 379872
FREE: 151064
T_STRING: 94128
T_IMEMO: 85328
T_ARRAY: 18023
T_OBJECT: 7755
T_CLASS: 7237
T_DATA: 5405
T_HASH: 3707
T_REGEXP: 1848
T_ICLASS: 1776
T_MODULE: 1186
T_SYMBOL: 957
T_STRUCT: 790
T_RATIONAL: 626
T_BIGNUM: 18
T_FILE: 10
T_FLOAT: 9
T_MATCH: 4
T_COMPLEX: 1
1000 Largest strings:
/*!
* animate.css -http://daneden.me/animate
* Version - 3.5.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2016 Daniel Eden
*/
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
(len: 510217)
/*!
* animate.css -http://daneden.me/animate
* Version - 3.5.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2016 Daniel Eden
*/
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
(len: 510217)
/*!
* animate.css -http://daneden.me/animate
* Version - 3.5.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2016 Daniel Eden
*/
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
(len: 510107)
/*!
* animate.css -http://daneden.me/animate
* Version - 3.5.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2016 Daniel Eden
*/
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
(len: 510107)
(len: 495)
In order to autoload safely at boot time, please wrap your code in a reloader
callback this way:
Rails.application.reloader.to_prepare do
# Autoload classes and modules needed at boot time here.
end
That block runs when the application boots, and every time there is a reload.
For historical reasons, it may run twice, so it has to be idempotent.
Check the "Autoloading and Reloading Constants" guide to learn more about how
Rails autoloads and reloads.
(len: 473)
\A
(?:(? .*)/)?
(?_)?
(?.*?)
(?:\.(?[a-z]{2}(?:-[A-Z]{2})?))??
(?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip))??
(?:\+(?[^.]*))??
(?:\.(?raw|erb|html|builder|ruby|jbuilder))?
\z
(len: 468)
(len: 465)
local zset_key = KEYS[1]
local hash_key = KEYS[2]
local id = ARGV[1]
local score = tonumber(ARGV[2])
local bytes = ARGV[3]
local limit = tonumber(ARGV[4])
redis.call("ZADD", zset_key, score, id)
redis.call("HSET", hash_key, id, bytes)
if redis.call("ZCARD", zset_key) > limit then
local lowest_snapshot_id = redis.call("ZRANGE", zset_key, 0, 0)[1]
redis.call("ZREM", zset_key, lowest_snapshot_id)
redis.call("HDEL", hash_key, lowest_snapshot_id)
end
(len: 456)
Enumerating ActiveModel::Errors as a hash has been deprecated.
In Rails 6.1, `errors` is an array of Error objects,
therefore it should be accessed by a block with a single block
parameter like this:
person.errors.each do |error|
attribute = error.attribute
message = error.message
end
You are passing a block expecting two parameters,
so the old hash behavior is simulated. As this is deprecated,
this will result in an ArgumentError in Rails 6.2.
(len: 455)
SELECT fk.referenced_table_name AS 'to_table',
fk.referenced_column_name AS 'primary_key',
fk.column_name AS 'column',
fk.constraint_name AS 'name',
rc.update_rule AS 'on_update',
rc.delete_rule AS 'on_delete'
FROM information_schema.referential_constraints rc
JOIN information_schema.key_column_usage fk
USING (constraint_schema, constraint_name)
WHERE fk.referenced_column_name IS NOT NULL
AND fk.table_schema =
(len: 451)
Make sure the gem bundle is installedRun the following from the application directory: bundle install Check the application process's execution environmentIs the application running under the expected execution environment? A common problem is that the application runs under a different user than it is supposed to. The application is currently running as the
(len: 436)
Make sure the gem bundle is installedRun the following from the application directory: bundle install Check the application process's execution environmentIs the application running under the expected execution environment? A common problem is that the application runs under a different user than it is supposed to. The application is currently running as the
(len: 436)
is currently disabled, likely because your application is still in its loading phase.
This method is meant to display text in the user locale, so calling it before the user locale has
been set is likely to display text from the wrong locale to some users.
If you have a legitimate reason to access i18n data outside of the user flow, you can do so by passing
the desired locale explictly with the `locale` argument, e.g. `I18n.
(len: 430)
-----BEGIN DH PARAMETERS-----
MIIBCAKCAQEA7E6kBrYiyvmKAMzQ7i8WvwVk9Y/+f8S7sCTN712KkK3cqd1jhJDY
JbrYeNV3kUIKhPxWHhObHKpD1R84UpL+s2b55+iMd6GmL7OYmNIT/FccKhTcveab
VBmZT86BZKYyf45hUF9FOuUM9xPzuK3Vd8oJQvfYMCd7LPC0taAEljQLR4Edf8E6
YoaOffgTf5qxiwkjnlVZQc3whgnEt9FpVMvQ9eknyeGB5KHfayAc3+hUAvI3/Cr3
1bNveX5wInh5GDx1FGhKBZ+s1H+aedudCm7sCgRwv8lKWYGiHzObSma8A86KG+MD
7Lo5JquQ3DlBodj3IDyPrxIv96lvRPFtAwIBAg==
-----END DH PARAMETERS-----
(len: 424)
{/home/ubuntu/.rbenv/versions/2.6.8/lib/ruby/gems/2.6.0/gems/actionmailbox-6.1.4.1/app/views/**/*,/home/ubuntu/.rbenv/versions/2.6.8/lib/ruby/gems/2.6.0/gems/actiontext-6.1.4.1/app/views/**/*,/home/ubuntu/.rbenv/versions/2.6.8/lib/ruby/gems/2.6.0/gems/devise-4.8.0/app/views/**/*,/home/ubuntu/.rbenv/versions/2.6.8/lib/ruby/gems/2.6.0/gems/kaminari-core-1.2.1/app/views/**/*,/home/ubuntu/pav/PAVES1/app/views/**/*}
(len: 414)
SECURITY WARNING: No secret option provided to Rack::Session::Cookie.
This poses a security threat. It is strongly recommended that you
provide a secret to prevent exploits that may be possible from crafted
cookies. This will not be supported in future versions of Rack, and
future versions will even invalidate your existing user cookies.
Called from:
(len: 402)
. You can work around by passing
`skip: :omniauth_callbacks` to the `devise_for` call and extract omniauth
options to another `devise_for` call outside the scope. Here is an example:
devise_for :users, only: :omniauth_callbacks, controllers: {omniauth_callbacks: 'users/omniauth_callbacks'}
scope '/(:locale)', locale: /ru|en/ do
devise_for :users, skip: :omniauth_callbacks
end
(len: 399)
(len: 395)
[DEVISE] We have detected that you are using devise_for inside engine routes. In this case, you probably want to set Devise.router_name = MOUNT_POINT, where MOUNT_POINT is a symbol representing where this engine will be mounted at. For now Devise will default the mount point to :main_app. You can explicitly set it to :main_app as well in case you want to keep the current behavior.
(len: 383)
Bundler was unable to find one of the gems defined in the Gemfile
Most common causes |
Solution finder |
(len: 378)
Bundler was unable to find one of the gems defined in the Gemfile
Most common causes |
Solution finder |
(len: 378)
\A((?-mix:[a-zA-Z][0-9a-zA-Z]*|[0-9]+(?:\.[0-9]+)*))=(?x-mi:
(?!["#])((?:(?-mix:[^\\",=+<>#;])|(?-mix:\\(?:[,=+<>#;]|\\|"|(?-mix:(?-mix:[0-9a-fA-F])(?-mix:[0-9a-fA-F])))))*)|
\#((?-mix:(?-mix:(?-mix:[0-9a-fA-F])(?-mix:[0-9a-fA-F]))+))|
"((?:(?-mix:[^\\"])|(?-mix:\\(?:[,=+<>#;]|\\|"|(?-mix:(?-mix:[0-9a-fA-F])(?-mix:[0-9a-fA-F])))))*)"
)
(len: 375)
\A((?-mix:[a-zA-Z][0-9a-zA-Z]*|[0-9]+(?:\.[0-9]+)*))=(?x-mi:
(?!["#])((?:(?-mix:[^\\",=+<>#;])|(?-mix:\\(?:[,=+<>#;]|\\|"|(?-mix:(?-mix:[0-9a-fA-F])(?-mix:[0-9a-fA-F])))))*)|
\#((?-mix:(?-mix:(?-mix:[0-9a-fA-F])(?-mix:[0-9a-fA-F]))+))|
"((?:(?-mix:[^\\"])|(?-mix:\\(?:[,=+<>#;]|\\|"|(?-mix:(?-mix:[0-9a-fA-F])(?-mix:[0-9a-fA-F])))))*)"
)
(len: 375)
The RVM gemset may be broken.
|
Read solution
|
(len: 369)
The RVM gemset may be broken.
|
Read solution
|
(len: 369)
. Possible causes:
1. You want to set webpacker.yml value of compile to true for your environment
unless you are using the `webpack -w` or the webpack-dev-server.
2. webpack has not yet re-run to reflect updates.
3. You have misconfigured Webpacker's config/webpacker.yml file.
4. Your webpack configuration is not creating a manifest.
Your manifest contains:
(len: 363)
(num = nil)
per_page = max_per_page && (default_per_page > max_per_page) ? max_per_page : default_per_page
limit(per_page).offset(per_page * ((num = num.to_i - 1) < 0 ? 0 : num)).extending do
include Kaminari::ActiveRecordRelationMethods
include Kaminari::PageScopeMethods
end
end
(len: 343)
Using `return`, `break` or `throw` to exit a transaction block is
deprecated without replacement. If the `throw` came from
`Timeout.timeout(duration)`, pass an exception class as a second
argument so it doesn't use `throw` to abort its block. This results
in the transaction being committed, but in the next release of Rails
it will rollback.
(len: 343)
(?-mix:((?-mix:(?-mix:(?-mix:[^ \t\v\n\r)(><@,;:\\"\/\[\]?='*%])+)(?:\*0)?\*))=((?-mix:[a-zA-Z0-9\-]*'[a-zA-Z0-9\-]*'(?-mix:%[0-9a-fA-F]{2}|(?-mix:[^ \t\v\n\r)(><@,;:\\"\/\[\]?='*%]))*)))|(?-mix:((?-mix:(?-mix:(?-mix:[^ \t\v\n\r)(><@,;:\\"\/\[\]?='*%])+)\*[1-9][0-9]*\*))=((?-mix:%[0-9a-fA-F]{2}|(?-mix:[^ \t\v\n\r)(><@,;:\\"\/\[\]?='*%]))*))
(len: 342)
(?-mix:((?-mix:(?-mix:(?-mix:[^ \t\v\n\r)(><@,;:\\"\/\[\]?='*%])+)(?:\*0)?\*))=((?-mix:[a-zA-Z0-9\-]*'[a-zA-Z0-9\-]*'(?-mix:%[0-9a-fA-F]{2}|(?-mix:[^ \t\v\n\r)(><@,;:\\"\/\[\]?='*%]))*)))|(?-mix:((?-mix:(?-mix:(?-mix:[^ \t\v\n\r)(><@,;:\\"\/\[\]?='*%])+)\*[1-9][0-9]*\*))=((?-mix:%[0-9a-fA-F]{2}|(?-mix:[^ \t\v\n\r)(><@,;:\\"\/\[\]?='*%]))*))
(len: 342)
Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".
(len: 340)
;
var json = JSON.stringify(graph);
var blob = new Blob([json], { type: 'text/plain' });
var objUrl = encodeURIComponent(URL.createObjectURL(blob));
var iframe = document.createElement('IFRAME');
iframe.setAttribute('id', 'speedscope-iframe');
document.body.appendChild(iframe);
var iframeUrl = '
(len: 338)
end # end
if read_from_cache_file # if read_from_cache_file
data = File.read(cache_file) # data = File.read(cache_file)
(len: 336)
end # end
if read_from_cache_file # if read_from_cache_file
data = File.read(cache_file) # data = File.read(cache_file)
(len: 336)
To respond to a custom format, register it as a MIME type first: https://guides.rubyonrails.org/action_controller_overview.html#restful-downloads. If you meant to respond to a variant like :tablet or :phone, not a custom format, be sure to nest your variant response within a format response: format.html { |html| html.tablet { ... } }
(len: 335)
Check the application process's execution environment
Is the application running under the expected execution environment?
A common problem is that the application runs under a different user than
it is supposed to. The application is currently running as the
(len: 326)
.supports_cache_versioning? #=> true).
Next best, switch to a different cache store that does support cache versioning:
https://guides.rubyonrails.org/caching_with_rails.html#cache-stores.
To keep using the current cache store, you can turn off cache versioning entirely:
config.active_record.cache_versioning = false
(len: 326)
'
You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here:
https://guides.rubyonrails.org/routing.html#restricting-the-routes-created
(len: 326)
Check the application process's execution environment
Is the application running under the expected execution environment?
A common problem is that the application runs under a different user than
it is supposed to. The application is currently running as the
(len: 326)
\A\s*
(?:(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun)\s*,\s*)?
(\d{1,2})\s+
(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s+
(\d{2,})\s+
(\d{2})\s*
:\s*(\d{2})\s*
(?::\s*(\d{2}))?\s+
([+-]\d{4}|
UT|GMT|EST|EDT|CST|CDT|MST|MDT|PST|PDT|[A-IK-Z])
(len: 325)
mappings.unshift mappings.delete(favorite.to_sym) if favorite
mappings.each do |mapping|
opts[:scope] = mapping
warden.authenticate!(opts) if !devise_controller? || opts.delete(:force)
end
end
end
def
(len: 325)
\A\s*
(?:(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun)\s*,\s*)?
(\d{1,2})\s+
(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s+
(\d{2,})\s+
(\d{2})\s*
:\s*(\d{2})\s*
(?::\s*(\d{2}))?\s+
([+-]\d{4}|
UT|GMT|EST|EDT|CST|CDT|MST|MDT|PST|PDT|[A-IK-Z])
(len: 325)
&& File.exist?(cache_file)
cache_file_stat = File.stat(cache_file) # cache_file_stat = File.stat(cache_file)
read_from_cache_file = # read_from_cache_file =
Time.now - cache_file_stat.mtime <
(len: 322)
&& File.exist?(cache_file)
cache_file_stat = File.stat(cache_file) # cache_file_stat = File.stat(cache_file)
read_from_cache_file = # read_from_cache_file =
Time.now - cache_file_stat.mtime <
(len: 322)
Wrong OmniAuth configuration. If you are getting this exception, it means that either:
1) You are manually setting OmniAuth.config.path_prefix and it doesn't match the Devise one
2) You are setting :omniauthable in more than one model
3) You changed your Devise routes/OmniAuth setting and haven't restarted your server
(len: 320)
(?!["#])((?:(?-mix:[^\\",=+<>#;])|(?-mix:\\(?:[,=+<>#;]|\\|"|(?-mix:(?-mix:[0-9a-fA-F])(?-mix:[0-9a-fA-F])))))*)|
\#((?-mix:(?-mix:(?-mix:[0-9a-fA-F])(?-mix:[0-9a-fA-F]))+))|
"((?:(?-mix:[^\\"])|(?-mix:\\(?:[,=+<>#;]|\\|"|(?-mix:(?-mix:[0-9a-fA-F])(?-mix:[0-9a-fA-F])))))*)"
(len: 314)
(?!["#])((?:(?-mix:[^\\",=+<>#;])|(?-mix:\\(?:[,=+<>#;]|\\|"|(?-mix:(?-mix:[0-9a-fA-F])(?-mix:[0-9a-fA-F])))))*)|
\#((?-mix:(?-mix:(?-mix:[0-9a-fA-F])(?-mix:[0-9a-fA-F]))+))|
"((?:(?-mix:[^\\"])|(?-mix:\\(?:[,=+<>#;]|\\|"|(?-mix:(?-mix:[0-9a-fA-F])(?-mix:[0-9a-fA-F])))))*)"
(len: 314)
You should not use the `match` method in your router without specifying an HTTP method.
If you want to expose your action to both GET and POST, add `via: [:get, :post]` option.
If you want to expose your action to GET, use `get` in the router:
Instead of: match "controller#action"
Do: get "controller#action"
(len: 313)
[Devise] The second argument of `DatabaseAuthenticatable#update_without_password`
(`options`) is deprecated and it will be removed in the next major version.
It was added to support a feature deprecated in Rails 4, so you can safely remove it
from your code.
(len: 307)
This Gemfile does not include an explicit global source. Not using an explicit global source may result in a different lockfile being generated depending on the gems you have installed locally before bundler is run. Instead, define a global source in your Gemfile like this: source "https://rubygems.org".
(len: 305)
^
# The host:
(?
# An IPv6 address:
(\[(?.*)\])
|
# An IPv4 address:
(?[\d\.]+)
|
# A hostname:
(?[a-zA-Z0-9\.\-]+)
)
# The optional port:
(:(?\d+))?
$
(len: 305)
, # :text_field,
@object_name, # @object_name,
method, # method,
objectify_options(options)) # objectify_options(options))
end # end
(len: 305)
^
# The host:
(?
# An IPv6 address:
(\[(?.*)\])
|
# An IPv4 address:
(?[\d\.]+)
|
# A hostname:
(?[a-zA-Z0-9\.\-]+)
)
# The optional port:
(:(?\d+))?
$
(len: 305)
[Devise] The second argument of `DatabaseAuthenticatable#update_with_password`
(`options`) is deprecated and it will be removed in the next major version.
It was added to support a feature deprecated in Rails 4, so you can safely remove it
from your code.
(len: 304)
\A
(
(?:
# `table_name`.`column_name` | function(one or no argument)
((?:\w+\.|`\w+`\.)?(?:\w+|`\w+`)) | \w+\((?:|\g<2>)\)
)
(?:(?:\s+AS)?\s+(?:\w+|`\w+`))?
)
(?:\s*,\s*\g<1>)*
\z
(len: 303)
/home/ubuntu/.rbenv/versions/2.6.8/bin:/home/ubuntu/.rbenv/libexec:/home/ubuntu/.rbenv/plugins/ruby-build/bin:/home/ubuntu/.rbenv/plugins/ruby-build/bin:/home/ubuntu/.rbenv/shims:/home/ubuntu/.rbenv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
(len: 301)
mappings.unshift mappings.delete(favorite.to_sym) if favorite
mappings.each do |mapping|
current = warden.authenticate(scope: mapping)
return current if current
end
nil
end
def current_
(len: 299)
ObjectSpace stats:
TOTAL: 379872
FREE: 151064
T_STRING: 94128
T_IMEMO: 85328
T_ARRAY: 18023
T_OBJECT: 7755
T_CLASS: 7237
T_DATA: 5405
T_HASH: 3707
T_REGEXP: 1848
T_ICLASS: 1776
T_MODULE: 1186
T_SYMBOL: 957
T_STRUCT: 790
T_RATIONAL: 626
T_BIGNUM: 18
T_FILE: 10
T_FLOAT: 9
T_MATCH: 4
T_COMPLEX: 1
1000 Largest strings:
(len: 295)
In Rails 6.2, `after_enqueue`/`after_perform` callbacks no longer run if `before_enqueue`/`before_perform` respectively halts with `throw :abort`.
To enable this behavior, uncomment the `config.active_job.skip_after_callbacks_if_terminated` config
in the new 6.1 framework defaults initializer.
(len: 295)
You don't have any routes defined!
(len: 295)
ObjectSpace stats:
TOTAL: 379872
FREE: 151064
T_STRING: 94128
T_IMEMO: 85328
T_ARRAY: 18023
T_OBJECT: 7755
T_CLASS: 7237
T_DATA: 5405
T_HASH: 3707
T_REGEXP: 1848
T_ICLASS: 1776
T_MODULE: 1186
T_SYMBOL: 957
T_STRUCT: 790
T_RATIONAL: 626
T_BIGNUM: 18
T_FILE: 10
T_FLOAT: 9
T_MATCH: 4
T_COMPLEX: 1
(len: 295)
") # cache_file = File.join(@@cache_dir, "httpd")
end # end
read_from_cache_file = false # read_from_cache_file = false
if
(len: 293)
") # cache_file = File.join(@@cache_dir, "httpd")
end # end
read_from_cache_file = false # read_from_cache_file = false
if
(len: 293)
\A
(
(?:
# `table_name`.`column_name` | function(one or no argument)
((?:\w+\.|`\w+`\.)?(?:\w+|`\w+`)) | \w+\((?:|\g<2>)\)
)
(?:\s+ASC|\s+DESC)?
)
(?:\s*,\s*\g<1>)*
\z
(len: 291)
\A
(
(?:
# table_name.column_name | function(one or no argument)
((?:\w+\.)?\w+) | \w+\((?:|\g<2>)\)
)
(?:\s+ASC|\s+DESC)?
(?:\s+NULLS\s+(?:FIRST|LAST))?
)
(?:\s*,\s*\g<1>)*
\z
(len: 288)
(?:(?:[a-zA-Z0-9\-.]|%\h\h)+|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|\[(?:(?:[a-fA-F\d]{1,4}:)*(?:[a-fA-F\d]{1,4}|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})|(?:(?:[a-fA-F\d]{1,4}:)*[a-fA-F\d]{1,4})?::(?:(?:[a-fA-F\d]{1,4}:)*(?:[a-fA-F\d]{1,4}|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}))?)\])(?::\d*)?
(len: 281)
(?:(?:[a-zA-Z0-9\-.]|%\h\h)+|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|\[(?:(?:[a-fA-F\d]{1,4}:)*(?:[a-fA-F\d]{1,4}|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})|(?:(?:[a-fA-F\d]{1,4}:)*[a-fA-F\d]{1,4})?::(?:(?:[a-fA-F\d]{1,4}:)*(?:[a-fA-F\d]{1,4}|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}))?)\])(?::\d*)?
(len: 281)
\A(?:(?:[a-zA-Z0-9\-.]|%\h\h)+|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|\[(?:(?:[a-fA-F\d]{1,4}:)*(?:[a-fA-F\d]{1,4}|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})|(?:(?:[a-fA-F\d]{1,4}:)*[a-fA-F\d]{1,4})?::(?:(?:[a-fA-F\d]{1,4}:)*(?:[a-fA-F\d]{1,4}|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}))?)\])\z
(len: 276)
does not respond to 'devise' method. This usually means you haven't loaded your ORM file or it's being loaded too late. To fix it, be sure to require 'devise/orm/YOUR_ORM' inside 'config/initializers/devise.rb' or before your application definition in 'config/application.rb'
(len: 276)
\A(?:(?:[a-zA-Z0-9\-.]|%\h\h)+|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|\[(?:(?:[a-fA-F\d]{1,4}:)*(?:[a-fA-F\d]{1,4}|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})|(?:(?:[a-fA-F\d]{1,4}:)*[a-fA-F\d]{1,4})?::(?:(?:[a-fA-F\d]{1,4}:)*(?:[a-fA-F\d]{1,4}|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}))?)\])\z
(len: 276)
TOTAL: 379872
FREE: 151064
T_STRING: 94128
T_IMEMO: 85328
T_ARRAY: 18023
T_OBJECT: 7755
T_CLASS: 7237
T_DATA: 5405
T_HASH: 3707
T_REGEXP: 1848
T_ICLASS: 1776
T_MODULE: 1186
T_SYMBOL: 957
T_STRUCT: 790
T_RATIONAL: 626
T_BIGNUM: 18
T_FILE: 10
T_FLOAT: 9
T_MATCH: 4
T_COMPLEX: 1
(len: 275)
TOTAL: 379872
FREE: 151064
T_STRING: 94128
T_IMEMO: 85328
T_ARRAY: 18023
T_OBJECT: 7755
T_CLASS: 7237
T_DATA: 5405
T_HASH: 3707
T_REGEXP: 1848
T_ICLASS: 1776
T_MODULE: 1186
T_SYMBOL: 957
T_STRUCT: 790
T_RATIONAL: 626
T_BIGNUM: 18
T_FILE: 10
T_FLOAT: 9
T_MATCH: 4
T_COMPLEX: 1
(len: 275)
You can no longer specify a path source by itself. Instead,
either use the :path option on a gem, or specify the gems that
bundler should find in the path source by passing a block to
the path method, like:
path 'dir/containing/rails' do
gem 'rails'
end
(len: 274)
def initialize(*args)
@hash = RBTree.new
super
end
def add(o)
o.respond_to?(:<=>) or raise ArgumentError, "value must respond to <=>"
super
end
alias << add
(len: 274)
You can no longer specify a git source by itself. Instead,
either use the :git option on a gem, or specify the gems that
bundler should find in the git source by passing a block to
the git method, like:
git 'git://github.com/rails/rails.git' do
gem 'rails'
end
(len: 273)
Psych is a YAML parser and emitter. Psych leverages libyaml[https://pyyaml.org/wiki/LibYAML]
for its YAML parsing and emitting capabilities. In addition to wrapping libyaml,
Psych also knows how to serialize and de-serialize most Ruby objects to and from the YAML format.
(len: 272)
(?:(?:[a-zA-Z0-9\-.]|%\h\h)+|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|\[(?:(?:[a-fA-F\d]{1,4}:)*(?:[a-fA-F\d]{1,4}|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})|(?:(?:[a-fA-F\d]{1,4}:)*[a-fA-F\d]{1,4})?::(?:(?:[a-fA-F\d]{1,4}:)*(?:[a-fA-F\d]{1,4}|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}))?)\])
(len: 272)
(?:(?:[a-zA-Z0-9\-.]|%\h\h)+|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|\[(?:(?:[a-fA-F\d]{1,4}:)*(?:[a-fA-F\d]{1,4}|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})|(?:(?:[a-fA-F\d]{1,4}:)*[a-fA-F\d]{1,4})?::(?:(?:[a-fA-F\d]{1,4}:)*(?:[a-fA-F\d]{1,4}|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}))?)\])
(len: 272)
def respond_to_missing?(name, include_private = false)
# It may look like an oversight, but we deliberately do not pass
# +include_private+, because they do not get delegated.
return false if name == :marshal_dump || name == :_dump
(len: 271)
\A # start of string
.+ # file path (one or more characters)
(?= # stop previous match when
:\d+ # a colon is followed by one or more digits
:in # followed by a colon followed by in
)
(len: 269)
0001-Remove-script-macro-support.patch 0002-Update-entities-to-remove-handling-of-ssi.patch 0003-libxml2.la-is-in-top_builddir.patch 0004-use-glibc-strlen.patch 0005-avoid-isnan-isinf.patch 0006-update-automake-files-for-arm64.patch 0007-Fix-XPath-recursion-limit.patch
(len: 269)
.
Being able to do this is deprecated. Autoloading during initialization is going
to be an error condition in future versions of Rails.
Reloading does not reboot the application, and therefore code executed during
initialization does not run again. So, if you reload
(len: 269)
\A # start of string
.+ # file path (one or more characters)
(?= # stop previous match when
:\d+ # a colon is followed by one or more digits
:in # followed by a colon followed by in
)
(len: 269)
shard was `nil`. Please check your configuration. If you want your writing role to be something other than `:writing` set `config.active_record.writing_role` in your application configuration. The same setting should be applied for the `reading_role` if applicable.
(len: 266)
\A(?:[\-_.!~*'()a-zA-Z\d;@&=+$,]|%[a-fA-F\d]{2})+(?:/(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*(?:;(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*)*(?:/(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*(?:;(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*)*)*)?\z
(len: 263)
\A(?:[\-_.!~*'()a-zA-Z\d;@&=+$,]|%[a-fA-F\d]{2})+(?:/(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*(?:;(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*)*(?:/(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*(?:;(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*)*)*)?\z
(len: 263)
environment. This is
usually a mistake. To ensure it's only activated in development
mode, move it to the development group of your Gemfile:
gem 'web-console', group: :development
If you still want to run it in the
(len: 262)
\A(?:[\(\s]|(?m-ix:(?:\-\-.*\n)*|\/\*(?:[^\*]|\*[^\/])*\*\/))*(?-mix:(?i-mx:desc)|(?i-mx:describe)|(?i-mx:set)|(?i-mx:show)|(?i-mx:use)|(?i-mx:begin)|(?i-mx:commit)|(?i-mx:explain)|(?i-mx:release)|(?i-mx:rollback)|(?i-mx:savepoint)|(?i-mx:select)|(?i-mx:with))
(len: 260)
(?:[\-_.!~*'()a-zA-Z\d;@&=+$,]|%[a-fA-F\d]{2})+(?:/(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*(?:;(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*)*(?:/(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*(?:;(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*)*)*)?
(len: 259)
(?:[\-_.!~*'()a-zA-Z\d;@&=+$,]|%[a-fA-F\d]{2})+(?:/(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*(?:;(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*)*(?:/(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*(?:;(?:[\-_.!~*'()a-zA-Z\d:@&=+$,]|%[a-fA-F\d]{2})*)*)*)?
(len: 259)
-' + frame_id);
if (currentSource && el) {
currentSource.className += " hidden";
el.className = el.className.replace(" hidden", "");
currentSource = el;
}
}
}
})();
(len: 258)
Your Gemfile contains multiple global sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source.
(len: 257)
Using `Range#include?` to check the inclusion of a value in
a date time range is deprecated.
It is recommended to use `Range#cover?` instead of `Range#include?` to
check the inclusion of a value in a date time range.
(len: 257)
. However, because you are using RVM, this is not allowed: the option must point to an RVM wrapper script, not a raw Ruby binary. This is because RVM is implemented through various environment variables, which are set through the wrapper script.
(len: 253)
. However, because you are using RVM, this is not allowed: the option must point to an RVM wrapper script, not a raw Ruby binary. This is because RVM is implemented through various environment variables, which are set through the wrapper script.
(len: 253)
(*args) # _unmemoized_httpd(*args)
end # end
end # end
(len: 252)
(*args) # _unmemoized_httpd(*args)
end # end
end # end
(len: 252)
config.eager_load is set to nil. Please update your config/environments/*.rb files accordingly:
* development - set it to false
* test - set it to false (unless you use a tool that preloads your test environment)
* production - set it to true
(len: 251)
(*args)
monitor = @_monitor
monitor or raise("BUG: Internal monitor was not properly initialized. Please report this to the concurrent-ruby developers.")
monitor.synchronize { super }
end
(len: 250)
\A
(
(?:
# table_name.column_name | function(one or no argument)
((?:\w+\.)?\w+) | \w+\((?:|\g<2>)\)
)
(?:(?:\s+AS)?\s+\w+)?
)
(?:\s*,\s*\g<1>)*
\z
(len: 249)
You are using a system-wide-installed RVM Ruby installation.
It is possible that, at the same time, your gems are installed
to the home directory (
(len: 246)
|
You are using a system-wide-installed RVM Ruby installation.
It is possible that, at the same time, your gems are installed
to the home directory (
(len: 246)
gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
(len: 242)
gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
(len: 242)
gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
(len: 242)
(*args)
monitor = @_monitor
monitor or raise("BUG: Internal monitor was not properly initialized. Please report this to the concurrent-ruby developers.")
monitor.synchronize { super }
end
(len: 242)
gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
(len: 242)
gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
(len: 242)
gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
(len: 242)
Is your gem bundle installed to the home directory, while at the same time you are using a Ruby that is installed by RVM in a system-wide manner?Your Ruby interpreter is installed by RVM in a system-wide manner: it is located in
(len: 241)
\A
(\d{4})-(\d\d)-(\d\d)(?:T|\s) # 2020-06-20T
(\d\d):(\d\d):(\d\d)(?:\.(\d{1,6})\d*)? # 10:20:30.123456
(?:(Z(?=\z)|[+-]\d\d)(?::?(\d\d))?)? # +09:00
\z
(len: 241)
| |