Skip to content

Commit

Permalink
get rid of byebug (#30)
Browse files Browse the repository at this point in the history
Co-authored-by: Seth Strumph <[email protected]>
  • Loading branch information
sstrumph and Seth Strumph authored Mar 19, 2021
1 parent 0fb2483 commit 0ff5c83
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 14 deletions.
17 changes: 8 additions & 9 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }

gemspec

gem 'mocha'
gem 'simplecov'
gem 'rails-controller-testing'
gem 'sqlite3'
gem 'rspec-rails'

gem 'byebug', group: [:development, :test]

gem 'appraisal'
group :test, :development do
gem 'mocha'
gem 'simplecov'
gem 'rails-controller-testing'
gem 'sqlite3'
gem 'rspec-rails'
gem 'appraisal'
end
2 changes: 0 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ GEM
rake
thor (>= 0.14.0)
builder (3.2.4)
byebug (11.1.3)
concurrent-ruby (1.1.8)
crass (1.0.6)
diff-lcs (1.4.4)
Expand Down Expand Up @@ -179,7 +178,6 @@ PLATFORMS

DEPENDENCIES
appraisal
byebug
mocha
rails-controller-testing
rspec-rails
Expand Down
2 changes: 0 additions & 2 deletions lib/generators/universal_track_manager/install_generator.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@

require 'rails/generators'

require 'byebug'

module UniversalTrackManager
class InstallGenerator < Rails::Generators::Base
include Rails::Generators::Migration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def ip_address

def user_agent
return nil if ! UniversalTrackManager.track_user_agent?
request.user_agent[0..255]
request.user_agent[0..254]
end

def now
Expand Down

0 comments on commit 0ff5c83

Please sign in to comment.