atomutil 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/atomutil.gemspec +8 -9
- data/lib/atomutil.rb +2 -2
- metadata +21 -25
- data/LICENSE.txt +0 -20
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
data/atomutil.gemspec
CHANGED
@@ -4,16 +4,15 @@
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
|
-
s.name =
|
8
|
-
s.version = "0.1.
|
7
|
+
s.name = "atomutil"
|
8
|
+
s.version = "0.1.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["lyokato"]
|
12
|
-
s.date =
|
13
|
-
s.description =
|
14
|
-
s.email =
|
12
|
+
s.date = "2011-09-14"
|
13
|
+
s.description = "This library allows your to handle AtomPub and Atom Feed easily"
|
14
|
+
s.email = "lyo.kato@gmail.com"
|
15
15
|
s.extra_rdoc_files = [
|
16
|
-
"LICENSE.txt",
|
17
16
|
"README.rdoc"
|
18
17
|
]
|
19
18
|
s.files = [
|
@@ -41,11 +40,11 @@ Gem::Specification.new do |s|
|
|
41
40
|
"spec/spec_helper.rb",
|
42
41
|
"spec/threading_spec.rb"
|
43
42
|
]
|
44
|
-
s.homepage =
|
43
|
+
s.homepage = "http://github.com/lyokato/ruby-atomutil"
|
45
44
|
s.licenses = ["MIT"]
|
46
45
|
s.require_paths = ["lib"]
|
47
|
-
s.rubygems_version =
|
48
|
-
s.summary =
|
46
|
+
s.rubygems_version = "1.8.10"
|
47
|
+
s.summary = "Ruby AtomPub Client"
|
49
48
|
s.test_files = [
|
50
49
|
"spec/categories_spec.rb",
|
51
50
|
"spec/category_spec.rb",
|
data/lib/atomutil.rb
CHANGED
@@ -55,7 +55,7 @@ module AtomUtil
|
|
55
55
|
module VERSION#:nodoc:
|
56
56
|
MAJOR = 0
|
57
57
|
MINOR = 1
|
58
|
-
TINY =
|
58
|
+
TINY = 2
|
59
59
|
STRING = [MAJOR, MINOR, TINY].join('.')
|
60
60
|
end
|
61
61
|
end
|
@@ -592,7 +592,7 @@ module Atom
|
|
592
592
|
doc = REXML::Document.new
|
593
593
|
decl = REXML::XMLDecl.new("1.0", "utf-8")
|
594
594
|
doc.add decl
|
595
|
-
doc.add_element @elem
|
595
|
+
doc.add_element @elem
|
596
596
|
doc.to_s
|
597
597
|
end
|
598
598
|
private
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: atomutil
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 31
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 2
|
10
|
+
version: 0.1.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- lyokato
|
@@ -15,11 +15,12 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
19
|
-
default_executable:
|
18
|
+
date: 2011-09-14 00:00:00 Z
|
20
19
|
dependencies:
|
21
20
|
- !ruby/object:Gem::Dependency
|
22
|
-
|
21
|
+
name: rspec
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
23
24
|
none: false
|
24
25
|
requirements:
|
25
26
|
- - ~>
|
@@ -30,12 +31,12 @@ dependencies:
|
|
30
31
|
- 4
|
31
32
|
- 0
|
32
33
|
version: 2.4.0
|
33
|
-
requirement: *id001
|
34
|
-
prerelease: false
|
35
|
-
name: rspec
|
36
34
|
type: :development
|
35
|
+
version_requirements: *id001
|
37
36
|
- !ruby/object:Gem::Dependency
|
38
|
-
|
37
|
+
name: bundler
|
38
|
+
prerelease: false
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
39
40
|
none: false
|
40
41
|
requirements:
|
41
42
|
- - ~>
|
@@ -46,12 +47,12 @@ dependencies:
|
|
46
47
|
- 0
|
47
48
|
- 0
|
48
49
|
version: 1.0.0
|
49
|
-
requirement: *id002
|
50
|
-
prerelease: false
|
51
|
-
name: bundler
|
52
50
|
type: :development
|
51
|
+
version_requirements: *id002
|
53
52
|
- !ruby/object:Gem::Dependency
|
54
|
-
|
53
|
+
name: jeweler
|
54
|
+
prerelease: false
|
55
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
55
56
|
none: false
|
56
57
|
requirements:
|
57
58
|
- - ~>
|
@@ -62,12 +63,12 @@ dependencies:
|
|
62
63
|
- 5
|
63
64
|
- 2
|
64
65
|
version: 1.5.2
|
65
|
-
requirement: *id003
|
66
|
-
prerelease: false
|
67
|
-
name: jeweler
|
68
66
|
type: :development
|
67
|
+
version_requirements: *id003
|
69
68
|
- !ruby/object:Gem::Dependency
|
70
|
-
|
69
|
+
name: rcov
|
70
|
+
prerelease: false
|
71
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
71
72
|
none: false
|
72
73
|
requirements:
|
73
74
|
- - ">="
|
@@ -76,10 +77,8 @@ dependencies:
|
|
76
77
|
segments:
|
77
78
|
- 0
|
78
79
|
version: "0"
|
79
|
-
requirement: *id004
|
80
|
-
prerelease: false
|
81
|
-
name: rcov
|
82
80
|
type: :development
|
81
|
+
version_requirements: *id004
|
83
82
|
description: This library allows your to handle AtomPub and Atom Feed easily
|
84
83
|
email: lyo.kato@gmail.com
|
85
84
|
executables: []
|
@@ -87,7 +86,6 @@ executables: []
|
|
87
86
|
extensions: []
|
88
87
|
|
89
88
|
extra_rdoc_files:
|
90
|
-
- LICENSE.txt
|
91
89
|
- README.rdoc
|
92
90
|
files:
|
93
91
|
- .document
|
@@ -113,8 +111,6 @@ files:
|
|
113
111
|
- spec/spec.opts
|
114
112
|
- spec/spec_helper.rb
|
115
113
|
- spec/threading_spec.rb
|
116
|
-
- LICENSE.txt
|
117
|
-
has_rdoc: true
|
118
114
|
homepage: http://github.com/lyokato/ruby-atomutil
|
119
115
|
licenses:
|
120
116
|
- MIT
|
@@ -144,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
140
|
requirements: []
|
145
141
|
|
146
142
|
rubyforge_project:
|
147
|
-
rubygems_version: 1.
|
143
|
+
rubygems_version: 1.8.10
|
148
144
|
signing_key:
|
149
145
|
specification_version: 3
|
150
146
|
summary: Ruby AtomPub Client
|
data/LICENSE.txt
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
Copyright (c) 2011 lyokato
|
2
|
-
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
-
a copy of this software and associated documentation files (the
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
9
|
-
the following conditions:
|
10
|
-
|
11
|
-
The above copyright notice and this permission notice shall be
|
12
|
-
included in all copies or substantial portions of the Software.
|
13
|
-
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|