Skip to content

Commit db40cb5

Browse files
committed
Upgraded dependencies, including slack-ruby-bot-server-rtm.
1 parent 0bc7860 commit db40cb5

File tree

10 files changed

+184
-129
lines changed

10 files changed

+184
-129
lines changed

.rubocop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
AllCops:
2+
NewCops: enable
23
Exclude:
34
- vendor/**/*
45
- bin/**/*

.rubocop_todo.yml

Lines changed: 36 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,59 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2019-11-16 11:18:35 -0500 using RuboCop version 0.76.0.
3+
# on 2020-11-15 20:50:06 UTC using RuboCop version 1.3.0.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new
77
# versions of RuboCop, may require this file to be generated again.
88

9+
# Offense count: 1
10+
# Cop supports --auto-correct.
11+
# Configuration parameters: TreatCommentsAsGroupSeparators, ConsiderPunctuation, Include.
12+
# Include: **/*.gemfile, **/Gemfile, **/gems.rb
13+
Bundler/OrderedGems:
14+
Exclude:
15+
- 'Gemfile'
16+
17+
# Offense count: 2
18+
# Cop supports --auto-correct.
19+
# Configuration parameters: AllowAliasSyntax, AllowedMethods.
20+
# AllowedMethods: alias_method, public, protected, private
21+
Layout/EmptyLinesAroundAttributeAccessor:
22+
Exclude:
23+
- 'slack-shellbot/models/current_directory_entry.rb'
24+
- 'slack-shellbot/models/parent_directory_entry.rb'
25+
26+
# Offense count: 2
27+
# Cop supports --auto-correct.
28+
Lint/NonDeterministicRequireOrder:
29+
Exclude:
30+
- 'slack-shellbot.rb'
31+
- 'spec/spec_helper.rb'
32+
933
# Offense count: 1
1034
# Configuration parameters: AllowComments.
11-
Lint/HandleExceptions:
35+
Lint/SuppressedException:
1236
Exclude:
1337
- 'slack-shellbot/models/vi_program.rb'
1438

1539
# Offense count: 1
16-
# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts, AllowedAcronyms.
40+
# Configuration parameters: ExpectMatchingDefinition, CheckDefinitionPathHierarchy, Regex, IgnoreExecutableScripts, AllowedAcronyms.
1741
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
1842
Naming/FileName:
1943
Exclude:
2044
- 'slack-shellbot.rb'
2145

2246
# Offense count: 2
23-
# Configuration parameters: Blacklist.
24-
# Blacklist: (?-mix:(^|\s)(EO[A-Z]{1}|END)(\s|$))
47+
# Configuration parameters: ForbiddenDelimiters.
48+
# ForbiddenDelimiters: (?-mix:(^|\s)(EO[A-Z]{1}|END)(\s|$))
2549
Naming/HeredocDelimiterNaming:
2650
Exclude:
2751
- 'slack-shellbot/commands/help.rb'
2852
- 'slack-shellbot/info.rb'
53+
54+
# Offense count: 43
55+
# Cop supports --auto-correct.
56+
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
57+
# URISchemes: http, https
58+
Layout/LineLength:
59+
Max: 163

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ gem 'rack-robotz'
1313
gem 'rack-server-pages'
1414
gem 'slack-ruby-bot-server'
1515
gem 'slack-ruby-bot-server-mailchimp'
16+
gem 'slack-ruby-bot-server-rtm'
1617
gem 'unicorn'
1718

1819
group :development, :test do

0 commit comments

Comments
 (0)