vesper 0.1.0 → 0.1.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.
- data/README.md +9 -10
- data/lib/vesper/template/app.rb +1 -1
- data/lib/vesper/template/{ext → vendor/plugins}/date_time.rb +0 -0
- data/lib/vesper/template/{ext → vendor/plugins}/helpers.rb +0 -0
- data/lib/vesper/template/{ext → vendor/plugins}/log.rb +0 -0
- data/lib/vesper/template/{ext → vendor/plugins}/number.rb +0 -0
- data/lib/vesper/template/{ext → vendor/plugins}/string.rb +0 -0
- data/lib/vesper/version.rb +1 -1
- metadata +7 -7
data/README.md
CHANGED
|
@@ -1,20 +1,19 @@
|
|
|
1
|
-
Vesper is still in
|
|
1
|
+
Vesper is still in development until the 1.0 release, so tread carefully.
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## Installation
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
You may need to sudo this:
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
gem install vesper
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
## Getting Started
|
|
10
|
+
|
|
11
|
+
Create an app:
|
|
10
12
|
|
|
11
|
-
cd ~/Sites
|
|
12
13
|
vesper create MyApp && cd MyApp
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
Start it up:
|
|
15
16
|
|
|
16
17
|
rackup
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
Don't forget to periodically pull updates and reinstall to get the latest version.
|
|
19
|
+
Then take a look at http://localhost:9292.
|
data/lib/vesper/template/app.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/vesper/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vesper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2011-12-
|
|
12
|
+
date: 2011-12-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description:
|
|
15
15
|
email: jarrodtaylor@me.com
|
|
@@ -39,11 +39,6 @@ files:
|
|
|
39
39
|
- lib/vesper/template/config/sms.rb
|
|
40
40
|
- lib/vesper/template/data/seeds.rb
|
|
41
41
|
- lib/vesper/template/data/transmogrify.rb
|
|
42
|
-
- lib/vesper/template/ext/date_time.rb
|
|
43
|
-
- lib/vesper/template/ext/helpers.rb
|
|
44
|
-
- lib/vesper/template/ext/log.rb
|
|
45
|
-
- lib/vesper/template/ext/number.rb
|
|
46
|
-
- lib/vesper/template/ext/string.rb
|
|
47
42
|
- lib/vesper/template/lib/hello_world.rb
|
|
48
43
|
- lib/vesper/template/log/messages.log
|
|
49
44
|
- lib/vesper/template/public/css/design.css
|
|
@@ -54,6 +49,11 @@ files:
|
|
|
54
49
|
- lib/vesper/template/tasks/irb.rb
|
|
55
50
|
- lib/vesper/template/tmp/restart.txt
|
|
56
51
|
- lib/vesper/template/vendor/bundle/.gitkeep
|
|
52
|
+
- lib/vesper/template/vendor/plugins/date_time.rb
|
|
53
|
+
- lib/vesper/template/vendor/plugins/helpers.rb
|
|
54
|
+
- lib/vesper/template/vendor/plugins/log.rb
|
|
55
|
+
- lib/vesper/template/vendor/plugins/number.rb
|
|
56
|
+
- lib/vesper/template/vendor/plugins/string.rb
|
|
57
57
|
- lib/vesper/template/views/hello_world.html
|
|
58
58
|
- lib/vesper/template/views/layout.html
|
|
59
59
|
- lib/vesper/version.rb
|