restfully 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +3 -0
- data/VERSION +1 -1
- data/lib/restfully.rb +4 -1
- data/lib/restfully/http/adapters/abstract_adapter.rb +0 -1
- data/restfully.gemspec +1 -1
- metadata +2 -2
data/CHANGELOG
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.1
|
data/lib/restfully.rb
CHANGED
@@ -13,9 +13,12 @@ require 'restfully/resource'
|
|
13
13
|
require 'restfully/collection'
|
14
14
|
|
15
15
|
module Restfully
|
16
|
-
|
16
|
+
# To be changed on version bump
|
17
|
+
VERSION = "0.6.1"
|
18
|
+
|
17
19
|
class << self
|
18
20
|
attr_accessor :adapter
|
19
21
|
end
|
22
|
+
|
20
23
|
self.adapter = Restfully::HTTP::Adapters::RestClientAdapter
|
21
24
|
end
|
data/restfully.gemspec
CHANGED