slack-ruby/slack-ruby-client

View on GitHub

Showing 131 of 131 total issues

Similar blocks of code found in 9 locations. Consider refactoring.
Open

          def files_remote_add(options = {})
            raise ArgumentError, 'Required arguments :external_id missing' if options[:external_id].nil?
            raise ArgumentError, 'Required arguments :external_url missing' if options[:external_url].nil?
            raise ArgumentError, 'Required arguments :title missing' if options[:title].nil?
            post('files.remote.add', options)
Severity: Major
Found in lib/slack/web/api/endpoints/files_remote.rb and 8 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/admin_auth_policy.rb on lines 20..24
lib/slack/web/api/endpoints/admin_auth_policy.rb on lines 62..66
lib/slack/web/api/endpoints/admin_barriers.rb on lines 20..24
lib/slack/web/api/endpoints/admin_conversations_restrictAccess.rb on lines 51..55
lib/slack/web/api/endpoints/admin_roles.rb on lines 20..24
lib/slack/web/api/endpoints/admin_roles.rb on lines 63..67
lib/slack/web/api/endpoints/admin_users.rb on lines 55..59
lib/slack/web/api/endpoints/bookmarks.rb on lines 28..32

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 31.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

          def admin_auth_policy_assignEntities(options = {})
            raise ArgumentError, 'Required arguments :entity_ids missing' if options[:entity_ids].nil?
            raise ArgumentError, 'Required arguments :entity_type missing' if options[:entity_type].nil?
            raise ArgumentError, 'Required arguments :policy_name missing' if options[:policy_name].nil?
            post('admin.auth.policy.assignEntities', options)
Severity: Major
Found in lib/slack/web/api/endpoints/admin_auth_policy.rb and 8 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/admin_auth_policy.rb on lines 62..66
lib/slack/web/api/endpoints/admin_barriers.rb on lines 20..24
lib/slack/web/api/endpoints/admin_conversations_restrictAccess.rb on lines 51..55
lib/slack/web/api/endpoints/admin_roles.rb on lines 20..24
lib/slack/web/api/endpoints/admin_roles.rb on lines 63..67
lib/slack/web/api/endpoints/admin_users.rb on lines 55..59
lib/slack/web/api/endpoints/bookmarks.rb on lines 28..32
lib/slack/web/api/endpoints/files_remote.rb on lines 26..30

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 31.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

          def admin_roles_addAssignments(options = {})
            raise ArgumentError, 'Required arguments :entity_ids missing' if options[:entity_ids].nil?
            raise ArgumentError, 'Required arguments :role_id missing' if options[:role_id].nil?
            raise ArgumentError, 'Required arguments :user_ids missing' if options[:user_ids].nil?
            post('admin.roles.addAssignments', options)
Severity: Major
Found in lib/slack/web/api/endpoints/admin_roles.rb and 8 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/admin_auth_policy.rb on lines 20..24
lib/slack/web/api/endpoints/admin_auth_policy.rb on lines 62..66
lib/slack/web/api/endpoints/admin_barriers.rb on lines 20..24
lib/slack/web/api/endpoints/admin_conversations_restrictAccess.rb on lines 51..55
lib/slack/web/api/endpoints/admin_roles.rb on lines 63..67
lib/slack/web/api/endpoints/admin_users.rb on lines 55..59
lib/slack/web/api/endpoints/bookmarks.rb on lines 28..32
lib/slack/web/api/endpoints/files_remote.rb on lines 26..30

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 31.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

          def admin_users_invite(options = {})
            raise ArgumentError, 'Required arguments :channel_ids missing' if options[:channel_ids].nil?
            raise ArgumentError, 'Required arguments :email missing' if options[:email].nil?
            raise ArgumentError, 'Required arguments :team_id missing' if options[:team_id].nil?
            post('admin.users.invite', options)
