pmp 0.5.2 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/pmp/collection_document.rb +0 -5
- data/lib/pmp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8138fb8d44b27efff75f3c21b1b9a959277ed2f
|
4
|
+
data.tar.gz: 5507b481e5a90d0d107923549af7a0f382733a94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33d67a446115e41dafb8e1bbbb4d57932bf4b25975756c4ea791771e006625dd2e829c4396e34b6b16e8d05a78d7efdcde1eedd97f2d344ad36060a74099ebec
|
7
|
+
data.tar.gz: 2dd57d79b6e3de306275cc8627c940a9e9583e74003df454e19ace816e6a2ab3fdcbd564a59fe084b9b2d61cbb245e6091b0c5b737cc4322fb73e7e165ff80f6
|
@@ -44,9 +44,6 @@ module PMP
|
|
44
44
|
def initialize(options={}, &block)
|
45
45
|
@mutex = Mutex.new
|
46
46
|
|
47
|
-
# puts "CollectionDocument.initialize options: #{options.inspect}\n"
|
48
|
-
# puts "\t#{RuntimeException.new.backtrace.join("\n\t")}"
|
49
|
-
|
50
47
|
apply_configuration(options)
|
51
48
|
|
52
49
|
self.root = current_options.delete(:root)
|
@@ -169,8 +166,6 @@ module PMP
|
|
169
166
|
# url includes any params - full url
|
170
167
|
def request(method, url, body=nil) # :nodoc:
|
171
168
|
|
172
|
-
# puts "CD::request: obj: #{self.object_id} #{method}, #{url}, #{body.inspect}"
|
173
|
-
|
174
169
|
unless ['/', ''].include?(URI::parse(url).path)
|
175
170
|
setup_oauth_token
|
176
171
|
end
|
data/lib/pmp/version.rb
CHANGED