padrino-admin 0.1.3 → 0.1.4
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.rdoc +1 -1
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/padrino-admin.gemspec +4 -8
- data/test/helper.rb +0 -5
- data/test/test_padrino_admin.rb +1 -1
- metadata +3 -5
- data/test/active_support_helpers.rb +0 -7
data/README.rdoc
CHANGED
|
@@ -7,7 +7,7 @@ To install the 'full-stack' padrino framework, simply grab the latest version fr
|
|
|
7
7
|
$ sudo gem install padrino --source http://gemcutter.org
|
|
8
8
|
|
|
9
9
|
This will install the necessary padrino gems to get you started.
|
|
10
|
-
Now you are ready to use this gem to enhance your
|
|
10
|
+
Now you are ready to use this gem to enhance your existing Sinatra projects or build new Padrino applications.
|
|
11
11
|
|
|
12
12
|
You can also install only the padrino-admin gem for more fine-grained use:
|
|
13
13
|
|
data/Rakefile
CHANGED
|
@@ -8,12 +8,12 @@ begin
|
|
|
8
8
|
gem.summary = "Admin Dashboard for Padrino"
|
|
9
9
|
gem.description = "Admin View for Padrino applications"
|
|
10
10
|
gem.email = "nesquena@gmail.com"
|
|
11
|
-
gem.homepage = "http://github.com/padrino/padrino-admin"
|
|
11
|
+
gem.homepage = "http://github.com/padrino/padrino-framework/tree/master/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
14
|
gem.add_runtime_dependency "padrino-core", ">= 0.1.1"
|
|
15
15
|
gem.add_development_dependency "haml", ">= 2.2.1"
|
|
16
|
-
gem.add_development_dependency "shoulda",
|
|
16
|
+
gem.add_development_dependency "shoulda", ">= 0"
|
|
17
17
|
gem.add_development_dependency "mocha", ">= 0.9.7"
|
|
18
18
|
gem.add_development_dependency "rack-test", ">= 0.5.0"
|
|
19
19
|
gem.add_development_dependency "webrat", ">= 0.5.1"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.4
|
data/padrino-admin.gemspec
CHANGED
|
@@ -5,33 +5,29 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{padrino-admin}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.4"
|
|
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-
|
|
12
|
+
s.date = %q{2009-11-23}
|
|
13
13
|
s.description = %q{Admin View for Padrino applications}
|
|
14
14
|
s.email = %q{nesquena@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
|
-
"
|
|
17
|
-
"README.rdoc"
|
|
16
|
+
"README.rdoc"
|
|
18
17
|
]
|
|
19
18
|
s.files = [
|
|
20
19
|
".document",
|
|
21
20
|
".gitignore",
|
|
22
21
|
"LICENSE",
|
|
23
22
|
"README.rdoc",
|
|
24
|
-
"README.rdoc",
|
|
25
|
-
"Rakefile",
|
|
26
23
|
"Rakefile",
|
|
27
24
|
"VERSION",
|
|
28
25
|
"lib/padrino-admin.rb",
|
|
29
26
|
"padrino-admin.gemspec",
|
|
30
|
-
"test/active_support_helpers.rb",
|
|
31
27
|
"test/helper.rb",
|
|
32
28
|
"test/test_padrino_admin.rb"
|
|
33
29
|
]
|
|
34
|
-
s.homepage = %q{http://github.com/padrino/padrino-admin}
|
|
30
|
+
s.homepage = %q{http://github.com/padrino/padrino-framework/tree/master/padrino-admin}
|
|
35
31
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
36
32
|
s.require_paths = ["lib"]
|
|
37
33
|
s.rubygems_version = %q{1.3.5}
|
data/test/helper.rb
CHANGED
|
@@ -7,14 +7,9 @@ require 'webrat'
|
|
|
7
7
|
|
|
8
8
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
9
9
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
10
|
-
require 'active_support_helpers'
|
|
11
|
-
require 'padrino-helpers'
|
|
12
10
|
require 'padrino-admin'
|
|
13
11
|
|
|
14
12
|
class Test::Unit::TestCase
|
|
15
|
-
include Padrino::Helpers::OutputHelpers
|
|
16
|
-
include Padrino::Helpers::TagHelpers
|
|
17
|
-
include Padrino::Helpers::AssetTagHelpers
|
|
18
13
|
include Rack::Test::Methods
|
|
19
14
|
include Webrat::Methods
|
|
20
15
|
include Webrat::Matchers
|
data/test/test_padrino_admin.rb
CHANGED
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.
|
|
4
|
+
version: 0.1.4
|
|
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-
|
|
15
|
+
date: 2009-11-23 00:00:00 -08:00
|
|
16
16
|
default_executable:
|
|
17
17
|
dependencies:
|
|
18
18
|
- !ruby/object:Gem::Dependency
|
|
@@ -92,7 +92,6 @@ executables: []
|
|
|
92
92
|
extensions: []
|
|
93
93
|
|
|
94
94
|
extra_rdoc_files:
|
|
95
|
-
- LICENSE
|
|
96
95
|
- README.rdoc
|
|
97
96
|
files:
|
|
98
97
|
- .document
|
|
@@ -103,11 +102,10 @@ files:
|
|
|
103
102
|
- VERSION
|
|
104
103
|
- lib/padrino-admin.rb
|
|
105
104
|
- padrino-admin.gemspec
|
|
106
|
-
- test/active_support_helpers.rb
|
|
107
105
|
- test/helper.rb
|
|
108
106
|
- test/test_padrino_admin.rb
|
|
109
107
|
has_rdoc: true
|
|
110
|
-
homepage: http://github.com/padrino/padrino-admin
|
|
108
|
+
homepage: http://github.com/padrino/padrino-framework/tree/master/padrino-admin
|
|
111
109
|
licenses: []
|
|
112
110
|
|
|
113
111
|
post_install_message:
|