reflexive 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +16 -0
- data/Rakefile +31 -0
- data/config.ru +3 -0
- data/reflexive.gemspec +1 -1
- data/spec/coderay_html_encoder_spec.rb +57 -0
- data/spec/coderay_ruby_scanner_spec.rb +194 -0
- data/spec/io_interceptor.rb +64 -0
- data/spec/method_lookup_spec.rb +0 -0
- data/spec/methods_spec.rb +202 -0
- data/spec/rails_integration_spec.rb +139 -0
- data/spec/rails_integration_spec_helper.rb +115 -0
- data/spec/reflexive_ripper_spec.rb +351 -0
- data/spec/reflexive_spec.rb +98 -0
- data/spec/ripper_events_recorder.rb +50 -0
- data/spec/ripper_spec.rb +758 -0
- data/spec/sexp_builder_with_scanner_events.rb +39 -0
- data/spec/shell_out.rb +417 -0
- data/spec/spec_helper.rb +4 -0
- data/spec/test_apps/rails2_test_app/README +243 -0
- data/spec/test_apps/rails2_test_app/Rakefile +10 -0
- data/spec/test_apps/rails2_test_app/app/controllers/application_controller.rb +10 -0
- data/spec/test_apps/rails2_test_app/app/controllers/posts_controller.rb +85 -0
- data/spec/test_apps/rails2_test_app/app/helpers/application_helper.rb +3 -0
- data/spec/test_apps/rails2_test_app/app/helpers/posts_helper.rb +2 -0
- data/spec/test_apps/rails2_test_app/app/models/post.rb +5 -0
- data/spec/test_apps/rails2_test_app/app/views/layouts/posts.html.erb +17 -0
- data/spec/test_apps/rails2_test_app/app/views/posts/edit.html.erb +12 -0
- data/spec/test_apps/rails2_test_app/app/views/posts/index.html.erb +18 -0
- data/spec/test_apps/rails2_test_app/app/views/posts/new.html.erb +11 -0
- data/spec/test_apps/rails2_test_app/app/views/posts/show.html.erb +3 -0
- data/spec/test_apps/rails2_test_app/config/boot.rb +110 -0
- data/spec/test_apps/rails2_test_app/config/database.yml +22 -0
- data/spec/test_apps/rails2_test_app/config/environment.rb +43 -0
- data/spec/test_apps/rails2_test_app/config/environments/development.rb +17 -0
- data/spec/test_apps/rails2_test_app/config/environments/production.rb +28 -0
- data/spec/test_apps/rails2_test_app/config/environments/test.rb +28 -0
- data/spec/test_apps/rails2_test_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/test_apps/rails2_test_app/config/initializers/inflections.rb +10 -0
- data/spec/test_apps/rails2_test_app/config/initializers/mime_types.rb +5 -0
- data/spec/test_apps/rails2_test_app/config/initializers/new_rails_defaults.rb +21 -0
- data/spec/test_apps/rails2_test_app/config/initializers/session_store.rb +15 -0
- data/spec/test_apps/rails2_test_app/config/locales/en.yml +5 -0
- data/spec/test_apps/rails2_test_app/config/routes.rb +45 -0
- data/spec/test_apps/rails2_test_app/db/development.sqlite3 +0 -0
- data/spec/test_apps/rails2_test_app/db/migrate/20100512073155_create_posts.rb +12 -0
- data/spec/test_apps/rails2_test_app/db/schema.rb +19 -0
- data/spec/test_apps/rails2_test_app/db/seeds.rb +7 -0
- data/spec/test_apps/rails2_test_app/doc/README_FOR_APP +2 -0
- data/spec/test_apps/rails2_test_app/log/development.log +251 -0
- data/spec/test_apps/rails2_test_app/log/production.log +0 -0
- data/spec/test_apps/rails2_test_app/log/server.log +0 -0
- data/spec/test_apps/rails2_test_app/log/test.log +0 -0
- data/spec/test_apps/rails2_test_app/public/404.html +30 -0
- data/spec/test_apps/rails2_test_app/public/422.html +30 -0
- data/spec/test_apps/rails2_test_app/public/500.html +30 -0
- data/spec/test_apps/rails2_test_app/public/favicon.ico +0 -0
- data/spec/test_apps/rails2_test_app/public/images/rails.png +0 -0
- data/spec/test_apps/rails2_test_app/public/index.html +275 -0
- data/spec/test_apps/rails2_test_app/public/javascripts/application.js +2 -0
- data/spec/test_apps/rails2_test_app/public/javascripts/controls.js +963 -0
- data/spec/test_apps/rails2_test_app/public/javascripts/dragdrop.js +973 -0
- data/spec/test_apps/rails2_test_app/public/javascripts/effects.js +1128 -0
- data/spec/test_apps/rails2_test_app/public/javascripts/prototype.js +4320 -0
- data/spec/test_apps/rails2_test_app/public/robots.txt +5 -0
- data/spec/test_apps/rails2_test_app/public/stylesheets/1.css +0 -0
- data/spec/test_apps/rails2_test_app/public/stylesheets/scaffold.css +54 -0
- data/spec/test_apps/rails2_test_app/script/about +4 -0
- data/spec/test_apps/rails2_test_app/script/console +3 -0
- data/spec/test_apps/rails2_test_app/script/dbconsole +3 -0
- data/spec/test_apps/rails2_test_app/script/destroy +3 -0
- data/spec/test_apps/rails2_test_app/script/generate +3 -0
- data/spec/test_apps/rails2_test_app/script/performance/benchmarker +3 -0
- data/spec/test_apps/rails2_test_app/script/performance/profiler +3 -0
- data/spec/test_apps/rails2_test_app/script/plugin +3 -0
- data/spec/test_apps/rails2_test_app/script/runner +3 -0
- data/spec/test_apps/rails2_test_app/script/server +3 -0
- data/spec/test_apps/rails2_test_app/test/fixtures/posts.yml +7 -0
- data/spec/test_apps/rails2_test_app/test/functional/posts_controller_test.rb +45 -0
- data/spec/test_apps/rails2_test_app/test/performance/browsing_test.rb +9 -0
- data/spec/test_apps/rails2_test_app/test/test_helper.rb +38 -0
- data/spec/test_apps/rails2_test_app/test/unit/helpers/posts_helper_test.rb +4 -0
- data/spec/test_apps/rails2_test_app/test/unit/post_test.rb +8 -0
- data/spec/test_apps/rails3_test_app/Gemfile +28 -0
- data/spec/test_apps/rails3_test_app/README +244 -0
- data/spec/test_apps/rails3_test_app/Rakefile +10 -0
- data/spec/test_apps/rails3_test_app/app/controllers/application_controller.rb +4 -0
- data/spec/test_apps/rails3_test_app/app/controllers/posts_controller.rb +83 -0
- data/spec/test_apps/rails3_test_app/app/helpers/application_helper.rb +2 -0
- data/spec/test_apps/rails3_test_app/app/helpers/posts_helper.rb +2 -0
- data/spec/test_apps/rails3_test_app/app/models/post.rb +2 -0
- data/spec/test_apps/rails3_test_app/app/views/layouts/application.html.erb +14 -0
- data/spec/test_apps/rails3_test_app/app/views/posts/_form.html.erb +16 -0
- data/spec/test_apps/rails3_test_app/app/views/posts/edit.html.erb +6 -0
- data/spec/test_apps/rails3_test_app/app/views/posts/index.html.erb +21 -0
- data/spec/test_apps/rails3_test_app/app/views/posts/new.html.erb +5 -0
- data/spec/test_apps/rails3_test_app/app/views/posts/show.html.erb +5 -0
- data/spec/test_apps/rails3_test_app/config/application.rb +49 -0
- data/spec/test_apps/rails3_test_app/config/boot.rb +6 -0
- data/spec/test_apps/rails3_test_app/config/database.yml +22 -0
- data/spec/test_apps/rails3_test_app/config/environment.rb +5 -0
- data/spec/test_apps/rails3_test_app/config/environments/development.rb +19 -0
- data/spec/test_apps/rails3_test_app/config/environments/production.rb +42 -0
- data/spec/test_apps/rails3_test_app/config/environments/test.rb +32 -0
- data/spec/test_apps/rails3_test_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/test_apps/rails3_test_app/config/initializers/inflections.rb +10 -0
- data/spec/test_apps/rails3_test_app/config/initializers/mime_types.rb +5 -0
- data/spec/test_apps/rails3_test_app/config/initializers/secret_token.rb +7 -0
- data/spec/test_apps/rails3_test_app/config/initializers/session_store.rb +8 -0
- data/spec/test_apps/rails3_test_app/config/locales/en.yml +5 -0
- data/spec/test_apps/rails3_test_app/config/routes.rb +60 -0
- data/spec/test_apps/rails3_test_app/config.ru +4 -0
- data/spec/test_apps/rails3_test_app/db/development.sqlite3 +0 -0
- data/spec/test_apps/rails3_test_app/db/migrate/20100512075428_create_posts.rb +12 -0
- data/spec/test_apps/rails3_test_app/db/schema.rb +19 -0
- data/spec/test_apps/rails3_test_app/db/seeds.rb +7 -0
- data/spec/test_apps/rails3_test_app/doc/README_FOR_APP +2 -0
- data/spec/test_apps/rails3_test_app/log/development.log +349 -0
- data/spec/test_apps/rails3_test_app/log/production.log +0 -0
- data/spec/test_apps/rails3_test_app/log/server.log +0 -0
- data/spec/test_apps/rails3_test_app/log/test.log +0 -0
- data/spec/test_apps/rails3_test_app/public/404.html +26 -0
- data/spec/test_apps/rails3_test_app/public/422.html +26 -0
- data/spec/test_apps/rails3_test_app/public/500.html +26 -0
- data/spec/test_apps/rails3_test_app/public/favicon.ico +0 -0
- data/spec/test_apps/rails3_test_app/public/images/rails.png +0 -0
- data/spec/test_apps/rails3_test_app/public/index.html +279 -0
- data/spec/test_apps/rails3_test_app/public/javascripts/application.js +2 -0
- data/spec/test_apps/rails3_test_app/public/javascripts/controls.js +965 -0
- data/spec/test_apps/rails3_test_app/public/javascripts/dragdrop.js +974 -0
- data/spec/test_apps/rails3_test_app/public/javascripts/effects.js +1123 -0
- data/spec/test_apps/rails3_test_app/public/javascripts/prototype.js +4874 -0
- data/spec/test_apps/rails3_test_app/public/javascripts/rails.js +118 -0
- data/spec/test_apps/rails3_test_app/public/robots.txt +5 -0
- data/spec/test_apps/rails3_test_app/public/stylesheets/scaffold.css +60 -0
- data/spec/test_apps/rails3_test_app/script/rails +9 -0
- data/spec/test_apps/rails3_test_app/test/fixtures/posts.yml +11 -0
- data/spec/test_apps/rails3_test_app/test/functional/posts_controller_test.rb +49 -0
- data/spec/test_apps/rails3_test_app/test/performance/browsing_test.rb +9 -0
- data/spec/test_apps/rails3_test_app/test/test_helper.rb +13 -0
- data/spec/test_apps/rails3_test_app/test/unit/helpers/posts_helper_test.rb +4 -0
- data/spec/test_apps/rails3_test_app/test/unit/post_test.rb +8 -0
- metadata +142 -2
@@ -0,0 +1,118 @@
|
|
1
|
+
document.observe("dom:loaded", function() {
|
2
|
+
function handleRemote(element) {
|
3
|
+
var method, url, params;
|
4
|
+
|
5
|
+
if (element.tagName.toLowerCase() === 'form') {
|
6
|
+
method = element.readAttribute('method') || 'post';
|
7
|
+
url = element.readAttribute('action');
|
8
|
+
params = element.serialize(true);
|
9
|
+
} else {
|
10
|
+
method = element.readAttribute('data-method') || 'get';
|
11
|
+
url = element.readAttribute('href');
|
12
|
+
params = {};
|
13
|
+
}
|
14
|
+
|
15
|
+
var event = element.fire("ajax:before");
|
16
|
+
if (event.stopped) return false;
|
17
|
+
|
18
|
+
new Ajax.Request(url, {
|
19
|
+
method: method,
|
20
|
+
parameters: params,
|
21
|
+
asynchronous: true,
|
22
|
+
evalScripts: true,
|
23
|
+
|
24
|
+
onLoading: function(request) { element.fire("ajax:loading", {request: request}); },
|
25
|
+
onLoaded: function(request) { element.fire("ajax:loaded", {request: request}); },
|
26
|
+
onInteractive: function(request) { element.fire("ajax:interactive", {request: request}); },
|
27
|
+
onComplete: function(request) { element.fire("ajax:complete", {request: request}); },
|
28
|
+
onSuccess: function(request) { element.fire("ajax:success", {request: request}); },
|
29
|
+
onFailure: function(request) { element.fire("ajax:failure", {request: request}); }
|
30
|
+
});
|
31
|
+
|
32
|
+
element.fire("ajax:after");
|
33
|
+
}
|
34
|
+
|
35
|
+
function handleMethod(element) {
|
36
|
+
var method, url, token_name, token;
|
37
|
+
|
38
|
+
method = element.readAttribute('data-method');
|
39
|
+
url = element.readAttribute('href');
|
40
|
+
csrf_param = $$('meta[name=csrf-param]').first();
|
41
|
+
csrf_token = $$('meta[name=csrf-token]').first();
|
42
|
+
|
43
|
+
var form = new Element('form', { method: "POST", action: url, style: "display: none;" });
|
44
|
+
element.parentNode.appendChild(form);
|
45
|
+
|
46
|
+
if (method != 'post') {
|
47
|
+
var field = new Element('input', { type: 'hidden', name: '_method', value: method });
|
48
|
+
form.appendChild(field);
|
49
|
+
}
|
50
|
+
|
51
|
+
if (csrf_param) {
|
52
|
+
var param = csrf_param.readAttribute('content');
|
53
|
+
var token = csrf_token.readAttribute('content');
|
54
|
+
var field = new Element('input', { type: 'hidden', name: param, value: token });
|
55
|
+
form.appendChild(field);
|
56
|
+
}
|
57
|
+
|
58
|
+
form.submit();
|
59
|
+
}
|
60
|
+
|
61
|
+
$(document.body).observe("click", function(event) {
|
62
|
+
var message = event.findElement().readAttribute('data-confirm');
|
63
|
+
if (message && !confirm(message)) {
|
64
|
+
event.stop();
|
65
|
+
return false;
|
66
|
+
}
|
67
|
+
|
68
|
+
var element = event.findElement("a[data-remote]");
|
69
|
+
if (element) {
|
70
|
+
handleRemote(element);
|
71
|
+
event.stop();
|
72
|
+
return true;
|
73
|
+
}
|
74
|
+
|
75
|
+
var element = event.findElement("a[data-method]");
|
76
|
+
if (element) {
|
77
|
+
handleMethod(element);
|
78
|
+
event.stop();
|
79
|
+
return true;
|
80
|
+
}
|
81
|
+
});
|
82
|
+
|
83
|
+
// TODO: I don't think submit bubbles in IE
|
84
|
+
$(document.body).observe("submit", function(event) {
|
85
|
+
var element = event.findElement(),
|
86
|
+
message = element.readAttribute('data-confirm');
|
87
|
+
if (message && !confirm(message)) {
|
88
|
+
event.stop();
|
89
|
+
return false;
|
90
|
+
}
|
91
|
+
|
92
|
+
var inputs = element.select("input[type=submit][data-disable-with]");
|
93
|
+
inputs.each(function(input) {
|
94
|
+
input.disabled = true;
|
95
|
+
input.writeAttribute('data-original-value', input.value);
|
96
|
+
input.value = input.readAttribute('data-disable-with');
|
97
|
+
});
|
98
|
+
|
99
|
+
var element = event.findElement("form[data-remote]");
|
100
|
+
if (element) {
|
101
|
+
handleRemote(element);
|
102
|
+
event.stop();
|
103
|
+
}
|
104
|
+
});
|
105
|
+
|
106
|
+
$(document.body).observe("ajax:after", function(event) {
|
107
|
+
var element = event.findElement();
|
108
|
+
|
109
|
+
if (element.tagName.toLowerCase() === 'form') {
|
110
|
+
var inputs = element.select("input[type=submit][disabled=true][data-disable-with]");
|
111
|
+
inputs.each(function(input) {
|
112
|
+
input.value = input.readAttribute('data-original-value');
|
113
|
+
input.writeAttribute('data-original-value', null);
|
114
|
+
input.disabled = false;
|
115
|
+
});
|
116
|
+
}
|
117
|
+
});
|
118
|
+
});
|
@@ -0,0 +1,60 @@
|
|
1
|
+
body { background-color: #fff; color: #333; }
|
2
|
+
|
3
|
+
body, p, ol, ul, td {
|
4
|
+
font-family: verdana, arial, helvetica, sans-serif;
|
5
|
+
font-size: 13px;
|
6
|
+
line-height: 18px;
|
7
|
+
}
|
8
|
+
|
9
|
+
pre {
|
10
|
+
background-color: #eee;
|
11
|
+
padding: 10px;
|
12
|
+
font-size: 11px;
|
13
|
+
}
|
14
|
+
|
15
|
+
a { color: #000; }
|
16
|
+
a:visited { color: #666; }
|
17
|
+
a:hover { color: #fff; background-color:#000; }
|
18
|
+
|
19
|
+
div.field, div.actions {
|
20
|
+
margin-bottom: 10px;
|
21
|
+
}
|
22
|
+
|
23
|
+
.notice {
|
24
|
+
color: green;
|
25
|
+
}
|
26
|
+
|
27
|
+
.alert {
|
28
|
+
color: red;
|
29
|
+
}
|
30
|
+
|
31
|
+
.fieldWithErrors {
|
32
|
+
padding: 2px;
|
33
|
+
background-color: red;
|
34
|
+
display: table;
|
35
|
+
}
|
36
|
+
|
37
|
+
#errorExplanation {
|
38
|
+
width: 450px;
|
39
|
+
border: 2px solid red;
|
40
|
+
padding: 7px;
|
41
|
+
padding-bottom: 0;
|
42
|
+
margin-bottom: 20px;
|
43
|
+
background-color: #f0f0f0;
|
44
|
+
}
|
45
|
+
|
46
|
+
#errorExplanation h2 {
|
47
|
+
text-align: left;
|
48
|
+
font-weight: bold;
|
49
|
+
padding: 5px 5px 5px 15px;
|
50
|
+
font-size: 12px;
|
51
|
+
margin: -7px;
|
52
|
+
margin-bottom: 0px;
|
53
|
+
background-color: #c00;
|
54
|
+
color: #fff;
|
55
|
+
}
|
56
|
+
|
57
|
+
#errorExplanation ul li {
|
58
|
+
font-size: 12px;
|
59
|
+
list-style: square;
|
60
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
3
|
+
|
4
|
+
ENV_PATH = File.expand_path('../../config/environment', __FILE__)
|
5
|
+
BOOT_PATH = File.expand_path('../../config/boot', __FILE__)
|
6
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
7
|
+
|
8
|
+
require BOOT_PATH
|
9
|
+
require 'rails/commands'
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
|
2
|
+
|
3
|
+
# This model initially had no columns defined. If you add columns to the
|
4
|
+
# model remove the '{}' from the fixture names and add the columns immediately
|
5
|
+
# below each fixture, per the syntax in the comments below
|
6
|
+
#
|
7
|
+
one: {}
|
8
|
+
# column: value
|
9
|
+
#
|
10
|
+
two: {}
|
11
|
+
# column: value
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class PostsControllerTest < ActionController::TestCase
|
4
|
+
setup do
|
5
|
+
@post = posts(:one)
|
6
|
+
end
|
7
|
+
|
8
|
+
test "should get index" do
|
9
|
+
get :index
|
10
|
+
assert_response :success
|
11
|
+
assert_not_nil assigns(:posts)
|
12
|
+
end
|
13
|
+
|
14
|
+
test "should get new" do
|
15
|
+
get :new
|
16
|
+
assert_response :success
|
17
|
+
end
|
18
|
+
|
19
|
+
test "should create post" do
|
20
|
+
assert_difference('Post.count') do
|
21
|
+
post :create, :post => @post.attributes
|
22
|
+
end
|
23
|
+
|
24
|
+
assert_redirected_to post_path(assigns(:post))
|
25
|
+
end
|
26
|
+
|
27
|
+
test "should show post" do
|
28
|
+
get :show, :id => @post.to_param
|
29
|
+
assert_response :success
|
30
|
+
end
|
31
|
+
|
32
|
+
test "should get edit" do
|
33
|
+
get :edit, :id => @post.to_param
|
34
|
+
assert_response :success
|
35
|
+
end
|
36
|
+
|
37
|
+
test "should update post" do
|
38
|
+
put :update, :id => @post.to_param, :post => @post.attributes
|
39
|
+
assert_redirected_to post_path(assigns(:post))
|
40
|
+
end
|
41
|
+
|
42
|
+
test "should destroy post" do
|
43
|
+
assert_difference('Post.count', -1) do
|
44
|
+
delete :destroy, :id => @post.to_param
|
45
|
+
end
|
46
|
+
|
47
|
+
assert_redirected_to posts_path
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
2
|
+
require File.expand_path('../../config/environment', __FILE__)
|
3
|
+
require 'rails/test_help'
|
4
|
+
|
5
|
+
class ActiveSupport::TestCase
|
6
|
+
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
7
|
+
#
|
8
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
9
|
+
# -- they do not yet inherit this setting
|
10
|
+
fixtures :all
|
11
|
+
|
12
|
+
# Add more helper methods to be used by all tests here...
|
13
|
+
end
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 4
|
9
|
+
version: 0.0.4
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Evgeniy Dolzhenko
|
@@ -166,7 +166,147 @@ files:
|
|
166
166
|
- views/methods_apidock.erb
|
167
167
|
- views/methods_definition.erb
|
168
168
|
- views/methods_rubydoc.erb
|
169
|
+
- spec/coderay_html_encoder_spec.rb
|
170
|
+
- spec/coderay_ruby_scanner_spec.rb
|
171
|
+
- spec/io_interceptor.rb
|
172
|
+
- spec/methods_spec.rb
|
173
|
+
- spec/method_lookup_spec.rb
|
174
|
+
- spec/rails_integration_spec.rb
|
175
|
+
- spec/rails_integration_spec_helper.rb
|
176
|
+
- spec/reflexive_ripper_spec.rb
|
177
|
+
- spec/reflexive_spec.rb
|
178
|
+
- spec/ripper_events_recorder.rb
|
179
|
+
- spec/ripper_spec.rb
|
180
|
+
- spec/sexp_builder_with_scanner_events.rb
|
181
|
+
- spec/shell_out.rb
|
182
|
+
- spec/spec_helper.rb
|
183
|
+
- spec/test_apps/rails2_test_app/app/controllers/application_controller.rb
|
184
|
+
- spec/test_apps/rails2_test_app/app/controllers/posts_controller.rb
|
185
|
+
- spec/test_apps/rails2_test_app/app/helpers/application_helper.rb
|
186
|
+
- spec/test_apps/rails2_test_app/app/helpers/posts_helper.rb
|
187
|
+
- spec/test_apps/rails2_test_app/app/models/post.rb
|
188
|
+
- spec/test_apps/rails2_test_app/app/views/layouts/posts.html.erb
|
189
|
+
- spec/test_apps/rails2_test_app/app/views/posts/edit.html.erb
|
190
|
+
- spec/test_apps/rails2_test_app/app/views/posts/index.html.erb
|
191
|
+
- spec/test_apps/rails2_test_app/app/views/posts/new.html.erb
|
192
|
+
- spec/test_apps/rails2_test_app/app/views/posts/show.html.erb
|
193
|
+
- spec/test_apps/rails2_test_app/config/boot.rb
|
194
|
+
- spec/test_apps/rails2_test_app/config/database.yml
|
195
|
+
- spec/test_apps/rails2_test_app/config/environment.rb
|
196
|
+
- spec/test_apps/rails2_test_app/config/environments/development.rb
|
197
|
+
- spec/test_apps/rails2_test_app/config/environments/production.rb
|
198
|
+
- spec/test_apps/rails2_test_app/config/environments/test.rb
|
199
|
+
- spec/test_apps/rails2_test_app/config/initializers/backtrace_silencers.rb
|
200
|
+
- spec/test_apps/rails2_test_app/config/initializers/inflections.rb
|
201
|
+
- spec/test_apps/rails2_test_app/config/initializers/mime_types.rb
|
202
|
+
- spec/test_apps/rails2_test_app/config/initializers/new_rails_defaults.rb
|
203
|
+
- spec/test_apps/rails2_test_app/config/initializers/session_store.rb
|
204
|
+
- spec/test_apps/rails2_test_app/config/locales/en.yml
|
205
|
+
- spec/test_apps/rails2_test_app/config/routes.rb
|
206
|
+
- spec/test_apps/rails2_test_app/db/development.sqlite3
|
207
|
+
- spec/test_apps/rails2_test_app/db/migrate/20100512073155_create_posts.rb
|
208
|
+
- spec/test_apps/rails2_test_app/db/schema.rb
|
209
|
+
- spec/test_apps/rails2_test_app/db/seeds.rb
|
210
|
+
- spec/test_apps/rails2_test_app/doc/README_FOR_APP
|
211
|
+
- spec/test_apps/rails2_test_app/log/development.log
|
212
|
+
- spec/test_apps/rails2_test_app/log/production.log
|
213
|
+
- spec/test_apps/rails2_test_app/log/server.log
|
214
|
+
- spec/test_apps/rails2_test_app/log/test.log
|
215
|
+
- spec/test_apps/rails2_test_app/public/404.html
|
216
|
+
- spec/test_apps/rails2_test_app/public/422.html
|
217
|
+
- spec/test_apps/rails2_test_app/public/500.html
|
218
|
+
- spec/test_apps/rails2_test_app/public/favicon.ico
|
219
|
+
- spec/test_apps/rails2_test_app/public/images/rails.png
|
220
|
+
- spec/test_apps/rails2_test_app/public/index.html
|
221
|
+
- spec/test_apps/rails2_test_app/public/javascripts/application.js
|
222
|
+
- spec/test_apps/rails2_test_app/public/javascripts/controls.js
|
223
|
+
- spec/test_apps/rails2_test_app/public/javascripts/dragdrop.js
|
224
|
+
- spec/test_apps/rails2_test_app/public/javascripts/effects.js
|
225
|
+
- spec/test_apps/rails2_test_app/public/javascripts/prototype.js
|
226
|
+
- spec/test_apps/rails2_test_app/public/robots.txt
|
227
|
+
- spec/test_apps/rails2_test_app/public/stylesheets/1.css
|
228
|
+
- spec/test_apps/rails2_test_app/public/stylesheets/scaffold.css
|
229
|
+
- spec/test_apps/rails2_test_app/Rakefile
|
230
|
+
- spec/test_apps/rails2_test_app/README
|
231
|
+
- spec/test_apps/rails2_test_app/script/about
|
232
|
+
- spec/test_apps/rails2_test_app/script/console
|
233
|
+
- spec/test_apps/rails2_test_app/script/dbconsole
|
234
|
+
- spec/test_apps/rails2_test_app/script/destroy
|
235
|
+
- spec/test_apps/rails2_test_app/script/generate
|
236
|
+
- spec/test_apps/rails2_test_app/script/performance/benchmarker
|
237
|
+
- spec/test_apps/rails2_test_app/script/performance/profiler
|
238
|
+
- spec/test_apps/rails2_test_app/script/plugin
|
239
|
+
- spec/test_apps/rails2_test_app/script/runner
|
240
|
+
- spec/test_apps/rails2_test_app/script/server
|
241
|
+
- spec/test_apps/rails2_test_app/test/fixtures/posts.yml
|
242
|
+
- spec/test_apps/rails2_test_app/test/functional/posts_controller_test.rb
|
243
|
+
- spec/test_apps/rails2_test_app/test/performance/browsing_test.rb
|
244
|
+
- spec/test_apps/rails2_test_app/test/test_helper.rb
|
245
|
+
- spec/test_apps/rails2_test_app/test/unit/helpers/posts_helper_test.rb
|
246
|
+
- spec/test_apps/rails2_test_app/test/unit/post_test.rb
|
247
|
+
- spec/test_apps/rails3_test_app/app/controllers/application_controller.rb
|
248
|
+
- spec/test_apps/rails3_test_app/app/controllers/posts_controller.rb
|
249
|
+
- spec/test_apps/rails3_test_app/app/helpers/application_helper.rb
|
250
|
+
- spec/test_apps/rails3_test_app/app/helpers/posts_helper.rb
|
251
|
+
- spec/test_apps/rails3_test_app/app/models/post.rb
|
252
|
+
- spec/test_apps/rails3_test_app/app/views/layouts/application.html.erb
|
253
|
+
- spec/test_apps/rails3_test_app/app/views/posts/edit.html.erb
|
254
|
+
- spec/test_apps/rails3_test_app/app/views/posts/index.html.erb
|
255
|
+
- spec/test_apps/rails3_test_app/app/views/posts/new.html.erb
|
256
|
+
- spec/test_apps/rails3_test_app/app/views/posts/show.html.erb
|
257
|
+
- spec/test_apps/rails3_test_app/app/views/posts/_form.html.erb
|
258
|
+
- spec/test_apps/rails3_test_app/config/application.rb
|
259
|
+
- spec/test_apps/rails3_test_app/config/boot.rb
|
260
|
+
- spec/test_apps/rails3_test_app/config/database.yml
|
261
|
+
- spec/test_apps/rails3_test_app/config/environment.rb
|
262
|
+
- spec/test_apps/rails3_test_app/config/environments/development.rb
|
263
|
+
- spec/test_apps/rails3_test_app/config/environments/production.rb
|
264
|
+
- spec/test_apps/rails3_test_app/config/environments/test.rb
|
265
|
+
- spec/test_apps/rails3_test_app/config/initializers/backtrace_silencers.rb
|
266
|
+
- spec/test_apps/rails3_test_app/config/initializers/inflections.rb
|
267
|
+
- spec/test_apps/rails3_test_app/config/initializers/mime_types.rb
|
268
|
+
- spec/test_apps/rails3_test_app/config/initializers/secret_token.rb
|
269
|
+
- spec/test_apps/rails3_test_app/config/initializers/session_store.rb
|
270
|
+
- spec/test_apps/rails3_test_app/config/locales/en.yml
|
271
|
+
- spec/test_apps/rails3_test_app/config/routes.rb
|
272
|
+
- spec/test_apps/rails3_test_app/config.ru
|
273
|
+
- spec/test_apps/rails3_test_app/db/development.sqlite3
|
274
|
+
- spec/test_apps/rails3_test_app/db/migrate/20100512075428_create_posts.rb
|
275
|
+
- spec/test_apps/rails3_test_app/db/schema.rb
|
276
|
+
- spec/test_apps/rails3_test_app/db/seeds.rb
|
277
|
+
- spec/test_apps/rails3_test_app/doc/README_FOR_APP
|
278
|
+
- spec/test_apps/rails3_test_app/Gemfile
|
279
|
+
- spec/test_apps/rails3_test_app/log/development.log
|
280
|
+
- spec/test_apps/rails3_test_app/log/production.log
|
281
|
+
- spec/test_apps/rails3_test_app/log/server.log
|
282
|
+
- spec/test_apps/rails3_test_app/log/test.log
|
283
|
+
- spec/test_apps/rails3_test_app/public/404.html
|
284
|
+
- spec/test_apps/rails3_test_app/public/422.html
|
285
|
+
- spec/test_apps/rails3_test_app/public/500.html
|
286
|
+
- spec/test_apps/rails3_test_app/public/favicon.ico
|
287
|
+
- spec/test_apps/rails3_test_app/public/images/rails.png
|
288
|
+
- spec/test_apps/rails3_test_app/public/index.html
|
289
|
+
- spec/test_apps/rails3_test_app/public/javascripts/application.js
|
290
|
+
- spec/test_apps/rails3_test_app/public/javascripts/controls.js
|
291
|
+
- spec/test_apps/rails3_test_app/public/javascripts/dragdrop.js
|
292
|
+
- spec/test_apps/rails3_test_app/public/javascripts/effects.js
|
293
|
+
- spec/test_apps/rails3_test_app/public/javascripts/prototype.js
|
294
|
+
- spec/test_apps/rails3_test_app/public/javascripts/rails.js
|
295
|
+
- spec/test_apps/rails3_test_app/public/robots.txt
|
296
|
+
- spec/test_apps/rails3_test_app/public/stylesheets/scaffold.css
|
297
|
+
- spec/test_apps/rails3_test_app/Rakefile
|
298
|
+
- spec/test_apps/rails3_test_app/README
|
299
|
+
- spec/test_apps/rails3_test_app/script/rails
|
300
|
+
- spec/test_apps/rails3_test_app/test/fixtures/posts.yml
|
301
|
+
- spec/test_apps/rails3_test_app/test/functional/posts_controller_test.rb
|
302
|
+
- spec/test_apps/rails3_test_app/test/performance/browsing_test.rb
|
303
|
+
- spec/test_apps/rails3_test_app/test/test_helper.rb
|
304
|
+
- spec/test_apps/rails3_test_app/test/unit/helpers/posts_helper_test.rb
|
305
|
+
- spec/test_apps/rails3_test_app/test/unit/post_test.rb
|
169
306
|
- reflexive.gemspec
|
307
|
+
- Rakefile
|
308
|
+
- Gemfile
|
309
|
+
- config.ru
|
170
310
|
has_rdoc: true
|
171
311
|
homepage: http://github.com/dolzenko/reflexive
|
172
312
|
licenses: []
|