Skip to content

Commit

Permalink
fix links::LINK hash spacing for rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrock committed Mar 8, 2017
1 parent 06996e6 commit 1aa755c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions app/models/links.rb
@@ -1,19 +1,19 @@
class Links
# Links available for indexed gems
LINKS = {
'home' => 'homepage_uri',
'home' => 'homepage_uri',
'changelog' => 'changelog_uri',
'code' => 'source_code_uri',
'docs' => 'documentation_uri',
'wiki' => 'wiki_uri',
'mail' => 'mailing_list_uri',
'bugs' => 'bug_tracker_uri',
'download' => 'download_uri'
'code' => 'source_code_uri',
'docs' => 'documentation_uri',
'wiki' => 'wiki_uri',
'mail' => 'mailing_list_uri',
'bugs' => 'bug_tracker_uri',
'download' => 'download_uri'
}.freeze

# Links available for non-indexed gems
NON_INDEXED_LINKS = {
'docs' => 'documentation_uri'
'docs' => 'documentation_uri'
}.freeze

attr_accessor :rubygem, :version, :linkset
Expand Down

0 comments on commit 1aa755c

Please sign in to comment.