Skip to content
This repository has been archived by the owner on Apr 16, 2023. It is now read-only.

Commit

Permalink
Fix: memory_profiler need Ruby version < 2.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
christiankakesa committed May 5, 2016
1 parent 6fef16e commit 120e9e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/log_tribe/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module LogTribe
VERSION = '0.2.10'.freeze
VERSION = '0.3.0'.freeze
end
2 changes: 1 addition & 1 deletion log_tribe.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'rspec'.freeze, '~> 3.3'.freeze
spec.add_development_dependency 'simplecov'.freeze, '~> 0'.freeze
spec.add_development_dependency 'coveralls'.freeze, '~> 0'.freeze
spec.add_development_dependency 'memory_profiler'.freeze, '~> 0'.freeze
spec.add_development_dependency 'memory_profiler'.freeze, '~> 0'.freeze if RUBY_VERSION >= '2.1.0'
spec.add_development_dependency 'yard'.freeze, '~> 0'.freeze
end
1 change: 1 addition & 0 deletions spec/memory_test.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
exit 0 unless RUBY_VERSION >= '2.1.0'
require 'memory_profiler'

require_relative '../lib/log_tribe'
Expand Down

0 comments on commit 120e9e4

Please sign in to comment.