Some new rubocop checks.
This commit is contained in:
parent
60121a25fb
commit
d5ab29474f
5 changed files with 62 additions and 60 deletions
|
@ -1,6 +1,7 @@
|
||||||
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
||||||
|
|
||||||
module User::Assets
|
class User
|
||||||
|
module Assets
|
||||||
|
|
||||||
=begin
|
=begin
|
||||||
|
|
||||||
|
@ -83,5 +84,5 @@ returns
|
||||||
}
|
}
|
||||||
data
|
data
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
||||||
|
|
||||||
module User
|
class User
|
||||||
module Permission
|
module Permission
|
||||||
|
|
||||||
=begin
|
=begin
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
||||||
|
|
||||||
module User
|
class User
|
||||||
module Search
|
module Search
|
||||||
|
|
||||||
=begin
|
=begin
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
||||||
|
|
||||||
module User
|
class User
|
||||||
module SearchIndex
|
module SearchIndex
|
||||||
|
|
||||||
=begin
|
=begin
|
||||||
|
|
|
@ -31,7 +31,8 @@ Zammad::Application.configure do
|
||||||
config.assets.debug = true
|
config.assets.debug = true
|
||||||
|
|
||||||
# Automatically inject JavaScript needed for LiveReload
|
# Automatically inject JavaScript needed for LiveReload
|
||||||
config.middleware.use(Rack::LiveReload,
|
config.middleware.use(
|
||||||
|
Rack::LiveReload,
|
||||||
min_delay: 500, # default 1000
|
min_delay: 500, # default 1000
|
||||||
max_delay: 10_000, # default 60_000
|
max_delay: 10_000, # default 60_000
|
||||||
live_reload_port: 35_738,
|
live_reload_port: 35_738,
|
||||||
|
|
Loading…
Reference in a new issue