vogue 0.2.0
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/LICENSE +20 -0
- data/README.markdown +113 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/lib/vogue.rb +49 -0
- data/lib/vogue/dropdowns.rb +9 -0
- data/lib/vogue/form_builder.rb +241 -0
- data/lib/vogue/helpers.rb +29 -0
- data/lib/vogue/partial_locator.rb +22 -0
- data/lib/vogue/resource_controller_extensions.rb +36 -0
- data/lib/vogue/template_locator.rb +27 -0
- data/test/README +243 -0
- data/test/Rakefile +10 -0
- data/test/app/controllers/application_controller.rb +10 -0
- data/test/app/controllers/pants_controller.rb +7 -0
- data/test/app/controllers/posts_controller.rb +13 -0
- data/test/app/controllers/priorities_controller.rb +3 -0
- data/test/app/helpers/application_helper.rb +3 -0
- data/test/app/helpers/posts_helper.rb +2 -0
- data/test/app/helpers/priorities_helper.rb +2 -0
- data/test/app/models/post.rb +3 -0
- data/test/app/models/priority.rb +2 -0
- data/test/app/views/layouts/standard/_header.html.erb +3 -0
- data/test/app/views/layouts/standard/_specific.html.erb +1 -0
- data/test/app/views/layouts/standard/_sub_header.html.erb +3 -0
- data/test/app/views/layouts/standard/new.html.erb +5 -0
- data/test/app/views/posts/_form.html.erb +3 -0
- data/test/app/views/posts/_specific.html.erb +1 -0
- data/test/config/boot.rb +110 -0
- data/test/config/database.yml +22 -0
- data/test/config/environment.rb +48 -0
- data/test/config/environments/development.rb +17 -0
- data/test/config/environments/production.rb +28 -0
- data/test/config/environments/test.rb +28 -0
- data/test/config/initializers/backtrace_silencers.rb +7 -0
- data/test/config/initializers/inflections.rb +10 -0
- data/test/config/initializers/mime_types.rb +5 -0
- data/test/config/initializers/new_rails_defaults.rb +21 -0
- data/test/config/initializers/session_store.rb +15 -0
- data/test/config/locales/en.yml +5 -0
- data/test/config/routes.rb +47 -0
- data/test/db/development.sqlite3 +0 -0
- data/test/db/migrate/20100330233049_create_posts.rb +14 -0
- data/test/db/migrate/20100330233402_create_priorities.rb +13 -0
- data/test/db/schema.rb +28 -0
- data/test/db/seeds.rb +12 -0
- data/test/db/test.sqlite3 +0 -0
- data/test/lib/dropdowns.rb +7 -0
- data/test/log/development.log +1728 -0
- data/test/log/production.log +0 -0
- data/test/log/server.log +0 -0
- data/test/log/test.log +638 -0
- data/test/public/404.html +30 -0
- data/test/public/422.html +30 -0
- data/test/public/500.html +30 -0
- data/test/public/favicon.ico +0 -0
- data/test/public/images/rails.png +0 -0
- data/test/public/index.html +275 -0
- data/test/public/javascripts/application.js +2 -0
- data/test/public/javascripts/controls.js +963 -0
- data/test/public/javascripts/dragdrop.js +973 -0
- data/test/public/javascripts/effects.js +1128 -0
- data/test/public/javascripts/prototype.js +4320 -0
- data/test/public/robots.txt +5 -0
- data/test/script/about +4 -0
- data/test/script/console +3 -0
- data/test/script/dbconsole +3 -0
- data/test/script/destroy +3 -0
- data/test/script/generate +3 -0
- data/test/script/performance/benchmarker +3 -0
- data/test/script/performance/profiler +3 -0
- data/test/script/plugin +3 -0
- data/test/script/runner +3 -0
- data/test/script/server +3 -0
- data/test/test/blueprint.rb +8 -0
- data/test/test/fixtures/posts.yml +7 -0
- data/test/test/fixtures/priorities.yml +7 -0
- data/test/test/functional/pants_controller_test.rb +15 -0
- data/test/test/functional/posts_controller_test.rb +27 -0
- data/test/test/functional/priorities_controller_test.rb +8 -0
- data/test/test/performance/browsing_test.rb +9 -0
- data/test/test/test_helper.rb +39 -0
- data/test/test/unit/helpers/posts_helper_test.rb +4 -0
- data/test/test/unit/helpers/priorities_helper_test.rb +4 -0
- data/test/test/unit/post_test.rb +8 -0
- data/test/test/unit/priority_test.rb +8 -0
- data/vogue.gemspec +163 -0
- metadata +201 -0
data/test/script/about
ADDED
data/test/script/console
ADDED
data/test/script/destroy
ADDED
data/test/script/plugin
ADDED
data/test/script/runner
ADDED
data/test/script/server
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
require 'test_helper'
|
|
2
|
+
|
|
3
|
+
# Load in the posts controller to ensure vogue has overridden things.
|
|
4
|
+
PostsController
|
|
5
|
+
class PantsControllerTest < ActionController::TestCase
|
|
6
|
+
|
|
7
|
+
test "standard ActionView::MissingTemplate is raised" do
|
|
8
|
+
|
|
9
|
+
assert_raise ActionView::MissingTemplate do
|
|
10
|
+
get "no_view_method"
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
require 'test_helper'
|
|
2
|
+
|
|
3
|
+
class PostsControllerTest < ActionController::TestCase
|
|
4
|
+
|
|
5
|
+
test "renders ok for new" do
|
|
6
|
+
get "new"
|
|
7
|
+
assert_response :ok
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
test "vogue helper returns correct option" do
|
|
11
|
+
get "new"
|
|
12
|
+
assert @response.body.include?("Wunderbah"), "Wunderbah was not included in the response. vogue helper possibly broken."
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
test "vogue helper does not render data from another controller" do
|
|
16
|
+
get "new"
|
|
17
|
+
assert !@response.body.include?("Uberkid"), "Uberkid was not expected in the response. vogue helper possibly broken."
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
test "template overriding ok" do
|
|
21
|
+
get "new"
|
|
22
|
+
assert_response :ok
|
|
23
|
+
assert_template :partial => "posts/_specific"
|
|
24
|
+
assert_template :partial => "_header"
|
|
25
|
+
assert_template :partial => "_sub_header"
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
|
2
|
+
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
|
|
3
|
+
require 'test_help'
|
|
4
|
+
require 'blueprint'
|
|
5
|
+
|
|
6
|
+
class ActiveSupport::TestCase
|
|
7
|
+
# Transactional fixtures accelerate your tests by wrapping each test method
|
|
8
|
+
# in a transaction that's rolled back on completion. This ensures that the
|
|
9
|
+
# test database remains unchanged so your fixtures don't have to be reloaded
|
|
10
|
+
# between every test method. Fewer database queries means faster tests.
|
|
11
|
+
#
|
|
12
|
+
# Read Mike Clark's excellent walkthrough at
|
|
13
|
+
# http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
|
|
14
|
+
#
|
|
15
|
+
# Every Active Record database supports transactions except MyISAM tables
|
|
16
|
+
# in MySQL. Turn off transactional fixtures in this case; however, if you
|
|
17
|
+
# don't care one way or the other, switching from MyISAM to InnoDB tables
|
|
18
|
+
# is recommended.
|
|
19
|
+
#
|
|
20
|
+
# The only drawback to using transactional fixtures is when you actually
|
|
21
|
+
# need to test transactions. Since your test is bracketed by a transaction,
|
|
22
|
+
# any transactions started in your code will be automatically rolled back.
|
|
23
|
+
self.use_transactional_fixtures = true
|
|
24
|
+
|
|
25
|
+
# Instantiated fixtures are slow, but give you @david where otherwise you
|
|
26
|
+
# would need people(:david). If you don't want to migrate your existing
|
|
27
|
+
# test cases which use the @david style and don't mind the speed hit (each
|
|
28
|
+
# instantiated fixtures translates to a database query per test method),
|
|
29
|
+
# then set this back to true.
|
|
30
|
+
self.use_instantiated_fixtures = false
|
|
31
|
+
|
|
32
|
+
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
|
33
|
+
#
|
|
34
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
|
35
|
+
# -- they do not yet inherit this setting
|
|
36
|
+
setup { Sham.reset }
|
|
37
|
+
|
|
38
|
+
# Add more helper methods to be used by all tests here...
|
|
39
|
+
end
|
data/vogue.gemspec
ADDED
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{vogue}
|
|
8
|
+
s.version = "0.2.0"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Sean St. Quentin"]
|
|
12
|
+
s.date = %q{2010-07-16}
|
|
13
|
+
s.description = %q{Vogue is a handy Rails gem which gives you more mechanisms for reducing your view and controller code as much as possible. It acheives this by encouraging providing additional helper methods in FormBuilder for working with related data, and providing template inheritance. }
|
|
14
|
+
s.email = %q{sean.stquentin@gmail.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.markdown"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
"README.markdown",
|
|
21
|
+
"Rakefile",
|
|
22
|
+
"VERSION",
|
|
23
|
+
"lib/vogue.rb",
|
|
24
|
+
"lib/vogue/dropdowns.rb",
|
|
25
|
+
"lib/vogue/form_builder.rb",
|
|
26
|
+
"lib/vogue/helpers.rb",
|
|
27
|
+
"lib/vogue/partial_locator.rb",
|
|
28
|
+
"lib/vogue/resource_controller_extensions.rb",
|
|
29
|
+
"lib/vogue/template_locator.rb",
|
|
30
|
+
"test/README",
|
|
31
|
+
"test/Rakefile",
|
|
32
|
+
"test/app/controllers/application_controller.rb",
|
|
33
|
+
"test/app/controllers/pants_controller.rb",
|
|
34
|
+
"test/app/controllers/posts_controller.rb",
|
|
35
|
+
"test/app/controllers/priorities_controller.rb",
|
|
36
|
+
"test/app/helpers/application_helper.rb",
|
|
37
|
+
"test/app/helpers/posts_helper.rb",
|
|
38
|
+
"test/app/helpers/priorities_helper.rb",
|
|
39
|
+
"test/app/models/post.rb",
|
|
40
|
+
"test/app/models/priority.rb",
|
|
41
|
+
"test/app/views/layouts/standard/_header.html.erb",
|
|
42
|
+
"test/app/views/layouts/standard/_specific.html.erb",
|
|
43
|
+
"test/app/views/layouts/standard/_sub_header.html.erb",
|
|
44
|
+
"test/app/views/layouts/standard/new.html.erb",
|
|
45
|
+
"test/app/views/posts/_form.html.erb",
|
|
46
|
+
"test/app/views/posts/_specific.html.erb",
|
|
47
|
+
"test/config/boot.rb",
|
|
48
|
+
"test/config/database.yml",
|
|
49
|
+
"test/config/environment.rb",
|
|
50
|
+
"test/config/environments/development.rb",
|
|
51
|
+
"test/config/environments/production.rb",
|
|
52
|
+
"test/config/environments/test.rb",
|
|
53
|
+
"test/config/initializers/backtrace_silencers.rb",
|
|
54
|
+
"test/config/initializers/inflections.rb",
|
|
55
|
+
"test/config/initializers/mime_types.rb",
|
|
56
|
+
"test/config/initializers/new_rails_defaults.rb",
|
|
57
|
+
"test/config/initializers/session_store.rb",
|
|
58
|
+
"test/config/locales/en.yml",
|
|
59
|
+
"test/config/routes.rb",
|
|
60
|
+
"test/db/development.sqlite3",
|
|
61
|
+
"test/db/migrate/20100330233049_create_posts.rb",
|
|
62
|
+
"test/db/migrate/20100330233402_create_priorities.rb",
|
|
63
|
+
"test/db/schema.rb",
|
|
64
|
+
"test/db/seeds.rb",
|
|
65
|
+
"test/db/test.sqlite3",
|
|
66
|
+
"test/lib/dropdowns.rb",
|
|
67
|
+
"test/log/development.log",
|
|
68
|
+
"test/log/production.log",
|
|
69
|
+
"test/log/server.log",
|
|
70
|
+
"test/log/test.log",
|
|
71
|
+
"test/public/404.html",
|
|
72
|
+
"test/public/422.html",
|
|
73
|
+
"test/public/500.html",
|
|
74
|
+
"test/public/favicon.ico",
|
|
75
|
+
"test/public/images/rails.png",
|
|
76
|
+
"test/public/index.html",
|
|
77
|
+
"test/public/javascripts/application.js",
|
|
78
|
+
"test/public/javascripts/controls.js",
|
|
79
|
+
"test/public/javascripts/dragdrop.js",
|
|
80
|
+
"test/public/javascripts/effects.js",
|
|
81
|
+
"test/public/javascripts/prototype.js",
|
|
82
|
+
"test/public/robots.txt",
|
|
83
|
+
"test/script/about",
|
|
84
|
+
"test/script/console",
|
|
85
|
+
"test/script/dbconsole",
|
|
86
|
+
"test/script/destroy",
|
|
87
|
+
"test/script/generate",
|
|
88
|
+
"test/script/performance/benchmarker",
|
|
89
|
+
"test/script/performance/profiler",
|
|
90
|
+
"test/script/plugin",
|
|
91
|
+
"test/script/runner",
|
|
92
|
+
"test/script/server",
|
|
93
|
+
"test/test/blueprint.rb",
|
|
94
|
+
"test/test/fixtures/posts.yml",
|
|
95
|
+
"test/test/fixtures/priorities.yml",
|
|
96
|
+
"test/test/functional/pants_controller_test.rb",
|
|
97
|
+
"test/test/functional/posts_controller_test.rb",
|
|
98
|
+
"test/test/functional/priorities_controller_test.rb",
|
|
99
|
+
"test/test/performance/browsing_test.rb",
|
|
100
|
+
"test/test/test_helper.rb",
|
|
101
|
+
"test/test/unit/helpers/posts_helper_test.rb",
|
|
102
|
+
"test/test/unit/helpers/priorities_helper_test.rb",
|
|
103
|
+
"test/test/unit/post_test.rb",
|
|
104
|
+
"test/test/unit/priority_test.rb",
|
|
105
|
+
"vogue.gemspec"
|
|
106
|
+
]
|
|
107
|
+
s.homepage = %q{http://github.com/elseano/vogue}
|
|
108
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
109
|
+
s.require_paths = ["lib"]
|
|
110
|
+
s.rubygems_version = %q{1.3.7}
|
|
111
|
+
s.summary = %q{Rails view inheritance, and handy form builder extensions.}
|
|
112
|
+
s.test_files = [
|
|
113
|
+
"test/app/controllers/application_controller.rb",
|
|
114
|
+
"test/app/controllers/pants_controller.rb",
|
|
115
|
+
"test/app/controllers/posts_controller.rb",
|
|
116
|
+
"test/app/controllers/priorities_controller.rb",
|
|
117
|
+
"test/app/helpers/application_helper.rb",
|
|
118
|
+
"test/app/helpers/posts_helper.rb",
|
|
119
|
+
"test/app/helpers/priorities_helper.rb",
|
|
120
|
+
"test/app/models/post.rb",
|
|
121
|
+
"test/app/models/priority.rb",
|
|
122
|
+
"test/config/boot.rb",
|
|
123
|
+
"test/config/environment.rb",
|
|
124
|
+
"test/config/environments/development.rb",
|
|
125
|
+
"test/config/environments/production.rb",
|
|
126
|
+
"test/config/environments/test.rb",
|
|
127
|
+
"test/config/initializers/backtrace_silencers.rb",
|
|
128
|
+
"test/config/initializers/inflections.rb",
|
|
129
|
+
"test/config/initializers/mime_types.rb",
|
|
130
|
+
"test/config/initializers/new_rails_defaults.rb",
|
|
131
|
+
"test/config/initializers/session_store.rb",
|
|
132
|
+
"test/config/routes.rb",
|
|
133
|
+
"test/db/migrate/20100330233049_create_posts.rb",
|
|
134
|
+
"test/db/migrate/20100330233402_create_priorities.rb",
|
|
135
|
+
"test/db/schema.rb",
|
|
136
|
+
"test/db/seeds.rb",
|
|
137
|
+
"test/lib/dropdowns.rb",
|
|
138
|
+
"test/test/blueprint.rb",
|
|
139
|
+
"test/test/functional/pants_controller_test.rb",
|
|
140
|
+
"test/test/functional/posts_controller_test.rb",
|
|
141
|
+
"test/test/functional/priorities_controller_test.rb",
|
|
142
|
+
"test/test/performance/browsing_test.rb",
|
|
143
|
+
"test/test/test_helper.rb",
|
|
144
|
+
"test/test/unit/helpers/posts_helper_test.rb",
|
|
145
|
+
"test/test/unit/helpers/priorities_helper_test.rb",
|
|
146
|
+
"test/test/unit/post_test.rb",
|
|
147
|
+
"test/test/unit/priority_test.rb"
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
if s.respond_to? :specification_version then
|
|
151
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
152
|
+
s.specification_version = 3
|
|
153
|
+
|
|
154
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
155
|
+
s.add_development_dependency(%q<machinist>, [">= 0"])
|
|
156
|
+
else
|
|
157
|
+
s.add_dependency(%q<machinist>, [">= 0"])
|
|
158
|
+
end
|
|
159
|
+
else
|
|
160
|
+
s.add_dependency(%q<machinist>, [">= 0"])
|
|
161
|
+
end
|
|
162
|
+
end
|
|
163
|
+
|
metadata
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: vogue
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 23
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 2
|
|
9
|
+
- 0
|
|
10
|
+
version: 0.2.0
|
|
11
|
+
platform: ruby
|
|
12
|
+
authors:
|
|
13
|
+
- Sean St. Quentin
|
|
14
|
+
autorequire:
|
|
15
|
+
bindir: bin
|
|
16
|
+
cert_chain: []
|
|
17
|
+
|
|
18
|
+
date: 2010-07-16 00:00:00 +10:00
|
|
19
|
+
default_executable:
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: machinist
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 3
|
|
30
|
+
segments:
|
|
31
|
+
- 0
|
|
32
|
+
version: "0"
|
|
33
|
+
type: :development
|
|
34
|
+
version_requirements: *id001
|
|
35
|
+
description: "Vogue is a handy Rails gem which gives you more mechanisms for reducing your view and controller code as much as possible. It acheives this by encouraging providing additional helper methods in FormBuilder for working with related data, and providing template inheritance. "
|
|
36
|
+
email: sean.stquentin@gmail.com
|
|
37
|
+
executables: []
|
|
38
|
+
|
|
39
|
+
extensions: []
|
|
40
|
+
|
|
41
|
+
extra_rdoc_files:
|
|
42
|
+
- LICENSE
|
|
43
|
+
- README.markdown
|
|
44
|
+
files:
|
|
45
|
+
- README.markdown
|
|
46
|
+
- Rakefile
|
|
47
|
+
- VERSION
|
|
48
|
+
- lib/vogue.rb
|
|
49
|
+
- lib/vogue/dropdowns.rb
|
|
50
|
+
- lib/vogue/form_builder.rb
|
|
51
|
+
- lib/vogue/helpers.rb
|
|
52
|
+
- lib/vogue/partial_locator.rb
|
|
53
|
+
- lib/vogue/resource_controller_extensions.rb
|
|
54
|
+
- lib/vogue/template_locator.rb
|
|
55
|
+
- test/README
|
|
56
|
+
- test/Rakefile
|
|
57
|
+
- test/app/controllers/application_controller.rb
|
|
58
|
+
- test/app/controllers/pants_controller.rb
|
|
59
|
+
- test/app/controllers/posts_controller.rb
|
|
60
|
+
- test/app/controllers/priorities_controller.rb
|
|
61
|
+
- test/app/helpers/application_helper.rb
|
|
62
|
+
- test/app/helpers/posts_helper.rb
|
|
63
|
+
- test/app/helpers/priorities_helper.rb
|
|
64
|
+
- test/app/models/post.rb
|
|
65
|
+
- test/app/models/priority.rb
|
|
66
|
+
- test/app/views/layouts/standard/_header.html.erb
|
|
67
|
+
- test/app/views/layouts/standard/_specific.html.erb
|
|
68
|
+
- test/app/views/layouts/standard/_sub_header.html.erb
|
|
69
|
+
- test/app/views/layouts/standard/new.html.erb
|
|
70
|
+
- test/app/views/posts/_form.html.erb
|
|
71
|
+
- test/app/views/posts/_specific.html.erb
|
|
72
|
+
- test/config/boot.rb
|
|
73
|
+
- test/config/database.yml
|
|
74
|
+
- test/config/environment.rb
|
|
75
|
+
- test/config/environments/development.rb
|
|
76
|
+
- test/config/environments/production.rb
|
|
77
|
+
- test/config/environments/test.rb
|
|
78
|
+
- test/config/initializers/backtrace_silencers.rb
|
|
79
|
+
- test/config/initializers/inflections.rb
|
|
80
|
+
- test/config/initializers/mime_types.rb
|
|
81
|
+
- test/config/initializers/new_rails_defaults.rb
|
|
82
|
+
- test/config/initializers/session_store.rb
|
|
83
|
+
- test/config/locales/en.yml
|
|
84
|
+
- test/config/routes.rb
|
|
85
|
+
- test/db/development.sqlite3
|
|
86
|
+
- test/db/migrate/20100330233049_create_posts.rb
|
|
87
|
+
- test/db/migrate/20100330233402_create_priorities.rb
|
|
88
|
+
- test/db/schema.rb
|
|
89
|
+
- test/db/seeds.rb
|
|
90
|
+
- test/db/test.sqlite3
|
|
91
|
+
- test/lib/dropdowns.rb
|
|
92
|
+
- test/log/development.log
|
|
93
|
+
- test/log/production.log
|
|
94
|
+
- test/log/server.log
|
|
95
|
+
- test/log/test.log
|
|
96
|
+
- test/public/404.html
|
|
97
|
+
- test/public/422.html
|
|
98
|
+
- test/public/500.html
|
|
99
|
+
- test/public/favicon.ico
|
|
100
|
+
- test/public/images/rails.png
|
|
101
|
+
- test/public/index.html
|
|
102
|
+
- test/public/javascripts/application.js
|
|
103
|
+
- test/public/javascripts/controls.js
|
|
104
|
+
- test/public/javascripts/dragdrop.js
|
|
105
|
+
- test/public/javascripts/effects.js
|
|
106
|
+
- test/public/javascripts/prototype.js
|
|
107
|
+
- test/public/robots.txt
|
|
108
|
+
- test/script/about
|
|
109
|
+
- test/script/console
|
|
110
|
+
- test/script/dbconsole
|
|
111
|
+
- test/script/destroy
|
|
112
|
+
- test/script/generate
|
|
113
|
+
- test/script/performance/benchmarker
|
|
114
|
+
- test/script/performance/profiler
|
|
115
|
+
- test/script/plugin
|
|
116
|
+
- test/script/runner
|
|
117
|
+
- test/script/server
|
|
118
|
+
- test/test/blueprint.rb
|
|
119
|
+
- test/test/fixtures/posts.yml
|
|
120
|
+
- test/test/fixtures/priorities.yml
|
|
121
|
+
- test/test/functional/pants_controller_test.rb
|
|
122
|
+
- test/test/functional/posts_controller_test.rb
|
|
123
|
+
- test/test/functional/priorities_controller_test.rb
|
|
124
|
+
- test/test/performance/browsing_test.rb
|
|
125
|
+
- test/test/test_helper.rb
|
|
126
|
+
- test/test/unit/helpers/posts_helper_test.rb
|
|
127
|
+
- test/test/unit/helpers/priorities_helper_test.rb
|
|
128
|
+
- test/test/unit/post_test.rb
|
|
129
|
+
- test/test/unit/priority_test.rb
|
|
130
|
+
- vogue.gemspec
|
|
131
|
+
- LICENSE
|
|
132
|
+
has_rdoc: true
|
|
133
|
+
homepage: http://github.com/elseano/vogue
|
|
134
|
+
licenses: []
|
|
135
|
+
|
|
136
|
+
post_install_message:
|
|
137
|
+
rdoc_options:
|
|
138
|
+
- --charset=UTF-8
|
|
139
|
+
require_paths:
|
|
140
|
+
- lib
|
|
141
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
142
|
+
none: false
|
|
143
|
+
requirements:
|
|
144
|
+
- - ">="
|
|
145
|
+
- !ruby/object:Gem::Version
|
|
146
|
+
hash: 3
|
|
147
|
+
segments:
|
|
148
|
+
- 0
|
|
149
|
+
version: "0"
|
|
150
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
151
|
+
none: false
|
|
152
|
+
requirements:
|
|
153
|
+
- - ">="
|
|
154
|
+
- !ruby/object:Gem::Version
|
|
155
|
+
hash: 3
|
|
156
|
+
segments:
|
|
157
|
+
- 0
|
|
158
|
+
version: "0"
|
|
159
|
+
requirements: []
|
|
160
|
+
|
|
161
|
+
rubyforge_project:
|
|
162
|
+
rubygems_version: 1.3.7
|
|
163
|
+
signing_key:
|
|
164
|
+
specification_version: 3
|
|
165
|
+
summary: Rails view inheritance, and handy form builder extensions.
|
|
166
|
+
test_files:
|
|
167
|
+
- test/app/controllers/application_controller.rb
|
|
168
|
+
- test/app/controllers/pants_controller.rb
|
|
169
|
+
- test/app/controllers/posts_controller.rb
|
|
170
|
+
- test/app/controllers/priorities_controller.rb
|
|
171
|
+
- test/app/helpers/application_helper.rb
|
|
172
|
+
- test/app/helpers/posts_helper.rb
|
|
173
|
+
- test/app/helpers/priorities_helper.rb
|
|
174
|
+
- test/app/models/post.rb
|
|
175
|
+
- test/app/models/priority.rb
|
|
176
|
+
- test/config/boot.rb
|
|
177
|
+
- test/config/environment.rb
|
|
178
|
+
- test/config/environments/development.rb
|
|
179
|
+
- test/config/environments/production.rb
|
|
180
|
+
- test/config/environments/test.rb
|
|
181
|
+
- test/config/initializers/backtrace_silencers.rb
|
|
182
|
+
- test/config/initializers/inflections.rb
|
|
183
|
+
- test/config/initializers/mime_types.rb
|
|
184
|
+
- test/config/initializers/new_rails_defaults.rb
|
|
185
|
+
- test/config/initializers/session_store.rb
|
|
186
|
+
- test/config/routes.rb
|
|
187
|
+
- test/db/migrate/20100330233049_create_posts.rb
|
|
188
|
+
- test/db/migrate/20100330233402_create_priorities.rb
|
|
189
|
+
- test/db/schema.rb
|
|
190
|
+
- test/db/seeds.rb
|
|
191
|
+
- test/lib/dropdowns.rb
|
|
192
|
+
- test/test/blueprint.rb
|
|
193
|
+
- test/test/functional/pants_controller_test.rb
|
|
194
|
+
- test/test/functional/posts_controller_test.rb
|
|
195
|
+
- test/test/functional/priorities_controller_test.rb
|
|
196
|
+
- test/test/performance/browsing_test.rb
|
|
197
|
+
- test/test/test_helper.rb
|
|
198
|
+
- test/test/unit/helpers/posts_helper_test.rb
|
|
199
|
+
- test/test/unit/helpers/priorities_helper_test.rb
|
|
200
|
+
- test/test/unit/post_test.rb
|
|
201
|
+
- test/test/unit/priority_test.rb
|