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 CHANGED
@@ -1,20 +1,19 @@
1
- Vesper is still in alpha, so you'll have to build it from source.
1
+ Vesper is still in development until the 1.0 release, so tread carefully.
2
2
 
3
- [Download the repo](https://github.com/jarrodtaylor/vesper/downloads), uncompress and cd into your new directory.
3
+ ## Installation
4
4
 
5
- Install the gem from souce:
5
+ You may need to sudo this:
6
6
 
7
- sudo rake install
7
+ gem install vesper
8
8
 
9
- Create a new Vesper web app:
9
+ ## Getting Started
10
+
11
+ Create an app:
10
12
 
11
- cd ~/Sites
12
13
  vesper create MyApp && cd MyApp
13
14
 
14
- Run your new web app:
15
+ Start it up:
15
16
 
16
17
  rackup
17
18
 
18
- [Visit your web app locally.](http://localhost:9292)
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.
@@ -5,7 +5,7 @@
5
5
  # Directories to load, in order
6
6
  load_files = [
7
7
  'config',
8
- 'ext',
8
+ 'bundle/plugins',
9
9
  'lib'
10
10
  ]
11
11
  load_files.each {|dir| Dir["./#{dir}/**/*.rb"].each {|file| require file}}
File without changes
@@ -1,3 +1,3 @@
1
1
  module Vesper
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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-10 00:00:00.000000000 Z
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