Skip to content

Commit

Permalink
renamed & restructured to massive_sitemap
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Bielohlawek committed Feb 9, 2012
1 parent c7ced2f commit a50babe
Show file tree
Hide file tree
Showing 34 changed files with 528 additions and 1,020 deletions.
6 changes: 4 additions & 2 deletions .gitignore
@@ -1,3 +1,5 @@
.rvmrc
._*
*.gem
.bundle
Gemfile.lock
pkg
.rvmrc
25 changes: 25 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,25 @@
# Changes

## vx.x.x - ???

* Amazon S3 integration
* manifest handling

## v2.0.x - ???

* added Index generation
* updated/fixed Ping
* updated Docu
* Writer overwrite detection

## v2.0.1 - 9-02-2012
_inital release_

* restructured gem completely based on BigSitemap gem
* seperated logic in two major parts:
* Builder -> creates content
* Writer -> stores content
* added several implementations/specifiaction of builder/writer
* added generator for default setup
* added specs

5 changes: 2 additions & 3 deletions Gemfile
@@ -1,5 +1,4 @@
source :rubygems
source "http://rubygems.org"

# Specify your gem's dependencies in big_sitemap.gemspec
# Specify your gem's dependencies in massive_sitemap.gemspec
gemspec

27 changes: 9 additions & 18 deletions Gemfile.lock
@@ -1,33 +1,24 @@
PATH
remote: .
specs:
big_sitemap (1.0.0)
massive_sitemap (0.0.1)

GEM
remote: http://rubygems.org/
specs:
diff-lcs (1.1.3)
mocha (0.9.10)
rake
nokogiri (1.4.4)
rake (0.8.7)
rspec (2.7.0)
rspec-core (~> 2.7.0)
rspec-expectations (~> 2.7.0)
rspec-mocks (~> 2.7.0)
rspec-core (2.7.1)
rspec-expectations (2.7.0)
rspec (2.8.0)
rspec-core (~> 2.8.0)
rspec-expectations (~> 2.8.0)
rspec-mocks (~> 2.8.0)
rspec-core (2.8.0)
rspec-expectations (2.8.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.7.0)
shoulda (2.11.3)
rspec-mocks (2.8.0)

PLATFORMS
ruby

DEPENDENCIES
big_sitemap!
bundler
mocha
nokogiri
massive_sitemap!
rspec
shoulda
104 changes: 0 additions & 104 deletions History.txt

This file was deleted.

22 changes: 0 additions & 22 deletions LICENSE

This file was deleted.

11 changes: 11 additions & 0 deletions README.md
@@ -0,0 +1,11 @@
# MassiveSitemap

[![](http://travis-ci.org/rngtng/massive_sitemap.png)](http://travis-ci.org/rngtng/massive_sitemap)

Build painfree sitemaps for webpages with millions of pages

MassiveSitemap is a successor project of [BigSitemap](https://github.com/alexrabarts/big_sitemap), a
a [Sitemap](http://sitemaps.org) generator for webpages with millions of pages.
It implements various generation stategies, e.g. to split large Sitemaps into multiple files, gzip files to minimize bandwidth usage, or incremental updates. Its Api is very similar to _BigSitemap_ and therefor can be set up with just a few lines of code and is compatible with just about any framework.


110 changes: 0 additions & 110 deletions README.rdoc

This file was deleted.

9 changes: 1 addition & 8 deletions Rakefile
@@ -1,11 +1,4 @@
require 'bundler/gem_tasks'

require 'rake/testtask'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib' << 'test' << Rake.original_dir
t.pattern = 'test/**/*_test.rb'
t.verbose = false
end
require "bundler/gem_tasks"

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |t|
Expand Down
1 change: 0 additions & 1 deletion VERSION

This file was deleted.

22 changes: 0 additions & 22 deletions big_sitemap.gemspec

This file was deleted.

0 comments on commit a50babe

Please sign in to comment.