leenookx-feed-utils 0.0.0 → 0.0.1
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/VERSION +1 -0
- data/feed-utils.gemspec +51 -0
- data/lib/feed-utils.rb +2 -0
- metadata +5 -4
data/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.0.1
|
data/feed-utils.gemspec
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{feed-utils}
|
|
8
|
+
s.version = "0.0.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["lnookx"]
|
|
12
|
+
s.date = %q{2009-09-09}
|
|
13
|
+
s.description = %q{RSS/ATOM feed manipulation utilities}
|
|
14
|
+
s.email = %q{lnookx@googlemail.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.rdoc",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"feed-utils.gemspec",
|
|
27
|
+
"lib/feed-utils.rb",
|
|
28
|
+
"test/feed-utils_test.rb",
|
|
29
|
+
"test/test_helper.rb"
|
|
30
|
+
]
|
|
31
|
+
s.has_rdoc = true
|
|
32
|
+
s.homepage = %q{http://github.com/leenookx/feed-utils}
|
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
34
|
+
s.require_paths = ["lib"]
|
|
35
|
+
s.rubygems_version = %q{1.3.1}
|
|
36
|
+
s.summary = %q{Feed Utils}
|
|
37
|
+
s.test_files = [
|
|
38
|
+
"test/feed-utils_test.rb",
|
|
39
|
+
"test/test_helper.rb"
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
if s.respond_to? :specification_version then
|
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
44
|
+
s.specification_version = 2
|
|
45
|
+
|
|
46
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
47
|
+
else
|
|
48
|
+
end
|
|
49
|
+
else
|
|
50
|
+
end
|
|
51
|
+
end
|
data/lib/feed-utils.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: leenookx-feed-utils
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- lnookx
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-09-
|
|
12
|
+
date: 2009-09-09 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
@@ -28,12 +28,13 @@ files:
|
|
|
28
28
|
- LICENSE
|
|
29
29
|
- README.rdoc
|
|
30
30
|
- Rakefile
|
|
31
|
+
- VERSION
|
|
32
|
+
- feed-utils.gemspec
|
|
31
33
|
- lib/feed-utils.rb
|
|
32
34
|
- test/feed-utils_test.rb
|
|
33
35
|
- test/test_helper.rb
|
|
34
36
|
has_rdoc: true
|
|
35
37
|
homepage: http://github.com/leenookx/feed-utils
|
|
36
|
-
licenses:
|
|
37
38
|
post_install_message:
|
|
38
39
|
rdoc_options:
|
|
39
40
|
- --charset=UTF-8
|
|
@@ -54,7 +55,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
54
55
|
requirements: []
|
|
55
56
|
|
|
56
57
|
rubyforge_project:
|
|
57
|
-
rubygems_version: 1.
|
|
58
|
+
rubygems_version: 1.2.0
|
|
58
59
|
signing_key:
|
|
59
60
|
specification_version: 2
|
|
60
61
|
summary: Feed Utils
|