authlete 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 662907ba2a7276166936aa2ed397701824927bc8
4
- data.tar.gz: 6062abfae7550fef0ea5f4f351c52635c88c2316
3
+ metadata.gz: a9f18275856c908098d681e71dec37a817607ba3
4
+ data.tar.gz: 4a3c7a9688efb5c13056bbac77bebad6ebf394f8
5
5
  SHA512:
6
- metadata.gz: 35d126adab10d831dfa28f09daf23e11b65d80b1d4f168a4930e4b9021f2caab81da72c2c607c6d0b36305cdf056621fe5231a2afbf08ca12a71a2462cf8a033
7
- data.tar.gz: 3cd79914b05138d679df1ec92d75ecfb29998c4abb16bfbd037fb066a10695b52c6ed2b8ea1f0fa98638da05b43b7ab4be160bec0aae6002bdc9d6dc0214b96d
6
+ metadata.gz: 7ad511296daf3c7db50624e5f8bd68ef87f8d0142a9c3f2c97999978fa5c533fea46fcd4efbc8f1ce87bc78045e138ed17f2a0ba3171a88230397bb216c87ead
7
+ data.tar.gz: 88a4d0db508108a1f847c8e2d530291d14de74be9fde1d14d7f8870a98206b0c8c8fde86bb3167896523dc5d8011593a7f8d928faeb6c3760051c945d3014a37
data/lib/authlete/api.rb CHANGED
@@ -89,7 +89,6 @@ module Authlete
89
89
 
90
90
  def execute(parameters)
91
91
  begin
92
- puts "calling....."
93
92
  return RestClient::Request.new(parameters).execute
94
93
  rescue => e
95
94
  raise create_api_exception(e)
@@ -100,13 +99,9 @@ module Authlete
100
99
  message = exception.message
101
100
  response = exception.response
102
101
 
103
- puts "HOGE!!!!"
104
-
105
102
  # Create a base exception.
106
103
  authlete_exception = Authlete::Exception.new(:message => message)
107
104
 
108
- puts "After exception"
109
-
110
105
  if response.nil?
111
106
  # No response information. Then, return an exception without HTTP
112
107
  # response information.
@@ -131,8 +126,6 @@ module Authlete
131
126
  return authlete_exception
132
127
  end
133
128
 
134
- puts "after json parse"
135
-
136
129
  # Set the Authlete API result info if it's available.
137
130
  if has_authlete_api_result?(response_body_json)
138
131
  authlete_exception.result = Authlete::Model::Result.new(response_body_json)
@@ -16,5 +16,5 @@
16
16
 
17
17
 
18
18
  module Authlete
19
- VERSION = "1.0.2"
19
+ VERSION = "1.0.3"
20
20
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authlete
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takahiko Kawasaki