activeresource 2.3.3 → 2.3.4

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activeresource might be problematic. Click here for more details.

@@ -0,0 +1,4 @@
1
+ class ProxyResource < ActiveResource::Base
2
+ self.site = "http://localhost"
3
+ self.proxy = "http://user:password@proxy.local:3000"
4
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeresource
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.3
4
+ version: 2.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
@@ -9,7 +9,7 @@ autorequire: active_resource
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-07-20 00:00:00 -05:00
12
+ date: 2009-09-04 00:00:00 +12:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - "="
22
22
  - !ruby/object:Gem::Version
23
- version: 2.3.3
23
+ version: 2.3.4
24
24
  version:
25
25
  description: Wraps web resources in model classes that can be manipulated through XML over REST.
26
26
  email: david@loudthinking.com
@@ -34,11 +34,10 @@ files:
34
34
  - Rakefile
35
35
  - README
36
36
  - CHANGELOG
37
- - lib/active_resource
38
37
  - lib/active_resource/base.rb
39
38
  - lib/active_resource/connection.rb
40
39
  - lib/active_resource/custom_methods.rb
41
- - lib/active_resource/formats
40
+ - lib/active_resource/exceptions.rb
42
41
  - lib/active_resource/formats/json_format.rb
43
42
  - lib/active_resource/formats/xml_format.rb
44
43
  - lib/active_resource/formats.rb
@@ -49,7 +48,6 @@ files:
49
48
  - lib/activeresource.rb
50
49
  - test/abstract_unit.rb
51
50
  - test/authorization_test.rb
52
- - test/base
53
51
  - test/base/custom_methods_test.rb
54
52
  - test/base/equality_test.rb
55
53
  - test/base/load_test.rb
@@ -57,15 +55,17 @@ files:
57
55
  - test/base_test.rb
58
56
  - test/connection_test.rb
59
57
  - test/debug.log
60
- - test/fixtures
61
58
  - test/fixtures/beast.rb
62
59
  - test/fixtures/customer.rb
63
60
  - test/fixtures/person.rb
61
+ - test/fixtures/proxy.rb
64
62
  - test/fixtures/street_address.rb
65
63
  - test/format_test.rb
66
64
  - test/setter_trap.rb
67
65
  has_rdoc: true
68
66
  homepage: http://www.rubyonrails.org
67
+ licenses: []
68
+
69
69
  post_install_message:
70
70
  rdoc_options:
71
71
  - --main
@@ -87,9 +87,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  requirements: []
88
88
 
89
89
  rubyforge_project: activeresource
90
- rubygems_version: 1.3.1
90
+ rubygems_version: 1.3.2
91
91
  signing_key:
92
- specification_version: 2
92
+ specification_version: 3
93
93
  summary: Think Active Record for web resources.
94
94
  test_files: []
95
95