persona 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -3,3 +3,13 @@
3
3
  Persona is a minimal personal content manager.
4
4
  In this stage it's a work in progress, without much documentation.
5
5
 
6
+
7
+ $ gem install persona
8
+ $ persona create_site myblog
9
+ $ cd myblog
10
+
11
+ and then start any Rack compatible HTTP server
12
+
13
+ done.
14
+
15
+ (I'll post more details soon, promised)
data/bin/persona CHANGED
@@ -8,5 +8,6 @@ end
8
8
 
9
9
  if (ARGV.length == 2 and ARGV[0] == 'create_site')
10
10
  PersonaTasks.create_site Dir.new('.'), ARGV[1]
11
+ p "site created"
11
12
  end
12
13
 
@@ -1,3 +1,3 @@
1
1
  module Persona
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
data/persona.gemspec CHANGED
@@ -13,6 +13,7 @@ Gem::Specification.new do |s|
13
13
  s.description = %q{A minimal personal content manager}
14
14
 
15
15
  s.add_dependency('sinatra', '>= 1.1.0')
16
+ s.add_dependency('builder', '>= 3.0.0')
16
17
 
17
18
  s.files = `git ls-files`.split("\n")
18
19
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 2
9
- version: 0.0.2
8
+ - 3
9
+ version: 0.0.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Filippo Diotalevi
@@ -32,6 +32,21 @@ dependencies:
32
32
  version: 1.1.0
33
33
  type: :runtime
34
34
  version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: builder
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ segments:
44
+ - 3
45
+ - 0
46
+ - 0
47
+ version: 3.0.0
48
+ type: :runtime
49
+ version_requirements: *id002
35
50
  description: A minimal personal content manager
36
51
  email:
37
52
  - filippo.diotalevi@gmail.com