padrino-admin 0.1.1 → 0.1.2

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.
Files changed (5) hide show
  1. data/README.rdoc +16 -1
  2. data/Rakefile +1 -0
  3. data/VERSION +1 -1
  4. data/padrino-admin.gemspec +5 -2
  5. metadata +12 -2
data/README.rdoc CHANGED
@@ -1,6 +1,21 @@
1
1
  = padrino-admin
2
2
 
3
- Description goes here.
3
+ == Installation
4
+
5
+ To install the 'full-stack' padrino framework, simply grab the latest version from gemcutter:
6
+
7
+ $ sudo gem install padrino --source http://gemcutter.org
8
+
9
+ This will install the necessary padrino gems to get you started.
10
+ Now you are ready to use this gem to enhance your sinatra projects or to create new Padrino applications.
11
+
12
+ You can also install only the padrino-admin gem for more fine-grained use:
13
+
14
+ $ sudo gem install padrino-admin --source http://gemcutter.org
15
+
16
+ == Usage
17
+
18
+ Not implemented yet.
4
19
 
5
20
  == Copyright
6
21
 
data/Rakefile CHANGED
@@ -11,6 +11,7 @@ begin
11
11
  gem.homepage = "http://github.com/padrino/padrino-admin"
12
12
  gem.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
13
13
  gem.add_runtime_dependency "sinatra", ">= 0.9.2"
14
+ gem.add_runtime_dependency "padrino-core", ">= 0.1.1"
14
15
  gem.add_development_dependency "haml", ">= 2.2.1"
15
16
  gem.add_development_dependency "shoulda", ">= 0"
16
17
  gem.add_development_dependency "mocha", ">= 0.9.7"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{padrino-admin}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
12
- s.date = %q{2009-11-17}
12
+ s.date = %q{2009-11-18}
13
13
  s.description = %q{Admin View for Padrino applications}
14
14
  s.email = %q{nesquena@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -43,6 +43,7 @@ Gem::Specification.new do |s|
43
43
 
44
44
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
45
45
  s.add_runtime_dependency(%q<sinatra>, [">= 0.9.2"])
46
+ s.add_runtime_dependency(%q<padrino-core>, [">= 0.1.1"])
46
47
  s.add_development_dependency(%q<haml>, [">= 2.2.1"])
47
48
  s.add_development_dependency(%q<shoulda>, [">= 0"])
48
49
  s.add_development_dependency(%q<mocha>, [">= 0.9.7"])
@@ -50,6 +51,7 @@ Gem::Specification.new do |s|
50
51
  s.add_development_dependency(%q<webrat>, [">= 0.5.1"])
51
52
  else
52
53
  s.add_dependency(%q<sinatra>, [">= 0.9.2"])
54
+ s.add_dependency(%q<padrino-core>, [">= 0.1.1"])
53
55
  s.add_dependency(%q<haml>, [">= 2.2.1"])
54
56
  s.add_dependency(%q<shoulda>, [">= 0"])
55
57
  s.add_dependency(%q<mocha>, [">= 0.9.7"])
@@ -58,6 +60,7 @@ Gem::Specification.new do |s|
58
60
  end
59
61
  else
60
62
  s.add_dependency(%q<sinatra>, [">= 0.9.2"])
63
+ s.add_dependency(%q<padrino-core>, [">= 0.1.1"])
61
64
  s.add_dependency(%q<haml>, [">= 2.2.1"])
62
65
  s.add_dependency(%q<shoulda>, [">= 0"])
63
66
  s.add_dependency(%q<mocha>, [">= 0.9.7"])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: padrino-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Padrino Team
@@ -12,7 +12,7 @@ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
14
 
15
- date: 2009-11-17 00:00:00 -08:00
15
+ date: 2009-11-18 00:00:00 -08:00
16
16
  default_executable:
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
@@ -25,6 +25,16 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.9.2
27
27
  version:
28
+ - !ruby/object:Gem::Dependency
29
+ name: padrino-core
30
+ type: :runtime
31
+ version_requirement:
32
+ version_requirements: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: 0.1.1
37
+ version:
28
38
  - !ruby/object:Gem::Dependency
29
39
  name: haml
30
40
  type: :development