maui 3.1.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.
- checksums.yaml +7 -0
- data/GPL-3 +674 -0
- data/Makefile +17 -0
- data/Manifest.txt +9 -0
- data/README.fab +222 -0
- data/README.html +296 -0
- data/bin/maui +200 -0
- data/lib/mau/fabricator.rb +2071 -0
- data/maui.fab +3576 -0
- data/maui.gemspec +24 -0
- metadata +59 -0
data/maui.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# This file is tangled from [[maui.fab]].
|
2
|
+
# Please do not edit directly.
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = 'maui'
|
6
|
+
s.version = '3.1.0'
|
7
|
+
s.date = '2014-09-23'
|
8
|
+
s.homepage = 'https://github.com/digwuren/maui'
|
9
|
+
s.summary = 'A wiki-style literate programming engine'
|
10
|
+
s.author = 'Andres Soolo'
|
11
|
+
s.email = 'dig@mirky.net'
|
12
|
+
s.files = File.read('Manifest.txt').split(/\n/)
|
13
|
+
s.executables << 'maui'
|
14
|
+
s.license = 'GPL-3'
|
15
|
+
s.description = <<EOD
|
16
|
+
Fabricator is a literate programming engine with wiki-like
|
17
|
+
notation. Mau is a PIM-oriented wiki engine built around
|
18
|
+
Fabricator. This gem contains Maui, the Mau Independent
|
19
|
+
Fabricator, allowing Fabricator to be used via a command line
|
20
|
+
interface or via the Ruby API without a need to employ a full
|
21
|
+
installation of Mau.
|
22
|
+
EOD
|
23
|
+
s.has_rdoc = false
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: maui
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Andres Soolo
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-09-23 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: |
|
14
|
+
Fabricator is a literate programming engine with wiki-like
|
15
|
+
notation. Mau is a PIM-oriented wiki engine built around
|
16
|
+
Fabricator. This gem contains Maui, the Mau Independent
|
17
|
+
Fabricator, allowing Fabricator to be used via a command line
|
18
|
+
interface or via the Ruby API without a need to employ a full
|
19
|
+
installation of Mau.
|
20
|
+
email: dig@mirky.net
|
21
|
+
executables:
|
22
|
+
- maui
|
23
|
+
extensions: []
|
24
|
+
extra_rdoc_files: []
|
25
|
+
files:
|
26
|
+
- GPL-3
|
27
|
+
- Makefile
|
28
|
+
- Manifest.txt
|
29
|
+
- README.fab
|
30
|
+
- README.html
|
31
|
+
- bin/maui
|
32
|
+
- lib/mau/fabricator.rb
|
33
|
+
- maui.fab
|
34
|
+
- maui.gemspec
|
35
|
+
homepage: https://github.com/digwuren/maui
|
36
|
+
licenses:
|
37
|
+
- GPL-3
|
38
|
+
metadata: {}
|
39
|
+
post_install_message:
|
40
|
+
rdoc_options: []
|
41
|
+
require_paths:
|
42
|
+
- lib
|
43
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - '>='
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0'
|
53
|
+
requirements: []
|
54
|
+
rubyforge_project:
|
55
|
+
rubygems_version: 2.0.14
|
56
|
+
signing_key:
|
57
|
+
specification_version: 4
|
58
|
+
summary: A wiki-style literate programming engine
|
59
|
+
test_files: []
|