ruby-satisfaction 0.7.3 → 0.7.4
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/README.markdown +9 -0
- data/lib/satisfaction/topic.rb +1 -1
- data/lib/satisfaction/version.rb +1 -1
- metadata +6 -8
data/README.markdown
CHANGED
|
@@ -11,6 +11,15 @@ For questions, please visit the [Get Satisfaction API community][3]
|
|
|
11
11
|
|
|
12
12
|
Changelog
|
|
13
13
|
=========
|
|
14
|
+
0.7.4
|
|
15
|
+
|
|
16
|
+
* Added the #slug attribute to the Sfn::Topic resource.
|
|
17
|
+
|
|
18
|
+
0.7.3
|
|
19
|
+
|
|
20
|
+
* Removed Net::Http patch to avoid SSL warning. (Note: This patch might cause other libraries that patch Net::Http to
|
|
21
|
+
get into a funky state.)
|
|
22
|
+
|
|
14
23
|
0.7.1
|
|
15
24
|
|
|
16
25
|
* Integration smoke tests to validate proper ssl
|
data/lib/satisfaction/topic.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
class Sfn::Topic < Sfn::Resource
|
|
2
|
-
attributes :subject, :style, :content, :reply_count, :follower_count, :company_id, :at_sfn
|
|
2
|
+
attributes :subject, :style, :content, :reply_count, :follower_count, :company_id, :at_sfn, :slug
|
|
3
3
|
attribute :last_active_at, :type => Time
|
|
4
4
|
attribute :created_at, :type => Time
|
|
5
5
|
attribute :author, :type => Sfn::Person
|
data/lib/satisfaction/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-satisfaction
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 11
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 7
|
|
9
|
-
-
|
|
10
|
-
version: 0.7.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.7.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Get Satisfaction
|
|
@@ -15,8 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
19
|
-
default_executable:
|
|
18
|
+
date: 2012-01-25 00:00:00 Z
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: nokogiri
|
|
@@ -249,7 +248,6 @@ files:
|
|
|
249
248
|
- spec/satisfaction/loader_spec.rb
|
|
250
249
|
- spec/satisfaction_spec.rb
|
|
251
250
|
- spec/spec_helper.rb
|
|
252
|
-
has_rdoc: true
|
|
253
251
|
homepage: https://github.com/satisfaction/ruby-satisfaction
|
|
254
252
|
licenses: []
|
|
255
253
|
|
|
@@ -281,7 +279,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
281
279
|
requirements: []
|
|
282
280
|
|
|
283
281
|
rubyforge_project: ruby-satisfaction
|
|
284
|
-
rubygems_version: 1.
|
|
282
|
+
rubygems_version: 1.8.10
|
|
285
283
|
signing_key:
|
|
286
284
|
specification_version: 3
|
|
287
285
|
summary: Get Satisfaction ruby client
|