public
Description: Rails-style generator system for creating and managing digital art projects.
Homepage: http://robmyers.org/
Clone URL: git://github.com/robmyers/frame.git
frame / README.txt
100755 80 lines (46 sloc) 1.661 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
= frame
 
http://github.com/robmyers/frame/
 
== DESCRIPTION:
 
A rails-style generator system for creating and managing digital art projects.
 
== FEATURES/PROBLEMS:
 
Not all initial functionality has been implemented or tested yet.
 
Waiting on liblicense being incorporated into more distros before adding
Creative Commons license handling.
 
== SYNOPSIS:
 
Create a project:
 
> art_project test
 
Change to the project directory:
 
> cd test
 
Create a work:
 
> script/work first.svg
 
Edit it:
 
> inkscape preparatory/first.svg
 
Create various other works and edit them:
 
> script/work -c first.svg workX.svg
...
 
Decide some are good and some are bad:
 
> script/status --final work1.svg
> script/status --discard work2.svg
...
 
Make a release archive:
 
> script/release 0.0.1
 
make a web page:
 
> script/web
 
Have a rest, then start making more works.
 
== REQUIREMENTS:
 
Will ultimately rely on liblicense.
 
== INSTALL:
 
sudo gem install frame
 
== LICENSE:
 
frame - create and manage digital art project directory structures
Copyright (C) 2008 Rob Myers
 
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
 
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
 
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.