mlmmj-rbarchiver 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.
- checksums.yaml +7 -0
- data/COPYING +674 -0
- data/README.md +151 -0
- data/bin/mlmmj-rbarchiver +102 -0
- data/data/mhonarc-rc.erb +465 -0
- data/extra/archive.css +81 -0
- data/extra/man/mlmmj-rbarchiver.1 +144 -0
- data/extra/rbarchiver.conf +50 -0
- data/lib/mlmmj-archiver.rb +38 -0
- data/lib/mlmmj-archiver/archiver.rb +327 -0
- data/lib/mlmmj-archiver/version.rb +25 -0
- metadata +110 -0
@@ -0,0 +1,25 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
# This file is part of mlmmj-rbarchive.
|
3
|
+
#
|
4
|
+
# mlmmj-rbarchive makes a web archive from your mlmmj-archive.
|
5
|
+
# Copyright (C) 2014 Marvin Gülker
|
6
|
+
#
|
7
|
+
# This program is free software: you can redistribute it and/or modify
|
8
|
+
# it under the terms of the GNU General Public License as published by
|
9
|
+
# the Free Software Foundation, either version 3 of the License, or
|
10
|
+
# (at your option) any later version.
|
11
|
+
#
|
12
|
+
# This program is distributed in the hope that it will be useful,
|
13
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
# GNU General Public License for more details.
|
16
|
+
#
|
17
|
+
# You should have received a copy of the GNU General Public License
|
18
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
|
20
|
+
module MlmmjArchiver
|
21
|
+
|
22
|
+
# Version number
|
23
|
+
VERSION = "0.0.1"
|
24
|
+
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mlmmj-rbarchiver
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Marvin Gülker
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-02-01 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: mail
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 2.5.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 2.5.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: paint
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.8.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.8.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: ronn
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.7.0
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.7.0
|
55
|
+
description: |
|
56
|
+
mlmmj-rbarchiver is a wrapper program around mhonarc (http://mhonarc.org)
|
57
|
+
that allows you to generate a nice HTML email archive for you mlmmj-managed
|
58
|
+
mailinglists. The resulting directory is split up by year and month, so
|
59
|
+
it is easily navigatable.
|
60
|
+
|
61
|
+
This gem contains both a program intended to be run by cron(8) for
|
62
|
+
processing your mailinglist(s) and a library that can be used to
|
63
|
+
archive mailinglists programmatically.
|
64
|
+
email: quintus@quintilianus.eu
|
65
|
+
executables:
|
66
|
+
- mlmmj-rbarchiver
|
67
|
+
extensions: []
|
68
|
+
extra_rdoc_files:
|
69
|
+
- README.md
|
70
|
+
- COPYING
|
71
|
+
files:
|
72
|
+
- bin/mlmmj-rbarchiver
|
73
|
+
- data/mhonarc-rc.erb
|
74
|
+
- extra/archive.css
|
75
|
+
- extra/rbarchiver.conf
|
76
|
+
- extra/man/mlmmj-rbarchiver.1
|
77
|
+
- lib/mlmmj-archiver.rb
|
78
|
+
- lib/mlmmj-archiver/archiver.rb
|
79
|
+
- lib/mlmmj-archiver/version.rb
|
80
|
+
- README.md
|
81
|
+
- COPYING
|
82
|
+
homepage: http://quintus.github.io/mlmmj-rbarchiver
|
83
|
+
licenses:
|
84
|
+
- GPL
|
85
|
+
metadata: {}
|
86
|
+
post_install_message:
|
87
|
+
rdoc_options:
|
88
|
+
- -m
|
89
|
+
- README.md
|
90
|
+
require_paths:
|
91
|
+
- lib
|
92
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 2.0.0
|
97
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
98
|
+
requirements:
|
99
|
+
- - '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
requirements:
|
103
|
+
- mhonarc (http://www.mhonarc.org)
|
104
|
+
- mlmmj (http://www.mlmmj.org)
|
105
|
+
rubyforge_project:
|
106
|
+
rubygems_version: 2.0.14
|
107
|
+
signing_key:
|
108
|
+
specification_version: 4
|
109
|
+
summary: HTML archive generator for mlmmj mailinglists.
|
110
|
+
test_files: []
|