Severity: Major
Found in lib/slack/web/api/endpoints/admin_users.rb and 8 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/admin_auth_policy.rb on lines 20..24
lib/slack/web/api/endpoints/admin_auth_policy.rb on lines 62..66
lib/slack/web/api/endpoints/admin_barriers.rb on lines 20..24
lib/slack/web/api/endpoints/admin_conversations_restrictAccess.rb on lines 51..55
lib/slack/web/api/endpoints/admin_roles.rb on lines 20..24
lib/slack/web/api/endpoints/admin_roles.rb on lines 63..67
lib/slack/web/api/endpoints/bookmarks.rb on lines 28..32
lib/slack/web/api/endpoints/files_remote.rb on lines 26..30

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 31.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

          def admin_auth_policy_removeEntities(options = {})
            raise ArgumentError, 'Required arguments :entity_ids missing' if options[:entity_ids].nil?
            raise ArgumentError, 'Required arguments :entity_type missing' if options[:entity_type].nil?
            raise ArgumentError, 'Required arguments :policy_name missing' if options[:policy_name].nil?
            post('admin.auth.policy.removeEntities', options)
Severity: Major
Found in lib/slack/web/api/endpoints/admin_auth_policy.rb and 8 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/admin_auth_policy.rb on lines 20..24
lib/slack/web/api/endpoints/admin_barriers.rb on lines 20..24
lib/slack/web/api/endpoints/admin_conversations_restrictAccess.rb on lines 51..55
lib/slack/web/api/endpoints/admin_roles.rb on lines 20..24
lib/slack/web/api/endpoints/admin_roles.rb on lines 63..67
lib/slack/web/api/endpoints/admin_users.rb on lines 55..59
lib/slack/web/api/endpoints/bookmarks.rb on lines 28..32
lib/slack/web/api/endpoints/files_remote.rb on lines 26..30

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 31.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 4 locations. Consider refactoring.
Open

  module Cli
    class App
      desc 'TeamBilling methods.'
      command 'team_billing' do |g|
        g.desc "Reads a workspace's billing plan information."
Severity: Minor
Found in bin/commands/team_billing.rb and 3 other locations - About 25 mins to fix
bin/commands/apps_connections.rb on lines 5..13
bin/commands/team_preferences.rb on lines 5..13
bin/commands/users_prefs.rb on lines 5..13

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 4 locations. Consider refactoring.
Open

  module Cli
    class App
      desc 'TeamPreferences methods.'
      command 'team_preferences' do |g|
        g.desc "Retrieve a list of a workspace's team preferences."
Severity: Minor
Found in bin/commands/team_preferences.rb and 3 other locations - About 25 mins to fix
bin/commands/apps_connections.rb on lines 5..13
bin/commands/team_billing.rb on lines 5..13
bin/commands/users_prefs.rb on lines 5..13

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 4 locations. Consider refactoring.
Open

  module Cli
    class App
      desc 'UsersPrefs methods.'
      command 'users_prefs' do |g|
        g.desc "Returns the user's preferences (undocumented)"
Severity: Minor
Found in bin/commands/users_prefs.rb and 3 other locations - About 25 mins to fix
bin/commands/apps_connections.rb on lines 5..13
bin/commands/team_billing.rb on lines 5..13
bin/commands/team_preferences.rb on lines 5..13

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 4 locations. Consider refactoring.
Open

  module Cli
    class App
      desc 'AppsConnections methods.'
      command 'apps_connections' do |g|
        g.desc 'Generate a temporary Socket Mode WebSocket URL that your app can connect to in order to receive events and interactive payloads over.'
Severity: Minor
Found in bin/commands/apps_connections.rb and 3 other locations - About 25 mins to fix
bin/commands/team_billing.rb on lines 5..13
bin/commands/team_preferences.rb on lines 5..13
bin/commands/users_prefs.rb on lines 5..13

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 12 locations. Consider refactoring.
Open

          def pins_list(options = {})
            raise ArgumentError, 'Required arguments :channel missing' if options[:channel].nil?
            options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
            post('pins.list', options)
