Skip to content

Commit

Permalink
exclude rubocop check
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuki Matsukura committed Apr 20, 2016
1 parent 7a10a1f commit c2d0316
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
1 change: 1 addition & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ AllCops:
TargetRubyVersion: 2.2
Exclude:
- 'bin/test.rb'
- 'vendor/**/*'

7 changes: 3 additions & 4 deletions bin/console
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby

require "bundler/setup"
require "spike"
require 'bundler/setup'
require 'spike'

# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.
Expand All @@ -10,6 +10,5 @@ require "spike"
# require "pry"
# Pry.start

require "irb"
require 'irb'
IRB.start

2 changes: 0 additions & 2 deletions lib/spike.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
# Main class
#
class Spike

API_BASE = 'https://api.spike.cc'.freeze
API_VERSION = '/v1'.freeze
API_URL = API_BASE + API_VERSION
Expand Down Expand Up @@ -78,4 +77,3 @@ def handle_response(curl)
end
end
end

0 comments on commit c2d0316

Please sign in to comment.