caboodle 0.2.7 → 0.2.8
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.
- data/LICENSE +1 -1
- data/README.rdoc +23 -13
- data/README.textile +37 -0
- data/VERSION +1 -1
- metadata +6 -4
data/LICENSE
CHANGED
data/README.rdoc
CHANGED
|
@@ -1,20 +1,30 @@
|
|
|
1
|
-
|
|
1
|
+
http://posterous.com/getfile/files.posterous.com/temp-2010-08-17/JGcuaytyAkpyFrgqaioavulpEcdrfgCGeilGpHAEzvtgAfFnimzzEJarawqG/caboodle.png.scaled1000.png
|
|
2
2
|
|
|
3
|
-
Caboodle is a
|
|
3
|
+
== Caboodle is a quick and easy way to create a mashup website
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
A quick demonstration if you are familiar with Ruby:
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
> sudo gem install caboodle
|
|
8
|
+
> caboodle create myproject
|
|
9
|
+
Please set a value for title:
|
|
10
|
+
> My brand new project
|
|
11
|
+
Please set a value for description:
|
|
12
|
+
> The full kit and Caboodle
|
|
13
|
+
> cd myproject
|
|
14
|
+
> caboodle kit:add flickr
|
|
15
|
+
Please set a value for flickr_username
|
|
16
|
+
> myproject
|
|
17
|
+
Please set a value for flickr_apikey
|
|
18
|
+
> b1789c432a78990b44d39ff
|
|
19
|
+
> caboodle deploy
|
|
8
20
|
|
|
9
|
-
==
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
|
17
|
-
* Send me a pull request. Bonus points for topic branches.
|
|
21
|
+
== Documentation and instructions[http://wiki.github.com/steflewandowski/Caboodle/]
|
|
22
|
+
|
|
23
|
+
This includes some pointers on how to use Caboodle without any knowledge of Ruby, Git or Heroku which Caboodle relies upon.
|
|
24
|
+
|
|
25
|
+
== Questions
|
|
26
|
+
|
|
27
|
+
Stef on Twitter[http://twitter.com/stef]
|
|
18
28
|
|
|
19
29
|
== Copyright
|
|
20
30
|
|
data/README.textile
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
!http://posterous.com/getfile/files.posterous.com/temp-2010-08-17/JGcuaytyAkpyFrgqaioavulpEcdrfgCGeilGpHAEzvtgAfFnimzzEJarawqG/caboodle.png.scaled1000.png!
|
|
2
|
+
|
|
3
|
+
h2. Caboodle is a quick and easy way to create a mashup website
|
|
4
|
+
|
|
5
|
+
A quick demonstration if you are familiar with Ruby:
|
|
6
|
+
|
|
7
|
+
<pre>sudo gem install caboodle
|
|
8
|
+
|
|
9
|
+
caboodle create myproject
|
|
10
|
+
|
|
11
|
+
(Respond to some questions, such as setting the site's title)
|
|
12
|
+
|
|
13
|
+
cd myproject
|
|
14
|
+
|
|
15
|
+
caboodle kit:add flickr
|
|
16
|
+
|
|
17
|
+
Please set a value for flickr_username
|
|
18
|
+
myproject
|
|
19
|
+
|
|
20
|
+
Please set a value for flickr_apikey
|
|
21
|
+
b1789c432a78990b44d39ff
|
|
22
|
+
|
|
23
|
+
caboodle deploy</pre>
|
|
24
|
+
|
|
25
|
+
h2. "WIKI":http://wiki.github.com/steflewandowski/Caboodle/
|
|
26
|
+
|
|
27
|
+
"Getting started":http://wiki.github.com/steflewandowski/Caboodle/getting-started includes instructions on how to use Caboodle without any assumed knowledge of Ruby, Git or Heroku which Caboodle relies upon.
|
|
28
|
+
|
|
29
|
+
"Creating a Caboodle":http://wiki.github.com/steflewandowski/Caboodle/creating-a-caboodle walks you through the process of setting up a Caboodle website.
|
|
30
|
+
|
|
31
|
+
h2. Questions
|
|
32
|
+
|
|
33
|
+
"Stef on Twitter":http://twitter.com/stef
|
|
34
|
+
|
|
35
|
+
h2. Copyright
|
|
36
|
+
|
|
37
|
+
Copyright (c) 2010 Stef Lewandowski. Released under a MIT License. See LICENSE for details.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.8
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: caboodle
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 7
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 8
|
|
10
|
+
version: 0.2.8
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- steflewandowski
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-08-
|
|
18
|
+
date: 2010-08-25 00:00:00 +01:00
|
|
19
19
|
default_executable: caboodle
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -232,11 +232,13 @@ extensions: []
|
|
|
232
232
|
extra_rdoc_files:
|
|
233
233
|
- LICENSE
|
|
234
234
|
- README.rdoc
|
|
235
|
+
- README.textile
|
|
235
236
|
files:
|
|
236
237
|
- .document
|
|
237
238
|
- .gitignore
|
|
238
239
|
- LICENSE
|
|
239
240
|
- README.rdoc
|
|
241
|
+
- README.textile
|
|
240
242
|
- Rakefile
|
|
241
243
|
- VERSION
|
|
242
244
|
- bin/caboodle
|