Severity: Major
Found in lib/slack/web/api/endpoints/pins.rb and 11 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/conversations.rb on lines 52..55
lib/slack/web/api/endpoints/conversations.rb on lines 65..68
lib/slack/web/api/endpoints/conversations.rb on lines 143..146
lib/slack/web/api/endpoints/conversations.rb on lines 180..183
lib/slack/web/api/endpoints/conversations.rb on lines 193..196
lib/slack/web/api/endpoints/conversations.rb on lines 223..226
lib/slack/web/api/endpoints/conversations.rb on lines 419..422
lib/slack/web/api/endpoints/pins.rb on lines 18..21
lib/slack/web/api/endpoints/pins.rb on lines 46..49
lib/slack/web/api/endpoints/reactions.rb on lines 89..92
lib/slack/web/api/endpoints/users.rb on lines 76..79

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 12 locations. Consider refactoring.
Open

          def conversations_info(options = {})
            raise ArgumentError, 'Required arguments :channel missing' if options[:channel].nil?
            options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
            post('conversations.info', options)
Severity: Major
Found in lib/slack/web/api/endpoints/conversations.rb and 11 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/conversations.rb on lines 52..55
lib/slack/web/api/endpoints/conversations.rb on lines 65..68
lib/slack/web/api/endpoints/conversations.rb on lines 180..183
lib/slack/web/api/endpoints/conversations.rb on lines 193..196
lib/slack/web/api/endpoints/conversations.rb on lines 223..226
lib/slack/web/api/endpoints/conversations.rb on lines 419..422
lib/slack/web/api/endpoints/pins.rb on lines 18..21
lib/slack/web/api/endpoints/pins.rb on lines 31..34
lib/slack/web/api/endpoints/pins.rb on lines 46..49
lib/slack/web/api/endpoints/reactions.rb on lines 89..92
lib/slack/web/api/endpoints/users.rb on lines 76..79

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 12 locations. Consider refactoring.
Open

          def conversations_inviteShared(options = {})
            raise ArgumentError, 'Required arguments :channel missing' if options[:channel].nil?
            options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
            post('conversations.inviteShared', options)
Severity: Major
Found in lib/slack/web/api/endpoints/conversations.rb and 11 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/conversations.rb on lines 52..55
lib/slack/web/api/endpoints/conversations.rb on lines 65..68
lib/slack/web/api/endpoints/conversations.rb on lines 143..146
lib/slack/web/api/endpoints/conversations.rb on lines 193..196
lib/slack/web/api/endpoints/conversations.rb on lines 223..226
lib/slack/web/api/endpoints/conversations.rb on lines 419..422
lib/slack/web/api/endpoints/pins.rb on lines 18..21
lib/slack/web/api/endpoints/pins.rb on lines 31..34
lib/slack/web/api/endpoints/pins.rb on lines 46..49
lib/slack/web/api/endpoints/reactions.rb on lines 89..92
lib/slack/web/api/endpoints/users.rb on lines 76..79

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 12 locations. Consider refactoring.
Open

          def conversations_close(options = {})
            raise ArgumentError, 'Required arguments :channel missing' if options[:channel].nil?
            options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
            post('conversations.close', options)
Severity: Major
Found in lib/slack/web/api/endpoints/conversations.rb and 11 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/conversations.rb on lines 52..55
lib/slack/web/api/endpoints/conversations.rb on lines 143..146
lib/slack/web/api/endpoints/conversations.rb on lines 180..183
lib/slack/web/api/endpoints/conversations.rb on lines 193..196
lib/slack/web/api/endpoints/conversations.rb on lines 223..226
lib/slack/web/api/endpoints/conversations.rb on lines 419..422
lib/slack/web/api/endpoints/pins.rb on lines 18..21
lib/slack/web/api/endpoints/pins.rb on lines 31..34
lib/slack/web/api/endpoints/pins.rb on lines 46..49
lib/slack/web/api/endpoints/reactions.rb on lines 89..92
lib/slack/web/api/endpoints/users.rb on lines 76..79

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 12 locations. Consider refactoring.
Open

          def conversations_archive(options = {})
            raise ArgumentError, 'Required arguments :channel missing' if options[:channel].nil?
            options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
            post('conversations.archive', options)
