soxer 0.9.6.1 → 0.9.7
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +10 -0
- data/LICENSE +15 -0
- data/README.markdown +47 -0
- data/lib/soxer/skel/empty/views/css/css.sass +1 -1
- data/soxer.gemspec +5 -2
- metadata +21 -5
data/CHANGES
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
= 0.9.7 / 2010-11-03
|
2
|
+
|
3
|
+
* Fixed "views/css/css.sass" for empty skeleton to comply with new sass notation.
|
4
|
+
|
5
|
+
* Created a README.markdown document
|
6
|
+
|
7
|
+
* Added sinatra-reloader as dependency, although it's only needed in developement mode.
|
8
|
+
|
9
|
+
* Added proper license
|
10
|
+
|
1
11
|
= 0.9.6.1 / 2010-11-01
|
2
12
|
|
3
13
|
* Soxer binary cleanup
|
data/LICENSE
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
SOXER, a lightweight web publishing tool.
|
2
|
+
Copyright (C) 2010 Toni Anžlovar
|
3
|
+
|
4
|
+
This program is free software: you can redistribute it and/or modify
|
5
|
+
it under the terms of the GNU General Public License as published by
|
6
|
+
the Free Software Foundation, either version 3 of the License, or
|
7
|
+
(at your option) any later version.
|
8
|
+
|
9
|
+
This program is distributed in the hope that it will be useful,
|
10
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
11
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
12
|
+
GNU General Public License for more details.
|
13
|
+
|
14
|
+
You should have received a copy of the GNU General Public License
|
15
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
data/README.markdown
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
Soxer, the web publishing tool
|
2
|
+
==============================
|
3
|
+
|
4
|
+
[Soxer](http://soxer.mutsu.org) is a document/url centric web publishing
|
5
|
+
system. It enables the developer to quickly setup, design and deploy any web based project, from quick mockups to complete portals.
|
6
|
+
|
7
|
+
Soxer is distributed under the terms of [GNU General Public License](http://www.gnu.org/licenses/gpl.htm) and is supported by [Formalibre](http://www.formalibre.si).
|
8
|
+
|
9
|
+
It's strong points include:
|
10
|
+
|
11
|
+
- All data and configuration is disk based.
|
12
|
+
- Everything is editable with a text editor.
|
13
|
+
- There is no relational database back end.
|
14
|
+
- It uses and follows standards. The document format is [YAML](http://www.yaml.org)
|
15
|
+
- Document model is loose (adaptable "on the fly") and only determined by your views or partials.
|
16
|
+
- It's a Sinatra modular application, so you can easily incorporate it into existing project.
|
17
|
+
|
18
|
+
What Soxer is not (yet)...
|
19
|
+
|
20
|
+
- ... a complete CMS in classic sense.
|
21
|
+
- ... a *turn-key-slap-the-logo-on-and-charge-for-it* solution.
|
22
|
+
- ... mature product.
|
23
|
+
|
24
|
+
|
25
|
+
Test drive the soxer
|
26
|
+
--------------------
|
27
|
+
|
28
|
+
You can install soxer by:
|
29
|
+
`$ sudo gem install soxer`
|
30
|
+
|
31
|
+
You can benefit by installing 2 more gems:
|
32
|
+
`$ sudo gem install thin rdiscount`
|
33
|
+
|
34
|
+
Thin and rdiscount are not necessary for Soxer to run, but they make it run much faster even in development mode. [Thin](http://code.macournoyer.com/thin) is a production ready rubyweb server, [rdiscount](http://github.com/rtomayko/rdiscount) is a ruby interface to [discount](http://www.pell.portland.or.us/~orc/Code/discount), a C implementation of [Markdown](http://daringfireball.net/projects/markdown).
|
35
|
+
|
36
|
+
To create a "hello world" type 'empty' application named 'webpage', you can run:
|
37
|
+
`$ soxer create empty webpage`
|
38
|
+
|
39
|
+
The directory webpage, which you just created has everything you need to run your first soxer application. Just enter it and run soxer in developement mode:
|
40
|
+
<code>
|
41
|
+
$ cd webpage; soxer test
|
42
|
+
</code>
|
43
|
+
|
44
|
+
It's that simple.
|
45
|
+
|
46
|
+
You can read more about soxer on <http://soxer.mutsu.org>, which hosts a growing list of tutorials. You can also contact the author at **toni at formalibre dot si**.
|
47
|
+
|
data/soxer.gemspec
CHANGED
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
|
|
4
4
|
s.rubygems_version = '1.3.7'
|
5
5
|
|
6
6
|
s.name = 'soxer'
|
7
|
-
s.version = '0.9.
|
8
|
-
s.date = '2010-11-
|
7
|
+
s.version = '0.9.7'
|
8
|
+
s.date = '2010-11-03'
|
9
9
|
s.rubyforge_project = 'soxer'
|
10
10
|
|
11
11
|
s.summary = "Dynamic web site generator engine"
|
@@ -23,11 +23,14 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.add_dependency('sinatra', "~> 1")
|
24
24
|
s.add_dependency('haml', "~> 3")
|
25
25
|
s.add_dependency('uuid', "~> 2")
|
26
|
+
s.add_dependency('sinatra-reloader', "~> 0.5")
|
26
27
|
|
27
28
|
# = MANIFEST =
|
28
29
|
s.files = %w[
|
29
30
|
soxer.gemspec
|
30
31
|
CHANGES
|
32
|
+
README.markdown
|
33
|
+
LICENSE
|
31
34
|
bin/soxer
|
32
35
|
lib/soxer.rb
|
33
36
|
lib/soxer/main.rb
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: soxer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 53
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 9
|
9
|
-
-
|
10
|
-
|
11
|
-
version: 0.9.6.1
|
9
|
+
- 7
|
10
|
+
version: 0.9.7
|
12
11
|
platform: ruby
|
13
12
|
authors:
|
14
13
|
- Toni Anzlovar
|
@@ -16,7 +15,7 @@ autorequire:
|
|
16
15
|
bindir: bin
|
17
16
|
cert_chain: []
|
18
17
|
|
19
|
-
date: 2010-11-
|
18
|
+
date: 2010-11-03 00:00:00 +01:00
|
20
19
|
default_executable:
|
21
20
|
dependencies:
|
22
21
|
- !ruby/object:Gem::Dependency
|
@@ -61,6 +60,21 @@ dependencies:
|
|
61
60
|
version: "2"
|
62
61
|
type: :runtime
|
63
62
|
version_requirements: *id003
|
63
|
+
- !ruby/object:Gem::Dependency
|
64
|
+
name: sinatra-reloader
|
65
|
+
prerelease: false
|
66
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
67
|
+
none: false
|
68
|
+
requirements:
|
69
|
+
- - ~>
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
hash: 1
|
72
|
+
segments:
|
73
|
+
- 0
|
74
|
+
- 5
|
75
|
+
version: "0.5"
|
76
|
+
type: :runtime
|
77
|
+
version_requirements: *id004
|
64
78
|
description: Soxer is a file based dynamic web site creation tool for Sinatra.
|
65
79
|
email: toni@formalibre.si
|
66
80
|
executables:
|
@@ -72,6 +86,8 @@ extra_rdoc_files: []
|
|
72
86
|
files:
|
73
87
|
- soxer.gemspec
|
74
88
|
- CHANGES
|
89
|
+
- README.markdown
|
90
|
+
- LICENSE
|
75
91
|
- bin/soxer
|
76
92
|
- lib/soxer.rb
|
77
93
|
- lib/soxer/main.rb
|