pt 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Changelog.md +3 -0
  2. data/lib/pt/debugger.rb +1 -2
  3. data/lib/pt.rb +1 -1
  4. metadata +2 -2
data/Changelog.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # pt changelog
2
2
 
3
+ ## v0.3.2
4
+ Fix in requests debugger
5
+
3
6
  ## v0.3.1
4
7
  Dependencies versions added to gemspec
5
8
 
data/lib/pt/debugger.rb CHANGED
@@ -2,10 +2,9 @@
2
2
 
3
3
  module RestClient
4
4
  class Request
5
-
6
5
  alias_method :rest_client_execute, :execute
7
6
  def execute &block
8
- puts "\nRequest: #{method.upcase} #{url}"
7
+ puts "\nRequest: #{method.to_s.upcase} #{url}"
9
8
  rest_client_execute &block
10
9
  end
11
10
  end
data/lib/pt.rb CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
 
3
3
  module PT
4
4
  class InputError < StandardError; end
5
- VERSION = '0.3.1'
5
+ VERSION = '0.3.2'
6
6
  end
7
7
 
8
8
  require 'pt/client'
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 1
9
- version: 0.3.1
8
+ - 2
9
+ version: 0.3.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Raul Murciano