Severity: Major
Found in lib/slack/web/api/endpoints/conversations.rb and 11 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/conversations.rb on lines 65..68
lib/slack/web/api/endpoints/conversations.rb on lines 143..146
lib/slack/web/api/endpoints/conversations.rb on lines 180..183
lib/slack/web/api/endpoints/conversations.rb on lines 193..196
lib/slack/web/api/endpoints/conversations.rb on lines 223..226
lib/slack/web/api/endpoints/conversations.rb on lines 419..422
lib/slack/web/api/endpoints/pins.rb on lines 18..21
lib/slack/web/api/endpoints/pins.rb on lines 31..34
lib/slack/web/api/endpoints/pins.rb on lines 46..49
lib/slack/web/api/endpoints/reactions.rb on lines 89..92
lib/slack/web/api/endpoints/users.rb on lines 76..79

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 12 locations. Consider refactoring.
Open

          def conversations_unarchive(options = {})
            raise ArgumentError, 'Required arguments :channel missing' if options[:channel].nil?
            options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
            post('conversations.unarchive', options)
Severity: Major
Found in lib/slack/web/api/endpoints/conversations.rb and 11 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/conversations.rb on lines 52..55
lib/slack/web/api/endpoints/conversations.rb on lines 65..68
lib/slack/web/api/endpoints/conversations.rb on lines 143..146
lib/slack/web/api/endpoints/conversations.rb on lines 180..183
lib/slack/web/api/endpoints/conversations.rb on lines 193..196
lib/slack/web/api/endpoints/conversations.rb on lines 223..226
lib/slack/web/api/endpoints/pins.rb on lines 18..21
lib/slack/web/api/endpoints/pins.rb on lines 31..34
lib/slack/web/api/endpoints/pins.rb on lines 46..49
lib/slack/web/api/endpoints/reactions.rb on lines 89..92
lib/slack/web/api/endpoints/users.rb on lines 76..79

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 12 locations. Consider refactoring.
Open

          def pins_remove(options = {})
            raise ArgumentError, 'Required arguments :channel missing' if options[:channel].nil?
            options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
            post('pins.remove', options)
Severity: Major
Found in lib/slack/web/api/endpoints/pins.rb and 11 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/conversations.rb on lines 52..55
lib/slack/web/api/endpoints/conversations.rb on lines 65..68
lib/slack/web/api/endpoints/conversations.rb on lines 143..146
lib/slack/web/api/endpoints/conversations.rb on lines 180..183
lib/slack/web/api/endpoints/conversations.rb on lines 193..196
lib/slack/web/api/endpoints/conversations.rb on lines 223..226
lib/slack/web/api/endpoints/conversations.rb on lines 419..422
lib/slack/web/api/endpoints/pins.rb on lines 18..21
lib/slack/web/api/endpoints/pins.rb on lines 31..34
lib/slack/web/api/endpoints/reactions.rb on lines 89..92
lib/slack/web/api/endpoints/users.rb on lines 76..79

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 12 locations. Consider refactoring.
Open

          def users_info(options = {})
            raise ArgumentError, 'Required arguments :user missing' if options[:user].nil?
            options = options.merge(user: users_id(options)['user']['id']) if options[:user]
            post('users.info', options)
