big_sitemap 0.8.3 → 1.0.0
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/Gemfile +8 -1
- data/Gemfile.lock +11 -0
- data/History.txt +21 -0
- data/README.rdoc +30 -94
- data/Rakefile +2 -2
- data/VERSION.yml +4 -4
- data/lib/big_sitemap.rb +181 -104
- data/lib/big_sitemap/builder.rb +28 -27
- data/test/big_sitemap_test.rb +152 -300
- data/test/fixtures/test_model.rb +1 -1
- metadata +69 -61
- data/.gitignore +0 -3
- data/big_sitemap.gemspec +0 -58
data/test/fixtures/test_model.rb
CHANGED
metadata
CHANGED
@@ -1,51 +1,72 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: big_sitemap
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 8
|
9
|
-
- 3
|
10
|
-
version: 0.8.3
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
prerelease:
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Alex Rabarts
|
14
9
|
- Tobias Bielohlawek
|
15
10
|
autorequire:
|
16
11
|
bindir: bin
|
17
12
|
cert_chain: []
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
13
|
+
date: 2011-10-24 00:00:00.000000000Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rake
|
17
|
+
requirement: &2156597760 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ! '>='
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '0'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *2156597760
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: rdoc
|
28
|
+
requirement: &2156597180 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
24
35
|
prerelease: false
|
25
|
-
|
36
|
+
version_requirements: *2156597180
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: jeweler
|
39
|
+
requirement: &2156596500 !ruby/object:Gem::Requirement
|
26
40
|
none: false
|
27
|
-
requirements:
|
28
|
-
- -
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
41
|
+
requirements:
|
42
|
+
- - ! '>='
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '0'
|
45
|
+
type: :development
|
46
|
+
prerelease: false
|
47
|
+
version_requirements: *2156596500
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: bundler
|
50
|
+
requirement: &2156595800 !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ! '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
34
56
|
type: :runtime
|
35
|
-
|
36
|
-
|
37
|
-
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: *2156595800
|
59
|
+
description: A Sitemap generator specifically designed for large sites (although it
|
60
|
+
works equally well with small sites)
|
61
|
+
email:
|
38
62
|
- alexrabarts@gmail.com
|
39
63
|
- tobi@soundcloud.com
|
40
64
|
executables: []
|
41
|
-
|
42
65
|
extensions: []
|
43
|
-
|
44
|
-
extra_rdoc_files:
|
66
|
+
extra_rdoc_files:
|
45
67
|
- LICENSE
|
46
68
|
- README.rdoc
|
47
|
-
files:
|
48
|
-
- .gitignore
|
69
|
+
files:
|
49
70
|
- Gemfile
|
50
71
|
- Gemfile.lock
|
51
72
|
- History.txt
|
@@ -53,47 +74,34 @@ files:
|
|
53
74
|
- README.rdoc
|
54
75
|
- Rakefile
|
55
76
|
- VERSION.yml
|
56
|
-
- big_sitemap.gemspec
|
57
77
|
- lib/big_sitemap.rb
|
58
78
|
- lib/big_sitemap/builder.rb
|
59
79
|
- test/big_sitemap_test.rb
|
60
80
|
- test/fixtures/test_model.rb
|
61
81
|
- test/test_helper.rb
|
62
|
-
has_rdoc: true
|
63
82
|
homepage: http://github.com/alexrabarts/big_sitemap
|
64
83
|
licenses: []
|
65
|
-
|
66
84
|
post_install_message:
|
67
|
-
rdoc_options:
|
68
|
-
|
69
|
-
require_paths:
|
85
|
+
rdoc_options: []
|
86
|
+
require_paths:
|
70
87
|
- lib
|
71
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
88
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
72
89
|
none: false
|
73
|
-
requirements:
|
74
|
-
- -
|
75
|
-
- !ruby/object:Gem::Version
|
76
|
-
|
77
|
-
|
78
|
-
- 0
|
79
|
-
version: "0"
|
80
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
95
|
none: false
|
82
|
-
requirements:
|
83
|
-
- -
|
84
|
-
- !ruby/object:Gem::Version
|
85
|
-
|
86
|
-
segments:
|
87
|
-
- 0
|
88
|
-
version: "0"
|
96
|
+
requirements:
|
97
|
+
- - ! '>='
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
89
100
|
requirements: []
|
90
|
-
|
91
101
|
rubyforge_project:
|
92
|
-
rubygems_version: 1.
|
102
|
+
rubygems_version: 1.8.11
|
93
103
|
signing_key:
|
94
104
|
specification_version: 3
|
95
|
-
summary: A Sitemap generator specifically designed for large sites (although it works
|
96
|
-
|
97
|
-
|
98
|
-
- test/fixtures/test_model.rb
|
99
|
-
- test/test_helper.rb
|
105
|
+
summary: A Sitemap generator specifically designed for large sites (although it works
|
106
|
+
equally well with small sites)
|
107
|
+
test_files: []
|
data/.gitignore
DELETED
data/big_sitemap.gemspec
DELETED
@@ -1,58 +0,0 @@
|
|
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{big_sitemap}
|
8
|
-
s.version = "0.8.3"
|
9
|
-
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = ["Alex Rabarts", "Tobias Bielohlawek"]
|
12
|
-
s.date = %q{2011-03-14}
|
13
|
-
s.description = %q{A Sitemap generator specifically designed for large sites (although it works equally well with small sites)}
|
14
|
-
s.email = ["alexrabarts@gmail.com", "tobi@soundcloud.com"]
|
15
|
-
s.extra_rdoc_files = [
|
16
|
-
"LICENSE",
|
17
|
-
"README.rdoc"
|
18
|
-
]
|
19
|
-
s.files = [
|
20
|
-
".gitignore",
|
21
|
-
"Gemfile",
|
22
|
-
"Gemfile.lock",
|
23
|
-
"History.txt",
|
24
|
-
"LICENSE",
|
25
|
-
"README.rdoc",
|
26
|
-
"Rakefile",
|
27
|
-
"VERSION.yml",
|
28
|
-
"big_sitemap.gemspec",
|
29
|
-
"lib/big_sitemap.rb",
|
30
|
-
"lib/big_sitemap/builder.rb",
|
31
|
-
"test/big_sitemap_test.rb",
|
32
|
-
"test/fixtures/test_model.rb",
|
33
|
-
"test/test_helper.rb"
|
34
|
-
]
|
35
|
-
s.homepage = %q{http://github.com/alexrabarts/big_sitemap}
|
36
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
37
|
-
s.require_paths = ["lib"]
|
38
|
-
s.rubygems_version = %q{1.3.7}
|
39
|
-
s.summary = %q{A Sitemap generator specifically designed for large sites (although it works equally well with small sites)}
|
40
|
-
s.test_files = [
|
41
|
-
"test/big_sitemap_test.rb",
|
42
|
-
"test/fixtures/test_model.rb",
|
43
|
-
"test/test_helper.rb"
|
44
|
-
]
|
45
|
-
|
46
|
-
if s.respond_to? :specification_version then
|
47
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
48
|
-
s.specification_version = 3
|
49
|
-
|
50
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
51
|
-
s.add_runtime_dependency(%q<bundler>, [">= 0"])
|
52
|
-
else
|
53
|
-
s.add_dependency(%q<bundler>, [">= 0"])
|
54
|
-
end
|
55
|
-
else
|
56
|
-
s.add_dependency(%q<bundler>, [">= 0"])
|
57
|
-
end
|
58
|
-
end
|