activeresource 3.2.1 → 3.2.2.rc1

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.
data/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Rails 3.2.1 (January 26, 2012) ##
2
2
 
3
- * Documentation fixes.
3
+ * Documentation fixes.
4
4
 
5
5
 
6
6
  ## Rails 3.2.0 (January 20, 2012) ##
@@ -2,8 +2,8 @@ module ActiveResource
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 2
5
- TINY = 1
6
- PRE = nil
5
+ TINY = 2
6
+ PRE = "rc1"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
9
9
  end
metadata CHANGED
@@ -1,13 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeresource
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
5
- prerelease:
4
+ hash: 15424071
5
+ prerelease: 6
6
6
  segments:
7
7
  - 3
8
8
  - 2
9
+ - 2
10
+ - rc
9
11
  - 1
10
- version: 3.2.1
12
+ version: 3.2.2.rc1
11
13
  platform: ruby
12
14
  authors:
13
15
  - David Heinemeier Hansson
@@ -15,8 +17,7 @@ autorequire:
15
17
  bindir: bin
16
18
  cert_chain: []
17
19
 
18
- date: 2012-01-26 00:00:00 -08:00
19
- default_executable:
20
+ date: 2012-02-22 00:00:00 Z
20
21
  dependencies:
21
22
  - !ruby/object:Gem::Dependency
22
23
  name: activesupport
@@ -26,12 +27,14 @@ dependencies:
26
27
  requirements:
27
28
  - - "="
28
29
  - !ruby/object:Gem::Version
29
- hash: 13
30
+ hash: 15424071
30
31
  segments:
31
32
  - 3
32
33
  - 2
34
+ - 2
35
+ - rc
33
36
  - 1
34
- version: 3.2.1
37
+ version: 3.2.2.rc1
35
38
  type: :runtime
36
39
  version_requirements: *id001
37
40
  - !ruby/object:Gem::Dependency
@@ -42,12 +45,14 @@ dependencies:
42
45
  requirements:
43
46
  - - "="
44
47
  - !ruby/object:Gem::Version
45
- hash: 13
48
+ hash: 15424071
46
49
  segments:
47
50
  - 3
48
51
  - 2
52
+ - 2
53
+ - rc
49
54
  - 1
50
- version: 3.2.1
55
+ version: 3.2.2.rc1
51
56
  type: :runtime
52
57
  version_requirements: *id002
53
58
  description: REST on Rails. Wrap your RESTful web app with Ruby classes and work with them like Active Record models.
@@ -63,22 +68,21 @@ files:
63
68
  - MIT-LICENSE
64
69
  - README.rdoc
65
70
  - examples/performance.rb
66
- - lib/active_resource.rb
67
- - lib/active_resource/railtie.rb
71
+ - lib/active_resource/base.rb
72
+ - lib/active_resource/connection.rb
68
73
  - lib/active_resource/custom_methods.rb
69
74
  - lib/active_resource/exceptions.rb
70
- - lib/active_resource/formats.rb
71
- - lib/active_resource/schema.rb
72
- - lib/active_resource/formats/xml_format.rb
73
75
  - lib/active_resource/formats/json_format.rb
74
- - lib/active_resource/base.rb
75
- - lib/active_resource/observing.rb
76
+ - lib/active_resource/formats/xml_format.rb
77
+ - lib/active_resource/formats.rb
76
78
  - lib/active_resource/http_mock.rb
79
+ - lib/active_resource/log_subscriber.rb
80
+ - lib/active_resource/observing.rb
81
+ - lib/active_resource/railtie.rb
82
+ - lib/active_resource/schema.rb
77
83
  - lib/active_resource/validations.rb
78
84
  - lib/active_resource/version.rb
79
- - lib/active_resource/connection.rb
80
- - lib/active_resource/log_subscriber.rb
81
- has_rdoc: true
85
+ - lib/active_resource.rb
82
86
  homepage: http://www.rubyonrails.org
83
87
  licenses: []
84
88
 
@@ -102,16 +106,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
102
106
  required_rubygems_version: !ruby/object:Gem::Requirement
103
107
  none: false
104
108
  requirements:
105
- - - ">="
109
+ - - ">"
106
110
  - !ruby/object:Gem::Version
107
- hash: 3
111
+ hash: 25
108
112
  segments:
109
- - 0
110
- version: "0"
113
+ - 1
114
+ - 3
115
+ - 1
116
+ version: 1.3.1
111
117
  requirements: []
112
118
 
113
119
  rubyforge_project:
114
- rubygems_version: 1.6.2
120
+ rubygems_version: 1.8.16
115
121
  signing_key:
116
122
  specification_version: 3
117
123
  summary: REST modeling framework (part of Rails).