Severity: Major
Found in lib/slack/web/api/endpoints/users.rb and 11 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/conversations.rb on lines 52..55
lib/slack/web/api/endpoints/conversations.rb on lines 65..68
lib/slack/web/api/endpoints/conversations.rb on lines 143..146
lib/slack/web/api/endpoints/conversations.rb on lines 180..183
lib/slack/web/api/endpoints/conversations.rb on lines 193..196
lib/slack/web/api/endpoints/conversations.rb on lines 223..226
lib/slack/web/api/endpoints/conversations.rb on lines 419..422
lib/slack/web/api/endpoints/pins.rb on lines 18..21
lib/slack/web/api/endpoints/pins.rb on lines 31..34
lib/slack/web/api/endpoints/pins.rb on lines 46..49
lib/slack/web/api/endpoints/reactions.rb on lines 89..92

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 12 locations. Consider refactoring.
Open

          def conversations_join(options = {})
            raise ArgumentError, 'Required arguments :channel missing' if options[:channel].nil?
            options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
            post('conversations.join', options)
Severity: Major
Found in lib/slack/web/api/endpoints/conversations.rb and 11 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/conversations.rb on lines 52..55
lib/slack/web/api/endpoints/conversations.rb on lines 65..68
lib/slack/web/api/endpoints/conversations.rb on lines 143..146
lib/slack/web/api/endpoints/conversations.rb on lines 180..183
lib/slack/web/api/endpoints/conversations.rb on lines 223..226
lib/slack/web/api/endpoints/conversations.rb on lines 419..422
lib/slack/web/api/endpoints/pins.rb on lines 18..21
lib/slack/web/api/endpoints/pins.rb on lines 31..34
lib/slack/web/api/endpoints/pins.rb on lines 46..49
lib/slack/web/api/endpoints/reactions.rb on lines 89..92
lib/slack/web/api/endpoints/users.rb on lines 76..79

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 12 locations. Consider refactoring.
Open

          def reactions_remove(options = {})
            raise ArgumentError, 'Required arguments :name missing' if options[:name].nil?
            options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
            post('reactions.remove', options)
Severity: Major
Found in lib/slack/web/api/endpoints/reactions.rb and 11 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/conversations.rb on lines 52..55
lib/slack/web/api/endpoints/conversations.rb on lines 65..68
lib/slack/web/api/endpoints/conversations.rb on lines 143..146
lib/slack/web/api/endpoints/conversations.rb on lines 180..183
lib/slack/web/api/endpoints/conversations.rb on lines 193..196
lib/slack/web/api/endpoints/conversations.rb on lines 223..226
lib/slack/web/api/endpoints/conversations.rb on lines 419..422
lib/slack/web/api/endpoints/pins.rb on lines 18..21
lib/slack/web/api/endpoints/pins.rb on lines 31..34
lib/slack/web/api/endpoints/pins.rb on lines 46..49
lib/slack/web/api/endpoints/users.rb on lines 76..79

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 12 locations. Consider refactoring.
Open

          def conversations_leave(options = {})
            raise ArgumentError, 'Required arguments :channel missing' if options[:channel].nil?
            options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
            post('conversations.leave', options)
Severity: Major
Found in lib/slack/web/api/endpoints/conversations.rb and 11 other locations - About 25 mins to fix
lib/slack/web/api/endpoints/conversations.rb on lines 52..55
lib/slack/web/api/endpoints/conversations.rb on lines 65..68
lib/slack/web/api/endpoints/conversations.rb on lines 143..146
lib/slack/web/api/endpoints/conversations.rb on lines 180..183
lib/slack/web/api/endpoints/conversations.rb on lines 193..196
lib/slack/web/api/endpoints/conversations.rb on lines 419..422
lib/slack/web/api/endpoints/pins.rb on lines 18..21
lib/slack/web/api/endpoints/pins.rb on lines 31..34
lib/slack/web/api/endpoints/pins.rb on lines 46..49
lib/slack/web/api/endpoints/reactions.rb on lines 89..92
lib/slack/web/api/endpoints/users.rb on lines 76..79

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 30.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Severity
Category
Status
Source
Language