rails 2.3.11 → 2.3.12
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of rails might be problematic. Click here for more details.
- data/Rakefile +9 -11
- data/lib/rails/gem_dependency.rb +13 -16
- data/lib/rails/vendor_gem_source_index.rb +1 -1
- data/lib/rails/version.rb +1 -1
- data/lib/rails_generator/generators/components/plugin/templates/Rakefile +2 -2
- data/lib/tasks/documentation.rake +2 -2
- data/lib/tasks/framework.rake +1 -1
- data/tags +2260 -0
- metadata +22 -23
data/Rakefile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'rake'
|
2
2
|
require 'rake/testtask'
|
3
|
-
require '
|
4
|
-
require '
|
3
|
+
require 'rdoc/task'
|
4
|
+
require 'rubygems/package_task'
|
5
5
|
|
6
6
|
require 'date'
|
7
7
|
require 'rbconfig'
|
@@ -267,7 +267,7 @@ task :generate_app_doc do
|
|
267
267
|
system %{cd #{PKG_DESTINATION}; rake doc:app}
|
268
268
|
end
|
269
269
|
|
270
|
-
|
270
|
+
RDoc::Task.new { |rdoc|
|
271
271
|
rdoc.rdoc_dir = 'doc'
|
272
272
|
rdoc.title = "Railties -- Gluing the Engine to the Rails"
|
273
273
|
rdoc.options << '--line-numbers' << '--inline-source' << '--accessor' << 'cattr_accessor=object'
|
@@ -313,20 +313,18 @@ spec = Gem::Specification.new do |s|
|
|
313
313
|
EOF
|
314
314
|
|
315
315
|
s.add_dependency('rake', '>= 0.8.3')
|
316
|
-
s.add_dependency('activesupport', '= 2.3.
|
317
|
-
s.add_dependency('activerecord', '= 2.3.
|
318
|
-
s.add_dependency('actionpack', '= 2.3.
|
319
|
-
s.add_dependency('actionmailer', '= 2.3.
|
320
|
-
s.add_dependency('activeresource', '= 2.3.
|
316
|
+
s.add_dependency('activesupport', '= 2.3.12' + PKG_BUILD)
|
317
|
+
s.add_dependency('activerecord', '= 2.3.12' + PKG_BUILD)
|
318
|
+
s.add_dependency('actionpack', '= 2.3.12' + PKG_BUILD)
|
319
|
+
s.add_dependency('actionmailer', '= 2.3.12' + PKG_BUILD)
|
320
|
+
s.add_dependency('activeresource', '= 2.3.12' + PKG_BUILD)
|
321
321
|
|
322
322
|
s.rdoc_options << '--exclude' << '.'
|
323
|
-
s.has_rdoc = false
|
324
323
|
|
325
324
|
s.files = PKG_FILES
|
326
325
|
s.require_path = 'lib'
|
327
326
|
s.bindir = "bin" # Use these for applications.
|
328
327
|
s.executables = ["rails"]
|
329
|
-
s.default_executable = "rails"
|
330
328
|
|
331
329
|
s.author = "David Heinemeier Hansson"
|
332
330
|
s.email = "david@loudthinking.com"
|
@@ -334,7 +332,7 @@ spec = Gem::Specification.new do |s|
|
|
334
332
|
s.rubyforge_project = "rails"
|
335
333
|
end
|
336
334
|
|
337
|
-
|
335
|
+
Gem::PackageTask.new(spec) do |pkg|
|
338
336
|
pkg.gem_spec = spec
|
339
337
|
end
|
340
338
|
|
data/lib/rails/gem_dependency.rb
CHANGED
@@ -38,7 +38,7 @@ module Rails
|
|
38
38
|
result = self.new(name, :version => version)
|
39
39
|
spec_filename = File.join(directory_name, '.specification')
|
40
40
|
if load_spec
|
41
|
-
raise "Missing specification file in #{File.dirname(spec_filename)}. Perhaps you need to do a 'rake gems:refresh_specs'
|
41
|
+
raise "Missing specification file in #{File.dirname(spec_filename)}. Perhaps you need to do a 'rake gems:refresh_specs'\?" unless File.exists?(spec_filename)
|
42
42
|
spec = YAML::load_file(spec_filename)
|
43
43
|
result.specification = spec
|
44
44
|
end
|
@@ -72,7 +72,15 @@ module Rails
|
|
72
72
|
@load_paths_added = @loaded = @frozen = true
|
73
73
|
return
|
74
74
|
end
|
75
|
-
|
75
|
+
|
76
|
+
begin
|
77
|
+
dep = Gem::Dependency.new(name, requirement)
|
78
|
+
spec = Gem.source_index.find { |_,s| s.satisfies_requirement?(dep) }.last
|
79
|
+
spec.activate # a way that exists
|
80
|
+
rescue
|
81
|
+
gem self.name, self.requirement # < 1.8 unhappy way
|
82
|
+
end
|
83
|
+
|
76
84
|
@spec = Gem.loaded_specs[name]
|
77
85
|
@frozen = @spec.loaded_from.include?(self.class.unpacked_path) if @spec
|
78
86
|
@load_paths_added = true
|
@@ -117,18 +125,6 @@ module Rails
|
|
117
125
|
@spec = s
|
118
126
|
end
|
119
127
|
|
120
|
-
if method_defined?(:requirement)
|
121
|
-
def requirement
|
122
|
-
req = super
|
123
|
-
req unless req == Gem::Requirement.default
|
124
|
-
end
|
125
|
-
else
|
126
|
-
def requirement
|
127
|
-
req = version_requirements
|
128
|
-
req unless req == Gem::Requirement.default
|
129
|
-
end
|
130
|
-
end
|
131
|
-
|
132
128
|
def built?
|
133
129
|
return false unless frozen?
|
134
130
|
|
@@ -274,9 +270,10 @@ module Rails
|
|
274
270
|
end
|
275
271
|
|
276
272
|
def ==(other)
|
277
|
-
|
273
|
+
Gem::Dependency === other.class &&
|
274
|
+
self.name == other.name && self.requirement == other.requirement
|
278
275
|
end
|
279
|
-
alias_method :
|
276
|
+
alias_method :eql?, :"=="
|
280
277
|
|
281
278
|
private
|
282
279
|
|
@@ -31,7 +31,7 @@ module Rails
|
|
31
31
|
|
32
32
|
def refresh!
|
33
33
|
# reload the installed gems
|
34
|
-
@installed_source_index.refresh!
|
34
|
+
# HACK: I don't think this is needed: @installed_source_index.refresh!
|
35
35
|
vendor_gems = {}
|
36
36
|
|
37
37
|
# handle vendor Rails gems - they are identified by having loaded_from set to ""
|
data/lib/rails/version.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'rake'
|
2
2
|
require 'rake/testtask'
|
3
|
-
require '
|
3
|
+
require 'rdoc/task'
|
4
4
|
|
5
5
|
desc 'Default: run unit tests.'
|
6
6
|
task :default => :test
|
@@ -14,7 +14,7 @@ Rake::TestTask.new(:test) do |t|
|
|
14
14
|
end
|
15
15
|
|
16
16
|
desc 'Generate documentation for the <%= file_name %> plugin.'
|
17
|
-
|
17
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
18
18
|
rdoc.rdoc_dir = 'rdoc'
|
19
19
|
rdoc.title = '<%= class_name %>'
|
20
20
|
rdoc.options << '--line-numbers' << '--inline-source'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
namespace :doc do
|
2
2
|
desc "Generate documentation for the application. Set custom template with TEMPLATE=/path/to/rdoc/template.rb or title with TITLE=\"Custom Title\""
|
3
|
-
|
3
|
+
RDoc::Task.new("app") { |rdoc|
|
4
4
|
rdoc.rdoc_dir = 'doc/app'
|
5
5
|
rdoc.template = ENV['template'] if ENV['template']
|
6
6
|
rdoc.title = ENV['title'] || "Rails Application Documentation"
|
@@ -12,7 +12,7 @@ namespace :doc do
|
|
12
12
|
}
|
13
13
|
|
14
14
|
desc "Generate documentation for the Rails framework"
|
15
|
-
|
15
|
+
RDoc::Task.new("rails") { |rdoc|
|
16
16
|
rdoc.rdoc_dir = 'doc/api'
|
17
17
|
rdoc.template = "#{ENV['template']}.rb" if ENV['template']
|
18
18
|
rdoc.title = "Rails Framework Documentation"
|
data/lib/tasks/framework.rake
CHANGED
@@ -24,7 +24,7 @@ namespace :rails do
|
|
24
24
|
begin
|
25
25
|
chdir("vendor/rails") do
|
26
26
|
rails.dependencies.select { |g| deps.include? g.name }.each do |g|
|
27
|
-
Gem::GemRunner.new.run(["unpack", g.name, "--version", g.version_requirements.to_s])
|
27
|
+
Gem::GemRunner.new.run(["unpack", g.name, "--version", g.respond_to?(:requirement) ? g.requirement.to_s : g.version_requirements.to_s])
|
28
28
|
mv(Dir.glob("#{g.name}*").first, g.name)
|
29
29
|
end
|
30
30
|
|
data/tags
ADDED
@@ -0,0 +1,2260 @@
|
|
1
|
+
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
|
2
|
+
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
|
3
|
+
!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
|
4
|
+
!_TAG_PROGRAM_NAME Exuberant Ctags //
|
5
|
+
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
|
6
|
+
!_TAG_PROGRAM_VERSION 5.8 //
|
7
|
+
%name%.rb lib/rails/generators/rails/plugin_new/templates/lib/%name%.rb 1;" F
|
8
|
+
%name%_test.rb lib/rails/generators/rails/plugin_new/templates/test/%name%_test.rb 1;" F
|
9
|
+
+ lib/rails/initializable.rb /^ def +(other)$/;" f class:Rails.Initializable.Collection
|
10
|
+
404.html lib/rails/generators/rails/app/templates/public/404.html 1;" F
|
11
|
+
404.html tmp/app/public/404.html 1;" F
|
12
|
+
404.html tmp/app_template/public/404.html 1;" F
|
13
|
+
422.html lib/rails/generators/rails/app/templates/public/422.html 1;" F
|
14
|
+
422.html tmp/app/public/422.html 1;" F
|
15
|
+
422.html tmp/app_template/public/422.html 1;" F
|
16
|
+
500.html lib/rails/generators/rails/app/templates/public/500.html 1;" F
|
17
|
+
500.html tmp/app/public/500.html 1;" F
|
18
|
+
500.html tmp/app_template/public/500.html 1;" F
|
19
|
+
ActionController lib/rails/test_help.rb /^class ActionController::TestCase$/;" c
|
20
|
+
ActionController test/rails_info_controller_test.rb /^module ActionController$/;" m
|
21
|
+
ActionDispatch lib/rails/test_help.rb /^class ActionDispatch::IntegrationTest$/;" c
|
22
|
+
ActionMethods lib/rails/generators/rails/app/app_generator.rb /^ module ActionMethods$/;" m class:Rails
|
23
|
+
Actions lib/rails/generators/actions.rb /^ module Actions$/;" m class:Rails.Generators
|
24
|
+
ActionsTest test/generators/actions_test.rb /^class ActionsTest < Rails::Generators::TestCase$/;" c
|
25
|
+
ActiveModel lib/rails/generators/active_model.rb /^ class ActiveModel$/;" c class:Rails.Generators
|
26
|
+
ActiveRecord test/fixtures/lib/generators/active_record/fixjour_generator.rb /^module ActiveRecord$/;" m
|
27
|
+
ActiveRecord test/generators/named_base_test.rb /^module ActiveRecord$/;" m
|
28
|
+
ActiveSupport lib/rails/test_help.rb /^ class ActiveSupport::TestCase$/;" c
|
29
|
+
ActiveSupport tmp/app/test/test_helper.rb /^class ActiveSupport::TestCase$/;" c
|
30
|
+
ActiveSupport tmp/app_template/test/test_helper.rb /^class ActiveSupport::TestCase$/;" c
|
31
|
+
AddLastNameToUsers test/railties/shared_tests.rb /^ class AddLastNameToUsers < ActiveRecord::Migration$/;" c class:RailtiesTest.SharedTests.test_copying_migrations
|
32
|
+
Admin test/application/routing_test.rb /^ module Admin$/;" m
|
33
|
+
Admin test/railties/shared_tests.rb /^ class Admin::Foo::BarController < ApplicationController$/;" c class:RailtiesTest.test_namespaced_controllers_with_namespaced_routes
|
34
|
+
Ajax.InPlaceCollectionEditor.DefaultOptions.loadingCollectionText lib/rails/generators/rails/app/templates/public/javascripts/controls.js /^Ajax.InPlaceCollectionEditor.DefaultOptions = {$/;" p
|
35
|
+
Ajax.InPlaceCollectionEditor.DefaultOptions.loadingCollectionText tmp/app/public/javascripts/controls.js /^Ajax.InPlaceCollectionEditor.DefaultOptions = {$/;" p
|
36
|
+
Ajax.InPlaceCollectionEditor.DefaultOptions.loadingCollectionText tmp/app_template/public/javascripts/controls.js /^Ajax.InPlaceCollectionEditor.DefaultOptions = {$/;" p
|
37
|
+
Ajax.InPlaceEditor lib/rails/generators/rails/app/templates/public/javascripts/controls.js /^});$/;" c
|
38
|
+
Ajax.InPlaceEditor tmp/app/public/javascripts/controls.js /^});$/;" c
|
39
|
+
Ajax.InPlaceEditor tmp/app_template/public/javascripts/controls.js /^});$/;" c
|
40
|
+
Ajax.InPlaceEditor.initialize lib/rails/generators/rails/app/templates/public/javascripts/controls.js /^Ajax.InPlaceEditor.prototype.initialize.dealWithDeprecatedOptions = function(options) {$/;" m
|
41
|
+
Ajax.InPlaceEditor.initialize tmp/app/public/javascripts/controls.js /^Ajax.InPlaceEditor.prototype.initialize.dealWithDeprecatedOptions = function(options) {$/;" m
|
42
|
+
Ajax.InPlaceEditor.initialize tmp/app_template/public/javascripts/controls.js /^Ajax.InPlaceEditor.prototype.initialize.dealWithDeprecatedOptions = function(options) {$/;" m
|
43
|
+
Annotation lib/rails/source_annotation_extractor.rb /^ class Annotation < Struct.new(:line, :tag, :text)$/;" c class:SourceAnnotationExtractor
|
44
|
+
AppBase lib/rails/generators/app_base.rb /^ class AppBase < Base$/;" c class:Rails.Generators
|
45
|
+
AppBuilder lib/rails/generators/rails/app/app_generator.rb /^ class AppBuilder$/;" c class:Rails
|
46
|
+
AppBuilder test/fixtures/lib/app_builders/empty_builder.rb /^class AppBuilder$/;" c
|
47
|
+
AppBuilder test/fixtures/lib/app_builders/simple_builder.rb /^class AppBuilder$/;" c
|
48
|
+
AppBuilder test/fixtures/lib/app_builders/tweak_builder.rb /^class AppBuilder < Rails::AppBuilder$/;" c
|
49
|
+
AppGenerator lib/rails/generators/rails/app/app_generator.rb /^ class AppGenerator < AppBase$/;" c class:Generators
|
50
|
+
AppGeneratorTest test/generators/app_generator_test.rb /^class AppGeneratorTest < Rails::Generators::TestCase$/;" c
|
51
|
+
AppTemplate test/railties/engine_test.rb /^ module AppTemplate$/;" m
|
52
|
+
AppTemplate tmp/app/config/application.rb /^module AppTemplate$/;" m
|
53
|
+
AppTemplate tmp/app_template/config/application.rb /^module AppTemplate$/;" m
|
54
|
+
Application lib/rails/application.rb /^ class Application < Engine$/;" c class:Rails
|
55
|
+
Application lib/rails/application/bootstrap.rb /^ class Application$/;" c class:Rails
|
56
|
+
Application lib/rails/application/configuration.rb /^ class Application$/;" c class:Rails
|
57
|
+
Application lib/rails/application/finisher.rb /^ class Application$/;" c class:Rails
|
58
|
+
Application lib/rails/application/railties.rb /^ class Application < Engine$/;" c class:Rails
|
59
|
+
Application lib/rails/application/routes_reloader.rb /^ class Application$/;" c class:Rails
|
60
|
+
Application lib/rails/generators/rails/app/templates/config/application.rb /^ class Application < Rails::Application$/;" c
|
61
|
+
Application test/abstract_unit.rb /^ class Application < Rails::Application$/;" c class:TestApp
|
62
|
+
Application test/initializable_test.rb /^ class Application$/;" c
|
63
|
+
Application tmp/app/config/application.rb /^ class Application < Rails::Application$/;" c class:AppTemplate
|
64
|
+
Application tmp/app_template/config/application.rb /^ class Application < Rails::Application$/;" c class:AppTemplate
|
65
|
+
ApplicationController lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb /^class ApplicationController < ActionController::Base$/;" c
|
66
|
+
ApplicationController test/application/initializers/frameworks_test.rb /^ class ApplicationController < ActionController::Base$/;" c
|
67
|
+
ApplicationController tmp/app/app/controllers/application_controller.rb /^class ApplicationController < ActionController::Base$/;" c
|
68
|
+
ApplicationController tmp/app_template/app/controllers/application_controller.rb /^class ApplicationController < ActionController::Base$/;" c
|
69
|
+
ApplicationGeneratingController test/railties/mounted_engine_test.rb /^ class ApplicationGeneratingController < ActionController::Base$/;" c class:ApplicationTests.ApplicationRoutingTest
|
70
|
+
ApplicationHelper lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb /^module ApplicationHelper$/;" m
|
71
|
+
ApplicationHelper test/application/initializers/frameworks_test.rb /^ module ApplicationHelper$/;" m
|
72
|
+
ApplicationHelper tmp/app/app/helpers/application_helper.rb /^module ApplicationHelper$/;" m
|
73
|
+
ApplicationHelper tmp/app_template/app/helpers/application_helper.rb /^module ApplicationHelper$/;" m
|
74
|
+
ApplicationRoutingTest test/railties/mounted_engine_test.rb /^ class ApplicationRoutingTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
75
|
+
ApplicationTests test/application/configuration_test.rb /^module ApplicationTests$/;" m
|
76
|
+
ApplicationTests test/application/generators_test.rb /^module ApplicationTests$/;" m
|
77
|
+
ApplicationTests test/application/initializers/boot_test.rb /^module ApplicationTests$/;" m
|
78
|
+
ApplicationTests test/application/initializers/check_ruby_version_test.rb /^module ApplicationTests$/;" m
|
79
|
+
ApplicationTests test/application/initializers/frameworks_test.rb /^module ApplicationTests$/;" m
|
80
|
+
ApplicationTests test/application/initializers/hooks_test.rb /^module ApplicationTests$/;" m
|
81
|
+
ApplicationTests test/application/initializers/i18n_test.rb /^module ApplicationTests$/;" m
|
82
|
+
ApplicationTests test/application/initializers/load_path_test.rb /^module ApplicationTests$/;" m
|
83
|
+
ApplicationTests test/application/initializers/notifications_test.rb /^module ApplicationTests$/;" m
|
84
|
+
ApplicationTests test/application/middleware/best_practices_test.rb /^module ApplicationTests$/;" m
|
85
|
+
ApplicationTests test/application/middleware/cache_test.rb /^module ApplicationTests$/;" m
|
86
|
+
ApplicationTests test/application/middleware/remote_ip_test.rb /^module ApplicationTests$/;" m
|
87
|
+
ApplicationTests test/application/middleware/sendfile_test.rb /^module ApplicationTests$/;" m
|
88
|
+
ApplicationTests test/application/middleware_test.rb /^module ApplicationTests$/;" m
|
89
|
+
ApplicationTests test/application/paths_test.rb /^module ApplicationTests$/;" m
|
90
|
+
ApplicationTests test/application/rackup_test.rb /^module ApplicationTests$/;" m
|
91
|
+
ApplicationTests test/application/rake_test.rb /^module ApplicationTests$/;" m
|
92
|
+
ApplicationTests test/application/routing_test.rb /^module ApplicationTests$/;" m
|
93
|
+
ApplicationTests test/application/runner_test.rb /^module ApplicationTests$/;" m
|
94
|
+
ApplicationTests test/application/test_test.rb /^module ApplicationTests$/;" m
|
95
|
+
ApplicationTests test/application/url_generation_test.rb /^module ApplicationTests$/;" m
|
96
|
+
ApplicationTests test/railties/mounted_engine_test.rb /^module ApplicationTests$/;" m
|
97
|
+
Autocompleter.Base lib/rails/generators/rails/app/templates/public/javascripts/controls.js /^});$/;" c
|
98
|
+
Autocompleter.Base tmp/app/public/javascripts/controls.js /^});$/;" c
|
99
|
+
Autocompleter.Base tmp/app_template/public/javascripts/controls.js /^});$/;" c
|
100
|
+
Autocompleter.Base.getTokenBounds lib/rails/generators/rails/app/templates/public/javascripts/controls.js /^Autocompleter.Base.prototype.getTokenBounds.getFirstDifferencePos = function(newS, oldS) {$/;" m
|
101
|
+
Autocompleter.Base.getTokenBounds tmp/app/public/javascripts/controls.js /^Autocompleter.Base.prototype.getTokenBounds.getFirstDifferencePos = function(newS, oldS) {$/;" m
|
102
|
+
Autocompleter.Base.getTokenBounds tmp/app_template/public/javascripts/controls.js /^Autocompleter.Base.prototype.getTokenBounds.getFirstDifferencePos = function(newS, oldS) {$/;" m
|
103
|
+
BacktraceCleaner lib/rails/backtrace_cleaner.rb /^ class BacktraceCleaner < ActiveSupport::BacktraceCleaner$/;" c class:Rails
|
104
|
+
BacktraceCleanerFilterTest test/backtrace_cleaner_test.rb /^ class BacktraceCleanerFilterTest < ActiveSupport::TestCase$/;" c
|
105
|
+
BacktraceCleanerVendorGemTest test/backtrace_cleaner_test.rb /^ class BacktraceCleanerVendorGemTest < ActiveSupport::TestCase$/;" c
|
106
|
+
BacktraceFilterForTestUnit lib/rails/backtrace_cleaner.rb /^ module BacktraceFilterForTestUnit #:nodoc:$/;" m class:Rails
|
107
|
+
Bar test/initializable_test.rb /^ class Bar < Foo$/;" c class:InitializableTests
|
108
|
+
Bar test/railties/railtie_test.rb /^ class Bar < Foo; end$/;" c
|
109
|
+
BarController test/application/routing_test.rb /^ class BarController < ActionController::Base$/;" c
|
110
|
+
BarController test/railties/shared_tests.rb /^ class BarController < ActionController::Base$/;" c class:RailtiesTest.test_routes_in_plugins_have_lower_priority_than_application_ones
|
111
|
+
BarHelper test/application/initializers/frameworks_test.rb /^ module BarHelper$/;" m
|
112
|
+
BarHelper test/application/routing_test.rb /^ module BarHelper$/;" m
|
113
|
+
BarHelper test/railties/engine_test.rb /^ module BarHelper$/;" m
|
114
|
+
Base lib/rails/generators/base.rb /^ class Base < Thor::Group$/;" c class:Rails.Generators
|
115
|
+
Base lib/rails/generators/erb.rb /^ class Base < Rails::Generators::NamedBase #:nodoc:$/;" c class:Erb.Generators
|
116
|
+
Base lib/rails/generators/test_unit.rb /^ class Base < Rails::Generators::NamedBase #:nodoc:$/;" c class:TestUnit.Generators
|
117
|
+
Base test/generators/named_base_test.rb /^ class Base$/;" c class:ActiveRecord
|
118
|
+
Base test/rails_info_controller_test.rb /^ class Base$/;" c class:ActionController
|
119
|
+
Basic test/initializable_test.rb /^ class Basic < ActiveSupport::TestCase$/;" c
|
120
|
+
BeforeAfter test/initializable_test.rb /^ class BeforeAfter < ActiveSupport::TestCase$/;" c
|
121
|
+
BestPracticesTest test/application/middleware/best_practices_test.rb /^ class BestPracticesTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
122
|
+
Blog test/railties/mounted_engine_test.rb /^ module Blog$/;" m class:ApplicationTests.ApplicationRoutingTest
|
123
|
+
Bootstrap lib/rails/application/bootstrap.rb /^ module Bootstrap$/;" m class:Rails.Application
|
124
|
+
BrowsingTest lib/rails/generators/rails/app/templates/test/performance/browsing_test.rb /^class BrowsingTest < ActionDispatch::PerformanceTest$/;" c
|
125
|
+
BrowsingTest tmp/app/test/performance/browsing_test.rb /^class BrowsingTest < ActionDispatch::PerformanceTest$/;" c
|
126
|
+
BrowsingTest tmp/app_template/test/performance/browsing_test.rb /^class BrowsingTest < ActionDispatch::PerformanceTest$/;" c
|
127
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushAS3.js /^ function Brush()$/;" c
|
128
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushAppleScript.js /^ function Brush()$/;" c
|
129
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushBash.js /^ function Brush()$/;" c
|
130
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushCSharp.js /^ function Brush()$/;" c
|
131
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushColdFusion.js /^ function Brush()$/;" c
|
132
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushCpp.js /^ function Brush()$/;" c
|
133
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushCss.js /^ function Brush()$/;" c
|
134
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushDelphi.js /^ function Brush()$/;" c
|
135
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushDiff.js /^ function Brush()$/;" c
|
136
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushErlang.js /^ function Brush()$/;" c
|
137
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushGroovy.js /^ function Brush()$/;" c
|
138
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushJScript.js /^ function Brush()$/;" c
|
139
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushJava.js /^ function Brush()$/;" c
|
140
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushJavaFX.js /^ function Brush()$/;" c
|
141
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushPerl.js /^ function Brush()$/;" c
|
142
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushPhp.js /^ function Brush()$/;" c
|
143
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushPlain.js /^ function Brush()$/;" f
|
144
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushPlain.js /^ };$/;" c
|
145
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushPowerShell.js /^ function Brush()$/;" c
|
146
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushPython.js /^ function Brush()$/;" c
|
147
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushRuby.js /^ function Brush()$/;" c
|
148
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushSass.js /^ function Brush()$/;" c
|
149
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushScala.js /^ function Brush()$/;" c
|
150
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushSql.js /^ function Brush()$/;" c
|
151
|
+
Brush guides/assets/javascripts/syntaxhighlighter/shBrushXml.js /^ function Brush()$/;" c
|
152
|
+
Brush.fixComments guides/assets/javascripts/syntaxhighlighter/shBrushCSharp.js /^ function fixComments(match, regexInfo)$/;" f
|
153
|
+
Brush.getKeywordsCSS guides/assets/javascripts/syntaxhighlighter/shBrushCss.js /^ function getKeywordsCSS(str)$/;" f
|
154
|
+
Brush.getKeywordsCSS guides/assets/javascripts/syntaxhighlighter/shBrushSass.js /^ function getKeywordsCSS(str)$/;" f
|
155
|
+
Brush.getValuesCSS guides/assets/javascripts/syntaxhighlighter/shBrushCss.js /^ function getValuesCSS(str)$/;" f
|
156
|
+
Brush.getValuesCSS guides/assets/javascripts/syntaxhighlighter/shBrushSass.js /^ function getValuesCSS(str)$/;" f
|
157
|
+
Brush.process guides/assets/javascripts/syntaxhighlighter/shBrushXml.js /^ function process(match, regexInfo)$/;" f
|
158
|
+
Bukkit test/isolation/abstract_unit.rb /^ class Bukkit$/;" c
|
159
|
+
BukkitController test/railties/shared_tests.rb /^ class BukkitController < ActionController::Base$/;" c class:RailtiesTest.test_adds_helpers_to_controller_views
|
160
|
+
BukkitController test/railties/shared_tests.rb /^ class BukkitController < ActionController::Base$/;" c class:RailtiesTest.test_adds_its_views_to_view_paths
|
161
|
+
BukkitController test/railties/shared_tests.rb /^ class BukkitController < ActionController::Base$/;" c class:RailtiesTest.test_adds_its_views_to_view_paths_with_lower_proriority_than_app_ones
|
162
|
+
BukkitHelper test/railties/shared_tests.rb /^ module BukkitHelper$/;" m class:RailtiesTest.test_adds_helpers_to_controller_views
|
163
|
+
Bukkits test/railties/engine_test.rb /^ class Bukkits$/;" c class:RailtiesTest.EngineTest.setup
|
164
|
+
Bukkits test/railties/engine_test.rb /^ class Bukkits$/;" c
|
165
|
+
Bukkits test/railties/engine_test.rb /^ class Bukkits::FooController < ActionController::Base$/;" c
|
166
|
+
Bukkits test/railties/engine_test.rb /^ class Bukkits::PostsController < ActionController::Base$/;" c
|
167
|
+
Bukkits test/railties/engine_test.rb /^ module Bukkits$/;" m
|
168
|
+
Bukkits test/railties/plugin_test.rb /^ class Bukkits$/;" c
|
169
|
+
Bukkits test/railties/shared_tests.rb /^ class Bukkits$/;" c class:RailtiesTest.test_midleware_referenced_in_configuration
|
170
|
+
CheckRubyVersionTest test/application/initializers/check_ruby_version_test.rb /^ class CheckRubyVersionTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
171
|
+
Child test/initializable_test.rb /^ class Child < Parent$/;" c class:InitializableTests
|
172
|
+
ClassMethods lib/rails/generators/migration.rb /^ module ClassMethods$/;" m class:Rails.Generators.Migration
|
173
|
+
ClassMethods lib/rails/initializable.rb /^ module ClassMethods$/;" m class:Rails.Initializable
|
174
|
+
ClassMethods lib/rails/railtie/configurable.rb /^ module ClassMethods$/;" m class:Rails.Railtie.Configurable
|
175
|
+
CodeStatistics lib/rails/code_statistics.rb /^class CodeStatistics #:nodoc:$/;" c
|
176
|
+
Collection lib/rails/initializable.rb /^ class Collection < Array$/;" c class:Rails.Initializable
|
177
|
+
Commands lib/rails/commands/plugin.rb /^module Commands$/;" m
|
178
|
+
Configurable lib/rails/railtie/configurable.rb /^ module Configurable$/;" m class:Rails.Railtie
|
179
|
+
Configuration lib/rails/application/configuration.rb /^ class Configuration < ::Rails::Engine::Configuration$/;" c class:Rails.Application
|
180
|
+
Configuration lib/rails/configuration.rb /^ module Configuration$/;" m class:Rails
|
181
|
+
Configuration lib/rails/engine/configuration.rb /^ class Configuration < ::Rails::Railtie::Configuration$/;" c class:Rails.Engine
|
182
|
+
Configuration lib/rails/railtie/configuration.rb /^ class Configuration$/;" c class:Rails.Railtie
|
183
|
+
ConfigurationTest test/application/configuration_test.rb /^ class ConfigurationTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
184
|
+
Console lib/rails/commands/console.rb /^ class Console$/;" c class:Rails
|
185
|
+
ConsoleTest test/application/console_test.rb /^class ConsoleTest < Test::Unit::TestCase$/;" c
|
186
|
+
ControllerGenerator lib/rails/generators/erb/controller/controller_generator.rb /^ class ControllerGenerator < Base$/;" c class:Erb.Generators
|
187
|
+
ControllerGenerator lib/rails/generators/rails/controller/controller_generator.rb /^ class ControllerGenerator < NamedBase$/;" c class:Rails.Generators
|
188
|
+
ControllerGenerator lib/rails/generators/test_unit/controller/controller_generator.rb /^ class ControllerGenerator < Base$/;" c class:TestUnit.Generators
|
189
|
+
ControllerGeneratorTest test/generators/controller_generator_test.rb /^class ControllerGeneratorTest < Rails::Generators::TestCase$/;" c
|
190
|
+
CreateSessions test/railties/shared_tests.rb /^ class CreateSessions < ActiveRecord::Migration$/;" c class:RailtiesTest.SharedTests.test_copying_migrations
|
191
|
+
CreateSessions test/railties/shared_tests.rb /^ class CreateSessions < ActiveRecord::Migration$/;" c class:RailtiesTest.SharedTests.test_install_migrations_and_assets
|
192
|
+
CreateUsers test/railties/shared_tests.rb /^ class CreateUsers < ActiveRecord::Migration$/;" c class:RailtiesTest.SharedTests.test_copying_migrations
|
193
|
+
CreateUsers test/railties/shared_tests.rb /^ class CreateUsers < ActiveRecord::Migration$/;" c class:RailtiesTest.SharedTests.test_install_migrations_and_assets
|
194
|
+
CreateYaffles test/railties/shared_tests.rb /^ class CreateYaffles < ActiveRecord::Migration$/;" c class:RailtiesTest.SharedTests
|
195
|
+
CustomAppGeneratorTest test/generators/app_generator_test.rb /^class CustomAppGeneratorTest < Rails::Generators::TestCase$/;" c
|
196
|
+
CustomPluginGeneratorTest test/generators/plugin_new_generator_test.rb /^class CustomPluginGeneratorTest < Rails::Generators::TestCase$/;" c
|
197
|
+
DBConsole lib/rails/commands/dbconsole.rb /^ class DBConsole$/;" c class:Rails
|
198
|
+
Debugger lib/rails/rack/debugger.rb /^ class Debugger$/;" c class:Rails.Rack
|
199
|
+
Draggable lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^var Draggable = Class.create({$/;" v
|
200
|
+
Draggable tmp/app/public/javascripts/dragdrop.js /^var Draggable = Class.create({$/;" v
|
201
|
+
Draggable tmp/app_template/public/javascripts/dragdrop.js /^var Draggable = Class.create({$/;" v
|
202
|
+
Draggables.drags lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^var Draggables = {$/;" p
|
203
|
+
Draggables.drags tmp/app/public/javascripts/dragdrop.js /^var Draggables = {$/;" p
|
204
|
+
Draggables.drags tmp/app_template/public/javascripts/dragdrop.js /^var Draggables = {$/;" p
|
205
|
+
Droppables.drops lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^var Droppables = {$/;" p
|
206
|
+
Droppables.drops tmp/app/public/javascripts/dragdrop.js /^var Droppables = {$/;" p
|
207
|
+
Droppables.drops tmp/app_template/public/javascripts/dragdrop.js /^var Droppables = {$/;" p
|
208
|
+
Effect.Appear lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
209
|
+
Effect.Appear tmp/app/public/javascripts/effects.js /^};$/;" f
|
210
|
+
Effect.Appear tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
211
|
+
Effect.BlindDown lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
212
|
+
Effect.BlindDown tmp/app/public/javascripts/effects.js /^};$/;" f
|
213
|
+
Effect.BlindDown tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
214
|
+
Effect.BlindUp lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
215
|
+
Effect.BlindUp tmp/app/public/javascripts/effects.js /^};$/;" f
|
216
|
+
Effect.BlindUp tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
217
|
+
Effect.DropOut lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
218
|
+
Effect.DropOut tmp/app/public/javascripts/effects.js /^};$/;" f
|
219
|
+
Effect.DropOut tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
220
|
+
Effect.DropOut.oldStyle.top lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
221
|
+
Effect.DropOut.oldStyle.top tmp/app/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
222
|
+
Effect.DropOut.oldStyle.top tmp/app_template/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
223
|
+
Effect.Fade lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
224
|
+
Effect.Fade tmp/app/public/javascripts/effects.js /^};$/;" f
|
225
|
+
Effect.Fade tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
226
|
+
Effect.Fold lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
227
|
+
Effect.Fold tmp/app/public/javascripts/effects.js /^};$/;" f
|
228
|
+
Effect.Fold tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
229
|
+
Effect.Fold.oldStyle.top lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
230
|
+
Effect.Fold.oldStyle.top tmp/app/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
231
|
+
Effect.Fold.oldStyle.top tmp/app_template/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
232
|
+
Effect.Grow lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
233
|
+
Effect.Grow tmp/app/public/javascripts/effects.js /^};$/;" f
|
234
|
+
Effect.Grow tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
235
|
+
Effect.Grow.oldStyle.top lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
236
|
+
Effect.Grow.oldStyle.top tmp/app/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
237
|
+
Effect.Grow.oldStyle.top tmp/app_template/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
238
|
+
Effect.Methods.highlight lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ },$/;" m
|
239
|
+
Effect.Methods.highlight tmp/app/public/javascripts/effects.js /^ },$/;" m
|
240
|
+
Effect.Methods.highlight tmp/app_template/public/javascripts/effects.js /^ },$/;" m
|
241
|
+
Effect.Methods.morph lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^Effect.Methods = {$/;" m
|
242
|
+
Effect.Methods.morph tmp/app/public/javascripts/effects.js /^Effect.Methods = {$/;" m
|
243
|
+
Effect.Methods.morph tmp/app_template/public/javascripts/effects.js /^Effect.Methods = {$/;" m
|
244
|
+
Effect.Methods.visualEffect lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ },$/;" m
|
245
|
+
Effect.Methods.visualEffect tmp/app/public/javascripts/effects.js /^ },$/;" m
|
246
|
+
Effect.Methods.visualEffect tmp/app_template/public/javascripts/effects.js /^ },$/;" m
|
247
|
+
Effect.MoveBy lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^});$/;" f
|
248
|
+
Effect.MoveBy tmp/app/public/javascripts/effects.js /^});$/;" f
|
249
|
+
Effect.MoveBy tmp/app_template/public/javascripts/effects.js /^});$/;" f
|
250
|
+
Effect.Puff lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
251
|
+
Effect.Puff tmp/app/public/javascripts/effects.js /^};$/;" f
|
252
|
+
Effect.Puff tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
253
|
+
Effect.Puff.oldStyle.opacity lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
254
|
+
Effect.Puff.oldStyle.opacity tmp/app/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
255
|
+
Effect.Puff.oldStyle.opacity tmp/app_template/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
256
|
+
Effect.Pulsate lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
257
|
+
Effect.Pulsate tmp/app/public/javascripts/effects.js /^};$/;" f
|
258
|
+
Effect.Pulsate tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
259
|
+
Effect.Queues.instances lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^Effect.Queues = {$/;" p
|
260
|
+
Effect.Queues.instances tmp/app/public/javascripts/effects.js /^Effect.Queues = {$/;" p
|
261
|
+
Effect.Queues.instances tmp/app_template/public/javascripts/effects.js /^Effect.Queues = {$/;" p
|
262
|
+
Effect.ScrollTo lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^});$/;" f
|
263
|
+
Effect.ScrollTo tmp/app/public/javascripts/effects.js /^});$/;" f
|
264
|
+
Effect.ScrollTo tmp/app_template/public/javascripts/effects.js /^});$/;" f
|
265
|
+
Effect.Shake lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
266
|
+
Effect.Shake tmp/app/public/javascripts/effects.js /^};$/;" f
|
267
|
+
Effect.Shake tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
268
|
+
Effect.Shake.oldStyle.top lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
269
|
+
Effect.Shake.oldStyle.top tmp/app/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
270
|
+
Effect.Shake.oldStyle.top tmp/app_template/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
271
|
+
Effect.Shrink lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
272
|
+
Effect.Shrink tmp/app/public/javascripts/effects.js /^};$/;" f
|
273
|
+
Effect.Shrink tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
274
|
+
Effect.Shrink.oldStyle.top lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
275
|
+
Effect.Shrink.oldStyle.top tmp/app/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
276
|
+
Effect.Shrink.oldStyle.top tmp/app_template/public/javascripts/effects.js /^ var oldStyle = {$/;" p
|
277
|
+
Effect.SlideDown lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
278
|
+
Effect.SlideDown tmp/app/public/javascripts/effects.js /^};$/;" f
|
279
|
+
Effect.SlideDown tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
280
|
+
Effect.SlideUp lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
281
|
+
Effect.SlideUp tmp/app/public/javascripts/effects.js /^};$/;" f
|
282
|
+
Effect.SlideUp tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
283
|
+
Effect.Squish lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
284
|
+
Effect.Squish tmp/app/public/javascripts/effects.js /^};$/;" f
|
285
|
+
Effect.Squish tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
286
|
+
Effect.SwitchOff lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
287
|
+
Effect.SwitchOff tmp/app/public/javascripts/effects.js /^};$/;" f
|
288
|
+
Effect.SwitchOff tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
289
|
+
Element.collectTextNodes lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
290
|
+
Element.collectTextNodes tmp/app/public/javascripts/effects.js /^};$/;" f
|
291
|
+
Element.collectTextNodes tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
292
|
+
Element.collectTextNodesIgnoreClass lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
293
|
+
Element.collectTextNodesIgnoreClass tmp/app/public/javascripts/effects.js /^};$/;" f
|
294
|
+
Element.collectTextNodesIgnoreClass tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
295
|
+
Element.findChildren lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^};$/;" f
|
296
|
+
Element.findChildren tmp/app/public/javascripts/dragdrop.js /^};$/;" f
|
297
|
+
Element.findChildren tmp/app_template/public/javascripts/dragdrop.js /^};$/;" f
|
298
|
+
Element.forceRerendering lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
299
|
+
Element.forceRerendering tmp/app/public/javascripts/effects.js /^};$/;" f
|
300
|
+
Element.forceRerendering tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
301
|
+
Element.getInlineOpacity lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
302
|
+
Element.getInlineOpacity tmp/app/public/javascripts/effects.js /^};$/;" f
|
303
|
+
Element.getInlineOpacity tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
304
|
+
Element.getStyles lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^if (document.defaultView && document.defaultView.getComputedStyle) {$/;" f
|
305
|
+
Element.getStyles tmp/app/public/javascripts/effects.js /^if (document.defaultView && document.defaultView.getComputedStyle) {$/;" f
|
306
|
+
Element.getStyles tmp/app_template/public/javascripts/effects.js /^if (document.defaultView && document.defaultView.getComputedStyle) {$/;" f
|
307
|
+
Element.isParent lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^};$/;" f
|
308
|
+
Element.isParent tmp/app/public/javascripts/dragdrop.js /^};$/;" f
|
309
|
+
Element.isParent tmp/app_template/public/javascripts/dragdrop.js /^};$/;" f
|
310
|
+
Element.offsetSize lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^};$/;" f
|
311
|
+
Element.offsetSize tmp/app/public/javascripts/dragdrop.js /^};$/;" f
|
312
|
+
Element.offsetSize tmp/app_template/public/javascripts/dragdrop.js /^};$/;" f
|
313
|
+
Element.setContentZoom lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f
|
314
|
+
Element.setContentZoom tmp/app/public/javascripts/effects.js /^};$/;" f
|
315
|
+
Element.setContentZoom tmp/app_template/public/javascripts/effects.js /^};$/;" f
|
316
|
+
Engine lib/rails/engine.rb /^ class Engine < Railtie$/;" c class:Rails
|
317
|
+
Engine lib/rails/engine/configuration.rb /^ class Engine$/;" c class:Rails
|
318
|
+
Engine lib/rails/engine/railties.rb /^ class Engine < Railtie$/;" c class:Rails
|
319
|
+
Engine lib/rails/generators/rails/plugin_new/templates/lib/%name%/engine.rb /^ class Engine < Rails::Engine$/;" c
|
320
|
+
Engine test/railties/engine_test.rb /^ class Engine < ::Rails::Engine$/;" c class:RailtiesTest.EngineTest.setup.Bukkits
|
321
|
+
Engine test/railties/engine_test.rb /^ class Engine < ::Rails::Engine$/;" c class:AppTemplate
|
322
|
+
Engine test/railties/engine_test.rb /^ class Engine < ::Rails::Engine$/;" c class:Bukkits
|
323
|
+
Engine test/railties/mounted_engine_test.rb /^ class Engine < ::Rails::Engine$/;" c class:ApplicationTests.ApplicationRoutingTest.Blog
|
324
|
+
Engine test/railties/plugin_test.rb /^ class Engine < Rails::Engine$/;" c class:Bukkits
|
325
|
+
EngineHelper test/railties/engine_test.rb /^ module EngineHelper$/;" m
|
326
|
+
EngineTest test/railties/engine_test.rb /^ class EngineTest < Test::Unit::TestCase$/;" c class:RailtiesTest
|
327
|
+
Erb lib/rails/generators/erb.rb /^module Erb$/;" m
|
328
|
+
Erb lib/rails/generators/erb/controller/controller_generator.rb /^module Erb$/;" m
|
329
|
+
Erb lib/rails/generators/erb/mailer/mailer_generator.rb /^module Erb$/;" m
|
330
|
+
Erb lib/rails/generators/erb/scaffold/scaffold_generator.rb /^module Erb$/;" m
|
331
|
+
Error lib/rails/generators/base.rb /^ class Error < Thor::Error$/;" c class:Rails.Generators
|
332
|
+
Event.Handler lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ if (!submitBubbles || !changeBubbles) {$/;" c
|
333
|
+
Event.Handler tmp/app/public/javascripts/rails.js /^ if (!submitBubbles || !changeBubbles) {$/;" c
|
334
|
+
Event.Handler tmp/app_template/public/javascripts/rails.js /^ if (!submitBubbles || !changeBubbles) {$/;" c
|
335
|
+
Event.Handler.initialize lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap($/;" m
|
336
|
+
Event.Handler.initialize tmp/app/public/javascripts/rails.js /^ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap($/;" m
|
337
|
+
Event.Handler.initialize tmp/app_template/public/javascripts/rails.js /^ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap($/;" m
|
338
|
+
ExpiresController test/application/middleware/cache_test.rb /^ class ExpiresController < ApplicationController$/;" c class:ApplicationTests.RoutingTest.simple_controller
|
339
|
+
Field.scrollFreeActivate lib/rails/generators/rails/app/templates/public/javascripts/controls.js /^});$/;" f
|
340
|
+
Field.scrollFreeActivate tmp/app/public/javascripts/controls.js /^});$/;" f
|
341
|
+
Field.scrollFreeActivate tmp/app_template/public/javascripts/controls.js /^});$/;" f
|
342
|
+
Finisher lib/rails/application/finisher.rb /^ module Finisher$/;" m class:Rails.Application
|
343
|
+
FixjourGenerator test/fixtures/lib/generators/active_record/fixjour_generator.rb /^ class FixjourGenerator < Base$/;" c class:ActiveRecord.Generators
|
344
|
+
FixjourGenerator test/fixtures/lib/generators/fixjour_generator.rb /^class FixjourGenerator < Rails::Generators::NamedBase$/;" c
|
345
|
+
Foo test/application/initializers/frameworks_test.rb /^ class Foo < ActionMailer::Base$/;" c
|
346
|
+
Foo test/application/initializers/load_path_test.rb /^ module Foo; end$/;" m
|
347
|
+
Foo test/application/initializers/load_path_test.rb /^ module Foo; end$/;" m class:ApplicationTests
|
348
|
+
Foo test/initializable_test.rb /^ class Foo$/;" c class:InitializableTests
|
349
|
+
Foo test/railties/plugin_test.rb /^ class Foo < Rails::Plugin; end$/;" c
|
350
|
+
Foo test/railties/railtie_test.rb /^ class Foo < Rails::Railtie ; config.after_initialize { $after_initialize = true } ; end$/;" c
|
351
|
+
Foo test/railties/railtie_test.rb /^ class Foo < Rails::Railtie ; config.to_prepare { $to_prepare = true } ; end$/;" c
|
352
|
+
Foo test/railties/railtie_test.rb /^ class Foo < Rails::Railtie ; end$/;" c
|
353
|
+
Foo test/railties/railtie_test.rb /^ class Foo < Rails::Railtie$/;" c
|
354
|
+
Foo test/railties/shared_tests.rb /^ module Foo; end$/;" m class:RailtiesTest.test_autoload_any_path_under_app
|
355
|
+
FooController test/application/initializers/frameworks_test.rb /^ class FooController < ApplicationController$/;" c
|
356
|
+
FooController test/application/routing_test.rb /^ class FooController < ApplicationController$/;" c
|
357
|
+
FooController test/application/routing_test.rb /^ class FooController < ApplicationController$/;" c class:Admin
|
358
|
+
FooController test/application/routing_test.rb /^ class FooController < ApplicationController$/;" c
|
359
|
+
FooController test/isolation/abstract_unit.rb /^ class FooController < ApplicationController$/;" c class:simple_controller
|
360
|
+
FooController test/railties/engine_test.rb /^ class FooController < ActionController::Base$/;" c
|
361
|
+
FooController test/railties/shared_tests.rb /^ class FooController < ActionController::Base$/;" c class:RailtiesTest.test_routes_in_plugins_have_lower_priority_than_application_ones
|
362
|
+
FooHelper test/application/initializers/frameworks_test.rb /^ module FooHelper$/;" m
|
363
|
+
FooTest test/application/test_test.rb /^ class FooTest < ActiveSupport::TestCase$/;" c class:ApplicationTests
|
364
|
+
FooTest test/application/test_test.rb /^ class FooTest < ActiveSupport::TestCase$/;" c class:ApplicationTests.TestTest
|
365
|
+
Foobar test/fixtures/lib/rails/generators/foobar/foobar_generator.rb /^module Foobar$/;" m
|
366
|
+
FoobarGenerator test/fixtures/lib/rails/generators/foobar/foobar_generator.rb /^ class FoobarGenerator < Rails::Generators::Base$/;" c class:Foobar
|
367
|
+
FrameworlsTest test/application/initializers/frameworks_test.rb /^ class FrameworlsTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
368
|
+
GemBooting test/application/initializers/boot_test.rb /^ class GemBooting < Test::Unit::TestCase$/;" c class:ApplicationTests
|
369
|
+
GeneratedAttribute lib/rails/generators/generated_attribute.rb /^ class GeneratedAttribute$/;" c class:Rails.Generators
|
370
|
+
GeneratedAttributeTest test/generators/generated_attribute_test.rb /^class GeneratedAttributeTest < Rails::Generators::TestCase$/;" c
|
371
|
+
Generation test/isolation/abstract_unit.rb /^ module Generation$/;" m
|
372
|
+
Generator guides/rails_guides/generator.rb /^ class Generator$/;" c class:RailsGuides
|
373
|
+
GeneratorGenerator lib/rails/generators/rails/generator/generator_generator.rb /^ class GeneratorGenerator < NamedBase$/;" c class:Rails.Generators
|
374
|
+
GeneratorGeneratorTest test/generators/generator_generator_test.rb /^class GeneratorGeneratorTest < Rails::Generators::TestCase$/;" c
|
375
|
+
Generators lib/rails/configuration.rb /^ class Generators #:nodoc:$/;" c class:Rails.Configuration
|
376
|
+
Generators lib/rails/generators.rb /^ module Generators$/;" m class:Rails
|
377
|
+
Generators lib/rails/generators/actions.rb /^ module Generators$/;" m class:Rails
|
378
|
+
Generators lib/rails/generators/active_model.rb /^ module Generators$/;" m class:Rails
|
379
|
+
Generators lib/rails/generators/app_base.rb /^ module Generators$/;" m class:Rails
|
380
|
+
Generators lib/rails/generators/base.rb /^ module Generators$/;" m class:Rails
|
381
|
+
Generators lib/rails/generators/erb.rb /^ module Generators$/;" m class:Erb
|
382
|
+
Generators lib/rails/generators/erb/controller/controller_generator.rb /^ module Generators$/;" m class:Erb
|
383
|
+
Generators lib/rails/generators/erb/mailer/mailer_generator.rb /^ module Generators$/;" m class:Erb
|
384
|
+
Generators lib/rails/generators/erb/scaffold/scaffold_generator.rb /^ module Generators$/;" m class:Erb
|
385
|
+
Generators lib/rails/generators/generated_attribute.rb /^ module Generators$/;" m class:Rails
|
386
|
+
Generators lib/rails/generators/migration.rb /^ module Generators$/;" m class:Rails
|
387
|
+
Generators lib/rails/generators/named_base.rb /^ module Generators$/;" m class:Rails
|
388
|
+
Generators lib/rails/generators/rails/app/app_generator.rb /^ module Generators$/;" m
|
389
|
+
Generators lib/rails/generators/rails/controller/controller_generator.rb /^ module Generators$/;" m class:Rails
|
390
|
+
Generators lib/rails/generators/rails/generator/generator_generator.rb /^ module Generators$/;" m class:Rails
|
391
|
+
Generators lib/rails/generators/rails/helper/helper_generator.rb /^ module Generators$/;" m class:Rails
|
392
|
+
Generators lib/rails/generators/rails/integration_test/integration_test_generator.rb /^ module Generators$/;" m class:Rails
|
393
|
+
Generators lib/rails/generators/rails/migration/migration_generator.rb /^ module Generators$/;" m class:Rails
|
394
|
+
Generators lib/rails/generators/rails/model/model_generator.rb /^ module Generators$/;" m class:Rails
|
395
|
+
Generators lib/rails/generators/rails/observer/observer_generator.rb /^ module Generators$/;" m class:Rails
|
396
|
+
Generators lib/rails/generators/rails/performance_test/performance_test_generator.rb /^ module Generators$/;" m class:Rails
|
397
|
+
Generators lib/rails/generators/rails/plugin/plugin_generator.rb /^ module Generators$/;" m class:Rails
|
398
|
+
Generators lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ module Generators$/;" m
|
399
|
+
Generators lib/rails/generators/rails/resource/resource_generator.rb /^ module Generators$/;" m class:Rails
|
400
|
+
Generators lib/rails/generators/rails/scaffold/scaffold_generator.rb /^ module Generators$/;" m class:Rails
|
401
|
+
Generators lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb /^ module Generators$/;" m class:Rails
|
402
|
+
Generators lib/rails/generators/rails/session_migration/session_migration_generator.rb /^ module Generators$/;" m class:Rails
|
403
|
+
Generators lib/rails/generators/rails/stylesheets/stylesheets_generator.rb /^ module Generators$/;" m class:Rails
|
404
|
+
Generators lib/rails/generators/resource_helpers.rb /^ module Generators$/;" m class:Rails
|
405
|
+
Generators lib/rails/generators/test_case.rb /^ module Generators$/;" m class:Rails
|
406
|
+
Generators lib/rails/generators/test_unit.rb /^ module Generators$/;" m class:TestUnit
|
407
|
+
Generators lib/rails/generators/test_unit/controller/controller_generator.rb /^ module Generators$/;" m class:TestUnit
|
408
|
+
Generators lib/rails/generators/test_unit/helper/helper_generator.rb /^ module Generators$/;" m class:TestUnit
|
409
|
+
Generators lib/rails/generators/test_unit/integration/integration_generator.rb /^ module Generators$/;" m class:TestUnit
|
410
|
+
Generators lib/rails/generators/test_unit/mailer/mailer_generator.rb /^ module Generators$/;" m class:TestUnit
|
411
|
+
Generators lib/rails/generators/test_unit/model/model_generator.rb /^ module Generators$/;" m class:TestUnit
|
412
|
+
Generators lib/rails/generators/test_unit/observer/observer_generator.rb /^ module Generators$/;" m class:TestUnit
|
413
|
+
Generators lib/rails/generators/test_unit/performance/performance_generator.rb /^ module Generators$/;" m class:TestUnit
|
414
|
+
Generators lib/rails/generators/test_unit/plugin/plugin_generator.rb /^ module Generators$/;" m class:TestUnit
|
415
|
+
Generators lib/rails/generators/test_unit/scaffold/scaffold_generator.rb /^ module Generators$/;" m class:TestUnit
|
416
|
+
Generators test/fixtures/lib/generators/active_record/fixjour_generator.rb /^ module Generators$/;" m class:ActiveRecord
|
417
|
+
Generators test/generators/scaffold_controller_generator_test.rb /^ module Generators$/;" m class:Unknown
|
418
|
+
GeneratorsTest test/application/generators_test.rb /^ class GeneratorsTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
419
|
+
GeneratorsTest test/generators_test.rb /^class GeneratorsTest < Rails::Generators::TestCase$/;" c
|
420
|
+
GeneratorsTestHelper test/generators/generators_test_helper.rb /^module GeneratorsTestHelper$/;" m
|
421
|
+
HelperGenerator lib/rails/generators/rails/helper/helper_generator.rb /^ class HelperGenerator < NamedBase$/;" c class:Rails.Generators
|
422
|
+
HelperGenerator lib/rails/generators/test_unit/helper/helper_generator.rb /^ class HelperGenerator < Base$/;" c class:TestUnit.Generators
|
423
|
+
HelperGeneratorTest test/generators/helper_generator_test.rb /^class HelperGeneratorTest < Rails::Generators::TestCase$/;" c
|
424
|
+
Helpers guides/rails_guides/helpers.rb /^ module Helpers$/;" m class:RailsGuides
|
425
|
+
HomeController test/railties/engine_test.rb /^ class HomeController < ActionController::Base$/;" c class:Bukkits
|
426
|
+
I18nTest test/application/initializers/i18n_test.rb /^ class I18nTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
427
|
+
Indexer guides/rails_guides/indexer.rb /^ class Indexer$/;" c class:RailsGuides
|
428
|
+
Info lib/rails/commands/plugin.rb /^ class Info$/;" c class:Commands
|
429
|
+
Info lib/rails/info.rb /^ module Info$/;" m class:Rails
|
430
|
+
Info test/rails_info_test.rb /^ class Info; end$/;" c class:Rails
|
431
|
+
InfoControllerTest test/rails_info_controller_test.rb /^class InfoControllerTest < ActionController::TestCase$/;" c
|
432
|
+
InfoTest test/rails_info_test.rb /^class InfoTest < ActiveSupport::TestCase$/;" c
|
433
|
+
Initializable lib/rails/initializable.rb /^ module Initializable$/;" m class:Rails
|
434
|
+
InitializableTests test/initializable_test.rb /^module InitializableTests$/;" m
|
435
|
+
Initializer lib/rails/initializable.rb /^ class Initializer$/;" c class:Rails.Initializable
|
436
|
+
InitializersTest test/application/initializers/hooks_test.rb /^ class InitializersTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
437
|
+
Install lib/rails/commands/plugin.rb /^ class Install$/;" c class:Commands
|
438
|
+
Instance test/initializable_test.rb /^ class Instance$/;" c class:InitializableTests
|
439
|
+
InstanceTest test/initializable_test.rb /^ class InstanceTest < ActiveSupport::TestCase$/;" c
|
440
|
+
IntegrationGenerator lib/rails/generators/test_unit/integration/integration_generator.rb /^ class IntegrationGenerator < Base$/;" c class:TestUnit.Generators
|
441
|
+
IntegrationTestGenerator lib/rails/generators/rails/integration_test/integration_test_generator.rb /^ class IntegrationTestGenerator < NamedBase$/;" c class:Rails.Generators
|
442
|
+
IntegrationTestGeneratorTest test/generators/integration_test_generator_test.rb /^class IntegrationTestGeneratorTest < Rails::Generators::TestCase$/;" c
|
443
|
+
Interdependent test/initializable_test.rb /^ module Interdependent$/;" m class:InitializableTests
|
444
|
+
Levenshtein guides/rails_guides/levenshtein.rb /^ module Levenshtein$/;" m class:RailsGuides
|
445
|
+
LoadPathTest test/application/initializers/load_path_test.rb /^ class LoadPathTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
446
|
+
LoadingTest test/application/loading_test.rb /^class LoadingTest < Test::Unit::TestCase$/;" c
|
447
|
+
LogTailer lib/rails/rack/log_tailer.rb /^ class LogTailer$/;" c class:Rails.Rack
|
448
|
+
Logger lib/rails/rack/logger.rb /^ class Logger < ActiveSupport::LogSubscriber$/;" c class:Rails.Rack
|
449
|
+
MailerGenerator lib/rails/generators/erb/mailer/mailer_generator.rb /^ class MailerGenerator < ControllerGenerator$/;" c class:Erb.Generators
|
450
|
+
MailerGenerator lib/rails/generators/test_unit/mailer/mailer_generator.rb /^ class MailerGenerator < Base$/;" c class:TestUnit.Generators
|
451
|
+
MailerGeneratorTest test/generators/mailer_generator_test.rb /^class MailerGeneratorTest < Rails::Generators::TestCase$/;" c
|
452
|
+
MiddlewareStackProxy lib/rails/configuration.rb /^ class MiddlewareStackProxy #:nodoc:$/;" c class:Rails.Configuration
|
453
|
+
MiddlewareTest test/application/middleware_test.rb /^ class MiddlewareTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
454
|
+
Migration lib/rails/generators/migration.rb /^ module Migration$/;" m class:Rails.Generators
|
455
|
+
MigrationGenerator lib/rails/generators/rails/migration/migration_generator.rb /^ class MigrationGenerator < NamedBase #metagenerator$/;" c class:Rails.Generators
|
456
|
+
MigrationGeneratorTest test/generators/migration_generator_test.rb /^class MigrationGeneratorTest < Rails::Generators::TestCase$/;" c
|
457
|
+
ModelGenerator lib/rails/generators/rails/model/model_generator.rb /^ class ModelGenerator < NamedBase #metagenerator$/;" c class:Rails.Generators
|
458
|
+
ModelGenerator lib/rails/generators/test_unit/model/model_generator.rb /^ class ModelGenerator < Base$/;" c class:TestUnit.Generators
|
459
|
+
ModelGeneratorTest test/generators/model_generator_test.rb /^class ModelGeneratorTest < Rails::Generators::TestCase$/;" c
|
460
|
+
MoreInitializers test/initializable_test.rb /^ class MoreInitializers$/;" c class:InitializableTests.OverriddenInitializer
|
461
|
+
MyApp test/application/url_generation_test.rb /^ class MyApp < Rails::Application$/;" c class:ApplicationTests.UrlGenerationTest
|
462
|
+
MyMailer test/railties/engine_test.rb /^ class MyMailer < ActionMailer::Base$/;" c class:Bukkits
|
463
|
+
MyTie test/railties/railtie_test.rb /^ class MyTie < Rails::Railtie$/;" c
|
464
|
+
NamedBase lib/rails/generators/named_base.rb /^ class NamedBase < Base$/;" c class:Rails.Generators
|
465
|
+
NamedBaseTest test/generators/named_base_test.rb /^class NamedBaseTest < Rails::Generators::TestCase$/;" c
|
466
|
+
NamespacedControllerGeneratorTest test/generators/namespaced_generators_test.rb /^class NamespacedControllerGeneratorTest < NamespacedGeneratorTestCase$/;" c
|
467
|
+
NamespacedGeneratorTestCase test/generators/namespaced_generators_test.rb /^class NamespacedGeneratorTestCase < Rails::Generators::TestCase$/;" c
|
468
|
+
NamespacedMailerGeneratorTest test/generators/namespaced_generators_test.rb /^class NamespacedMailerGeneratorTest < NamespacedGeneratorTestCase$/;" c
|
469
|
+
NamespacedModelGeneratorTest test/generators/namespaced_generators_test.rb /^class NamespacedModelGeneratorTest < NamespacedGeneratorTestCase$/;" c
|
470
|
+
NamespacedObserverGeneratorTest test/generators/namespaced_generators_test.rb /^class NamespacedObserverGeneratorTest < NamespacedGeneratorTestCase$/;" c
|
471
|
+
NamespacedScaffoldGeneratorTest test/generators/namespaced_generators_test.rb /^class NamespacedScaffoldGeneratorTest < NamespacedGeneratorTestCase$/;" c
|
472
|
+
NavigationTest lib/rails/generators/rails/plugin_new/templates/test/integration/navigation_test.rb /^class NavigationTest < ActionDispatch::IntegrationTest$/;" c
|
473
|
+
NotificationsTest test/application/initializers/notifications_test.rb /^ class NotificationsTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
474
|
+
ObserverGenerator lib/rails/generators/rails/observer/observer_generator.rb /^ class ObserverGenerator < NamedBase #metagenerator$/;" c class:Rails.Generators
|
475
|
+
ObserverGenerator lib/rails/generators/test_unit/observer/observer_generator.rb /^ class ObserverGenerator < Base$/;" c class:TestUnit.Generators
|
476
|
+
ObserverGeneratorTest test/generators/observer_generator_test.rb /^class ObserverGeneratorTest < Rails::Generators::TestCase$/;" c
|
477
|
+
Options lib/rails/commands/server.rb /^ class Options$/;" c class:Rails.Server
|
478
|
+
OverriddenInitializer test/initializable_test.rb /^ class OverriddenInitializer$/;" c class:InitializableTests
|
479
|
+
OverriddenInitializerTest test/initializable_test.rb /^ class OverriddenInitializerTest < ActiveSupport::TestCase$/;" c
|
480
|
+
Parent test/initializable_test.rb /^ class Parent$/;" c class:InitializableTests
|
481
|
+
Path lib/rails/paths.rb /^ class Path < Array$/;" c class:Rails.Paths
|
482
|
+
PathParent lib/rails/paths.rb /^ module PathParent #:nodoc:$/;" m class:Rails.Paths
|
483
|
+
Paths lib/rails/paths.rb /^ module Paths$/;" m class:Rails
|
484
|
+
Paths test/isolation/abstract_unit.rb /^ module Paths$/;" m class:TestHelpers
|
485
|
+
PathsTest test/application/paths_test.rb /^ class PathsTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
486
|
+
PathsTest test/paths_test.rb /^class PathsTest < ActiveSupport::TestCase$/;" c
|
487
|
+
PerformanceGenerator lib/rails/generators/test_unit/performance/performance_generator.rb /^ class PerformanceGenerator < Base$/;" c class:TestUnit.Generators
|
488
|
+
PerformanceTestGenerator lib/rails/generators/rails/performance_test/performance_test_generator.rb /^ class PerformanceTestGenerator < NamedBase$/;" c class:Rails.Generators
|
489
|
+
PerformanceTestGeneratorTest test/generators/performance_test_generator_test.rb /^class PerformanceTestGeneratorTest < Rails::Generators::TestCase$/;" c
|
490
|
+
Plugin lib/rails/commands/plugin.rb /^ class Plugin$/;" c class:Commands
|
491
|
+
Plugin lib/rails/commands/plugin.rb /^class Plugin$/;" c
|
492
|
+
Plugin lib/rails/plugin.rb /^ class Plugin < Engine$/;" c class:Rails
|
493
|
+
PluginA test/initializable_test.rb /^ class PluginA$/;" c class:InitializableTests.Interdependent
|
494
|
+
PluginB test/initializable_test.rb /^ class PluginB$/;" c
|
495
|
+
PluginBuilder lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ class PluginBuilder$/;" c class:Rails
|
496
|
+
PluginBuilder test/fixtures/lib/plugin_builders/empty_builder.rb /^class PluginBuilder$/;" c
|
497
|
+
PluginBuilder test/fixtures/lib/plugin_builders/simple_builder.rb /^class PluginBuilder$/;" c
|
498
|
+
PluginBuilder test/fixtures/lib/plugin_builders/spec_builder.rb /^class PluginBuilder < Rails::PluginBuilder$/;" c
|
499
|
+
PluginBuilder test/fixtures/lib/plugin_builders/tweak_builder.rb /^class PluginBuilder < Rails::PluginBuilder$/;" c
|
500
|
+
PluginGenerator lib/rails/generators/rails/plugin/plugin_generator.rb /^ class PluginGenerator < NamedBase$/;" c class:Rails.Generators
|
501
|
+
PluginGenerator lib/rails/generators/test_unit/plugin/plugin_generator.rb /^ class PluginGenerator < Base$/;" c class:TestUnit.Generators
|
502
|
+
PluginGeneratorTest test/generators/plugin_generator_test.rb /^class PluginGeneratorTest < Rails::Generators::TestCase$/;" c
|
503
|
+
PluginNewGenerator lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ class PluginNewGenerator < AppBase$/;" c class:Generators
|
504
|
+
PluginNewGeneratorTest test/generators/plugin_new_generator_test.rb /^class PluginNewGeneratorTest < Rails::Generators::TestCase$/;" c
|
505
|
+
PluginOrderingTest test/railties/plugin_ordering_test.rb /^ class PluginOrderingTest < Test::Unit::TestCase$/;" c class:RailtiesTest
|
506
|
+
PluginTest test/railties/plugin_test.rb /^ class PluginTest < Test::Unit::TestCase$/;" c class:RailtiesTest
|
507
|
+
Post test/application/loading_test.rb /^ class Post < ActiveRecord::Base$/;" c class:LoadingTest.test_constants_in_app_are_autoloaded
|
508
|
+
Post test/application/loading_test.rb /^ class Post < ActiveRecord::Base$/;" c class:test_descendants_are_cleaned_on_each_request_without_cache_classes
|
509
|
+
Post test/railties/engine_test.rb /^ class Post$/;" c class:Bukkits
|
510
|
+
Post test/railties/mounted_engine_test.rb /^ class Post$/;" c class:ApplicationTests.ApplicationRoutingTest.Blog
|
511
|
+
PostsController test/application/test_test.rb /^ class PostsController < ActionController::Base$/;" c
|
512
|
+
PostsController test/railties/mounted_engine_test.rb /^ class PostsController < ActionController::Base$/;" c class:ApplicationTests.ApplicationRoutingTest.Blog
|
513
|
+
PostsTest test/application/test_test.rb /^ class PostsTest < ActionDispatch::IntegrationTest$/;" c
|
514
|
+
Prof lib/rails/rubyprof_ext.rb /^module Prof #:nodoc:$/;" m
|
515
|
+
Prototype.Browser lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ Version: '1.7',$/;" p
|
516
|
+
Prototype.Browser tmp/app/public/javascripts/prototype.js /^ Version: '1.7',$/;" p
|
517
|
+
Prototype.Browser tmp/app_template/public/javascripts/prototype.js /^ Version: '1.7',$/;" p
|
518
|
+
Prototype.Version lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^var Prototype = {$/;" p
|
519
|
+
Prototype.Version tmp/app/public/javascripts/prototype.js /^var Prototype = {$/;" p
|
520
|
+
Prototype.Version tmp/app_template/public/javascripts/prototype.js /^var Prototype = {$/;" p
|
521
|
+
Rack lib/rails/rack.rb /^ module Rack$/;" m class:Rails
|
522
|
+
Rack lib/rails/rack/debugger.rb /^ module Rack$/;" m class:Rails
|
523
|
+
Rack lib/rails/rack/log_tailer.rb /^ module Rack$/;" m class:Rails
|
524
|
+
Rack lib/rails/rack/logger.rb /^ module Rack$/;" m class:Rails
|
525
|
+
Rack test/isolation/abstract_unit.rb /^ module Rack$/;" m class:TestHelpers
|
526
|
+
RackupTest test/application/rackup_test.rb /^ class RackupTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
527
|
+
Rails lib/rails.rb /^module Rails$/;" m
|
528
|
+
Rails lib/rails/application.rb /^module Rails$/;" m
|
529
|
+
Rails lib/rails/application/bootstrap.rb /^module Rails$/;" m
|
530
|
+
Rails lib/rails/application/configuration.rb /^module Rails$/;" m
|
531
|
+
Rails lib/rails/application/finisher.rb /^module Rails$/;" m
|
532
|
+
Rails lib/rails/application/railties.rb /^module Rails$/;" m
|
533
|
+
Rails lib/rails/application/routes_reloader.rb /^module Rails$/;" m
|
534
|
+
Rails lib/rails/backtrace_cleaner.rb /^module Rails$/;" m
|
535
|
+
Rails lib/rails/commands/console.rb /^module Rails$/;" m
|
536
|
+
Rails lib/rails/commands/dbconsole.rb /^module Rails$/;" m
|
537
|
+
Rails lib/rails/commands/server.rb /^module Rails$/;" m
|
538
|
+
Rails lib/rails/configuration.rb /^module Rails$/;" m
|
539
|
+
Rails lib/rails/engine.rb /^module Rails$/;" m
|
540
|
+
Rails lib/rails/engine/configuration.rb /^module Rails$/;" m
|
541
|
+
Rails lib/rails/engine/railties.rb /^module Rails$/;" m
|
542
|
+
Rails lib/rails/generators.rb /^module Rails$/;" m
|
543
|
+
Rails lib/rails/generators/actions.rb /^module Rails$/;" m
|
544
|
+
Rails lib/rails/generators/active_model.rb /^module Rails$/;" m
|
545
|
+
Rails lib/rails/generators/app_base.rb /^module Rails$/;" m
|
546
|
+
Rails lib/rails/generators/base.rb /^module Rails$/;" m
|
547
|
+
Rails lib/rails/generators/generated_attribute.rb /^module Rails$/;" m
|
548
|
+
Rails lib/rails/generators/migration.rb /^module Rails$/;" m
|
549
|
+
Rails lib/rails/generators/named_base.rb /^module Rails$/;" m
|
550
|
+
Rails lib/rails/generators/rails/app/app_generator.rb /^module Rails$/;" m
|
551
|
+
Rails lib/rails/generators/rails/controller/controller_generator.rb /^module Rails$/;" m
|
552
|
+
Rails lib/rails/generators/rails/generator/generator_generator.rb /^module Rails$/;" m
|
553
|
+
Rails lib/rails/generators/rails/helper/helper_generator.rb /^module Rails$/;" m
|
554
|
+
Rails lib/rails/generators/rails/integration_test/integration_test_generator.rb /^module Rails$/;" m
|
555
|
+
Rails lib/rails/generators/rails/migration/migration_generator.rb /^module Rails$/;" m
|
556
|
+
Rails lib/rails/generators/rails/model/model_generator.rb /^module Rails$/;" m
|
557
|
+
Rails lib/rails/generators/rails/observer/observer_generator.rb /^module Rails$/;" m
|
558
|
+
Rails lib/rails/generators/rails/performance_test/performance_test_generator.rb /^module Rails$/;" m
|
559
|
+
Rails lib/rails/generators/rails/plugin/plugin_generator.rb /^module Rails$/;" m
|
560
|
+
Rails lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^module Rails$/;" m
|
561
|
+
Rails lib/rails/generators/rails/resource/resource_generator.rb /^module Rails$/;" m
|
562
|
+
Rails lib/rails/generators/rails/scaffold/scaffold_generator.rb /^module Rails$/;" m
|
563
|
+
Rails lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb /^module Rails$/;" m
|
564
|
+
Rails lib/rails/generators/rails/session_migration/session_migration_generator.rb /^module Rails$/;" m
|
565
|
+
Rails lib/rails/generators/rails/stylesheets/stylesheets_generator.rb /^module Rails$/;" m
|
566
|
+
Rails lib/rails/generators/resource_helpers.rb /^module Rails$/;" m
|
567
|
+
Rails lib/rails/generators/test_case.rb /^module Rails$/;" m
|
568
|
+
Rails lib/rails/info.rb /^module Rails$/;" m
|
569
|
+
Rails lib/rails/info_controller.rb /^class Rails::InfoController < ActionController::Base$/;" c
|
570
|
+
Rails lib/rails/initializable.rb /^module Rails$/;" m
|
571
|
+
Rails lib/rails/paths.rb /^module Rails$/;" m
|
572
|
+
Rails lib/rails/plugin.rb /^module Rails$/;" m
|
573
|
+
Rails lib/rails/rack.rb /^module Rails$/;" m
|
574
|
+
Rails lib/rails/rack/debugger.rb /^module Rails$/;" m
|
575
|
+
Rails lib/rails/rack/log_tailer.rb /^module Rails$/;" m
|
576
|
+
Rails lib/rails/rack/logger.rb /^module Rails$/;" m
|
577
|
+
Rails lib/rails/rack/static.rb /^module Rails::Rack$/;" m
|
578
|
+
Rails lib/rails/railtie.rb /^module Rails$/;" m
|
579
|
+
Rails lib/rails/railtie/configurable.rb /^module Rails$/;" m
|
580
|
+
Rails lib/rails/railtie/configuration.rb /^module Rails$/;" m
|
581
|
+
Rails lib/rails/script_rails_loader.rb /^module Rails$/;" m
|
582
|
+
Rails lib/rails/test_unit/railtie.rb /^module Rails$/;" m
|
583
|
+
Rails lib/rails/version.rb /^module Rails$/;" m
|
584
|
+
Rails test/generators/generators_test_helper.rb /^module Rails$/;" m
|
585
|
+
Rails test/rails_info_test.rb /^ module Rails$/;" m
|
586
|
+
Rails test/railties/railtie_test.rb /^ class Rails::Railtie$/;" c
|
587
|
+
RailsEnvironment lib/rails/commands/plugin.rb /^class RailsEnvironment$/;" c
|
588
|
+
RailsGuides guides/rails_guides/generator.rb /^module RailsGuides$/;" m
|
589
|
+
RailsGuides guides/rails_guides/helpers.rb /^module RailsGuides$/;" m
|
590
|
+
RailsGuides guides/rails_guides/indexer.rb /^module RailsGuides$/;" m
|
591
|
+
RailsGuides guides/rails_guides/levenshtein.rb /^module RailsGuides$/;" m
|
592
|
+
RailsGuides guides/rails_guides/textile_extensions.rb /^module RailsGuides$/;" m
|
593
|
+
RailsGuides guides/w3c_validator.rb /^module RailsGuides$/;" m
|
594
|
+
Railtie lib/rails/railtie.rb /^ class Railtie$/;" c class:Rails
|
595
|
+
Railtie lib/rails/railtie/configurable.rb /^ class Railtie$/;" c class:Rails
|
596
|
+
Railtie lib/rails/railtie/configuration.rb /^ class Railtie$/;" c class:Rails
|
597
|
+
RailtieTest test/railties/railtie_test.rb /^ class RailtieTest < Test::Unit::TestCase$/;" c class:RailtiesTest
|
598
|
+
Railties lib/rails/application/railties.rb /^ class Railties < Rails::Engine::Railties$/;" c class:Rails.Application
|
599
|
+
Railties lib/rails/engine/railties.rb /^ class Railties$/;" c class:Rails.Engine
|
600
|
+
RailtiesTest test/railties/engine_test.rb /^module RailtiesTest$/;" m
|
601
|
+
RailtiesTest test/railties/plugin_ordering_test.rb /^module RailtiesTest$/;" m
|
602
|
+
RailtiesTest test/railties/plugin_test.rb /^module RailtiesTest$/;" m
|
603
|
+
RailtiesTest test/railties/railtie_test.rb /^module RailtiesTest$/;" m
|
604
|
+
RailtiesTest test/railties/shared_tests.rb /^module RailtiesTest$/;" m
|
605
|
+
RakeTest test/application/rake_test.rb /^ class RakeTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
606
|
+
RecursiveHTTPFetcher lib/rails/commands/plugin.rb /^class RecursiveHTTPFetcher$/;" c
|
607
|
+
RemoteIpTest test/application/middleware/remote_ip_test.rb /^ class RemoteIpTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
608
|
+
Remove lib/rails/commands/plugin.rb /^ class Remove$/;" c class:Commands
|
609
|
+
ResourceGenerator lib/rails/generators/rails/resource/resource_generator.rb /^ class ResourceGenerator < ModelGenerator #metagenerator$/;" c class:Rails.Generators
|
610
|
+
ResourceGeneratorTest test/generators/resource_generator_test.rb /^class ResourceGeneratorTest < Rails::Generators::TestCase$/;" c
|
611
|
+
ResourceHelpers lib/rails/generators/resource_helpers.rb /^ module ResourceHelpers$/;" m class:Rails.Generators
|
612
|
+
Root lib/rails/paths.rb /^ class Root < ::Hash$/;" c class:Rails.Paths
|
613
|
+
RoutesReloader lib/rails/application/routes_reloader.rb /^ class RoutesReloader < ::ActiveSupport::FileUpdateChecker$/;" c class:Rails.Application
|
614
|
+
RoutingTest test/application/middleware/cache_test.rb /^ class RoutingTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
615
|
+
RoutingTest test/application/routing_test.rb /^ class RoutingTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
616
|
+
RunnerTest test/application/runner_test.rb /^ class RunnerTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
617
|
+
ScaffoldControllerGenerator lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb /^ class ScaffoldControllerGenerator < NamedBase$/;" c class:Rails.Generators
|
618
|
+
ScaffoldControllerGeneratorTest test/generators/scaffold_controller_generator_test.rb /^class ScaffoldControllerGeneratorTest < Rails::Generators::TestCase$/;" c
|
619
|
+
ScaffoldGenerator lib/rails/generators/erb/scaffold/scaffold_generator.rb /^ class ScaffoldGenerator < Base$/;" c class:Erb.Generators
|
620
|
+
ScaffoldGenerator lib/rails/generators/rails/scaffold/scaffold_generator.rb /^ class ScaffoldGenerator < ResourceGenerator #metagenerator$/;" c class:Rails.Generators
|
621
|
+
ScaffoldGenerator lib/rails/generators/test_unit/scaffold/scaffold_generator.rb /^ class ScaffoldGenerator < Base$/;" c class:TestUnit.Generators
|
622
|
+
ScaffoldGeneratorTest test/generators/scaffold_generator_test.rb /^class ScaffoldGeneratorTest < Rails::Generators::TestCase$/;" c
|
623
|
+
ScriptRailsLoader lib/rails/script_rails_loader.rb /^ module ScriptRailsLoader$/;" m class:Rails
|
624
|
+
ScriptRailsLoaderTest test/script_rails_loader_test.rb /^class ScriptRailsLoaderTest < ActiveSupport::TestCase$/;" c
|
625
|
+
SendfileTest test/application/middleware/sendfile_test.rb /^ class SendfileTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
626
|
+
Server lib/rails/commands/server.rb /^ class Server < ::Rack::Server$/;" c class:Rails
|
627
|
+
SessionMigrationGenerator lib/rails/generators/rails/session_migration/session_migration_generator.rb /^ class SessionMigrationGenerator < NamedBase #metagenerator$/;" c class:Rails.Generators
|
628
|
+
SessionMigrationGeneratorTest test/generators/session_migration_generator_test.rb /^class SessionMigrationGeneratorTest < Rails::Generators::TestCase$/;" c
|
629
|
+
SharedCustomGeneratorTests test/generators/shared_generator_tests.rb /^module SharedCustomGeneratorTests$/;" m
|
630
|
+
SharedGeneratorTests test/generators/shared_generator_tests.rb /^module SharedGeneratorTests$/;" m
|
631
|
+
SharedTests test/railties/shared_tests.rb /^ module SharedTests$/;" m class:RailtiesTest
|
632
|
+
SomeHelper test/railties/engine_test.rb /^ module SomeHelper$/;" m
|
633
|
+
Sortable.SERIALIZE_RULE lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^var Sortable = {$/;" p
|
634
|
+
Sortable.SERIALIZE_RULE tmp/app/public/javascripts/dragdrop.js /^var Sortable = {$/;" p
|
635
|
+
Sortable.SERIALIZE_RULE tmp/app_template/public/javascripts/dragdrop.js /^var Sortable = {$/;" p
|
636
|
+
SortableObserver lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^var SortableObserver = Class.create({$/;" v
|
637
|
+
SortableObserver tmp/app/public/javascripts/dragdrop.js /^var SortableObserver = Class.create({$/;" v
|
638
|
+
SortableObserver tmp/app_template/public/javascripts/dragdrop.js /^var SortableObserver = Class.create({$/;" v
|
639
|
+
SourceAnnotationExtractor lib/rails/source_annotation_extractor.rb /^class SourceAnnotationExtractor$/;" c
|
640
|
+
Sprokkit test/railties/shared_tests.rb /^ class Sprokkit$/;" c class:RailtiesTest.test_routes_are_added_to_router
|
641
|
+
Str lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function Str(key, holder, stack) {$/;" f
|
642
|
+
Str tmp/app/public/javascripts/prototype.js /^ function Str(key, holder, stack) {$/;" f
|
643
|
+
Str tmp/app_template/public/javascripts/prototype.js /^ function Str(key, holder, stack) {$/;" f
|
644
|
+
String lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^\/\/ script.aculo.us effects.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009$/;" c
|
645
|
+
String tmp/app/public/javascripts/effects.js /^\/\/ script.aculo.us effects.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009$/;" c
|
646
|
+
String tmp/app_template/public/javascripts/effects.js /^\/\/ script.aculo.us effects.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009$/;" c
|
647
|
+
String.parseColor lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^String.prototype.parseColor = function() {$/;" m
|
648
|
+
String.parseColor tmp/app/public/javascripts/effects.js /^String.prototype.parseColor = function() {$/;" m
|
649
|
+
String.parseColor tmp/app_template/public/javascripts/effects.js /^String.prototype.parseColor = function() {$/;" m
|
650
|
+
String.parseStyle lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^String.prototype.parseStyle = function(){$/;" m
|
651
|
+
String.parseStyle tmp/app/public/javascripts/effects.js /^String.prototype.parseStyle = function(){$/;" m
|
652
|
+
String.parseStyle tmp/app_template/public/javascripts/effects.js /^String.prototype.parseStyle = function(){$/;" m
|
653
|
+
StylesheetsGenerator lib/rails/generators/rails/stylesheets/stylesheets_generator.rb /^ class StylesheetsGenerator < Base$/;" c class:Rails.Generators
|
654
|
+
StylesheetsGeneratorTest test/generators/stylesheets_generator_test.rb /^class StylesheetsGeneratorTest < Rails::Generators::TestCase$/;" c
|
655
|
+
Test test/isolation/abstract_unit.rb /^class Test::Unit::TestCase$/;" c
|
656
|
+
TestApp test/abstract_unit.rb /^module TestApp$/;" m
|
657
|
+
TestCase lib/rails/generators/test_case.rb /^ class TestCase < ActiveSupport::TestCase$/;" c class:Rails.Generators
|
658
|
+
TestHelpers test/isolation/abstract_unit.rb /^module TestHelpers$/;" m
|
659
|
+
TestTest test/application/test_test.rb /^ class TestTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
660
|
+
TestUnit lib/rails/generators/test_unit.rb /^module TestUnit$/;" m
|
661
|
+
TestUnit lib/rails/generators/test_unit/controller/controller_generator.rb /^module TestUnit$/;" m
|
662
|
+
TestUnit lib/rails/generators/test_unit/helper/helper_generator.rb /^module TestUnit$/;" m
|
663
|
+
TestUnit lib/rails/generators/test_unit/integration/integration_generator.rb /^module TestUnit$/;" m
|
664
|
+
TestUnit lib/rails/generators/test_unit/mailer/mailer_generator.rb /^module TestUnit$/;" m
|
665
|
+
TestUnit lib/rails/generators/test_unit/model/model_generator.rb /^module TestUnit$/;" m
|
666
|
+
TestUnit lib/rails/generators/test_unit/observer/observer_generator.rb /^module TestUnit$/;" m
|
667
|
+
TestUnit lib/rails/generators/test_unit/performance/performance_generator.rb /^module TestUnit$/;" m
|
668
|
+
TestUnit lib/rails/generators/test_unit/plugin/plugin_generator.rb /^module TestUnit$/;" m
|
669
|
+
TestUnit lib/rails/generators/test_unit/scaffold/scaffold_generator.rb /^module TestUnit$/;" m
|
670
|
+
TestUnitRailtie lib/rails/test_unit/railtie.rb /^ class TestUnitRailtie < Rails::Railtie$/;" c class:Rails
|
671
|
+
TestWithBacktrace test/backtrace_cleaner_test.rb /^ class TestWithBacktrace$/;" c
|
672
|
+
TextileExtensions guides/rails_guides/textile_extensions.rb /^ module TextileExtensions$/;" m class:RailsGuides
|
673
|
+
Try.these lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^var Try = {$/;" m
|
674
|
+
Try.these tmp/app/public/javascripts/prototype.js /^var Try = {$/;" m
|
675
|
+
Try.these tmp/app_template/public/javascripts/prototype.js /^var Try = {$/;" m
|
676
|
+
Type lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function Type(o) {$/;" f
|
677
|
+
Type tmp/app/public/javascripts/prototype.js /^ function Type(o) {$/;" f
|
678
|
+
Type tmp/app_template/public/javascripts/prototype.js /^ function Type(o) {$/;" f
|
679
|
+
Unknown test/generators/scaffold_controller_generator_test.rb /^module Unknown$/;" m
|
680
|
+
Upcaser test/railties/engine_test.rb /^ class Upcaser$/;" c
|
681
|
+
UrlGenerationTest test/application/url_generation_test.rb /^ class UrlGenerationTest < Test::Unit::TestCase$/;" c class:ApplicationTests
|
682
|
+
User test/application/console_test.rb /^ class User < ActiveRecord::Base$/;" c class:ConsoleTest.test_active_record_does_not_panic_when_referencing_an_observed_constant
|
683
|
+
User test/application/console_test.rb /^ class User$/;" c class:ConsoleTest.test_reload_should_reload_constants
|
684
|
+
User test/application/loading_test.rb /^ class User < ActiveRecord::Base$/;" c class:LoadingTest.test_models_without_table_do_not_panic_on_scope_definitions_when_loaded
|
685
|
+
User test/application/runner_test.rb /^ class User$/;" c class:ApplicationTests.RunnerTest.setup
|
686
|
+
UserObserver test/application/console_test.rb /^ class UserObserver < ActiveRecord::Observer$/;" c class:ConsoleTest.test_active_record_does_not_panic_when_referencing_an_observed_constant
|
687
|
+
VERSION lib/rails/version.rb /^ module VERSION #:nodoc:$/;" m class:Rails
|
688
|
+
Validator guides/w3c_validator.rb /^ class Validator$/;" c class:RailsGuides
|
689
|
+
WithArgs test/initializable_test.rb /^ class WithArgs$/;" c class:InitializableTests
|
690
|
+
WithArgsTest test/initializable_test.rb /^ class WithArgsTest < ActiveSupport::TestCase$/;" c
|
691
|
+
WithOptionsGenerator test/generators_test.rb /^ class WithOptionsGenerator < Rails::Generators::Base$/;" c class:GeneratorsTest.test_developer_options_are_overwriten_by_user_options
|
692
|
+
Word test/initializable_test.rb /^ module Word$/;" m class:InitializableTests
|
693
|
+
WrongGenerator test/fixtures/lib/generators/wrong_generator.rb /^class WrongGenerator < Rails::Generator::NamedBase$/;" c
|
694
|
+
YazilarController test/application/routing_test.rb /^ class YazilarController < ApplicationController$/;" c
|
695
|
+
Zoo test/application/initializers/load_path_test.rb /^ class Zoo ; include ReptileHouse ; end$/;" c
|
696
|
+
Zoo test/application/initializers/load_path_test.rb /^ module Zoo::ReptileHouse ; end$/;" m
|
697
|
+
[]= lib/rails/paths.rb /^ def []=(path, value)$/;" f class:Rails.Paths.Root
|
698
|
+
_all_autoload_once_paths lib/rails/engine.rb /^ def _all_autoload_once_paths$/;" f
|
699
|
+
_all_autoload_paths lib/rails/engine.rb /^ def _all_autoload_paths$/;" f
|
700
|
+
_all_load_paths lib/rails/engine.rb /^ def _all_load_paths$/;" f
|
701
|
+
about lib/rails/generators/rails/app/templates/public/index.html /^ function about() {$/;" f
|
702
|
+
about tmp/app/public/index.html /^ function about() {$/;" f
|
703
|
+
about tmp/app_template/public/index.html /^ function about() {$/;" f
|
704
|
+
abstract_railtie? lib/rails/railtie.rb /^ def abstract_railtie?$/;" f class:Rails.Railtie
|
705
|
+
abstract_unit.rb test/abstract_unit.rb 1;" F
|
706
|
+
abstract_unit.rb test/isolation/abstract_unit.rb 1;" F
|
707
|
+
action test/generators/actions_test.rb /^ def action(*args, &block)$/;" f class:ActionsTest
|
708
|
+
action test/generators/app_generator_test.rb /^ def action(*args, &block)$/;" f
|
709
|
+
action test/generators/app_generator_test.rb /^ def action(*args, &block)$/;" f class:CustomAppGeneratorTest
|
710
|
+
action test/generators/plugin_new_generator_test.rb /^ def action(*args, &block)$/;" f class:CustomPluginGeneratorTest
|
711
|
+
action test/generators/plugin_new_generator_test.rb /^ def action(*args, &block)$/;" f class:PluginNewGeneratorTest
|
712
|
+
actions.rb lib/rails/generators/actions.rb 1;" F
|
713
|
+
actions_test.rb test/generators/actions_test.rb 1;" F
|
714
|
+
active_model.rb lib/rails/generators/active_model.rb 1;" F
|
715
|
+
add lib/rails/paths.rb /^ def add(path, options={})$/;" f class:Rails.Paths.Root
|
716
|
+
add_gem_filters lib/rails/backtrace_cleaner.rb /^ def add_gem_filters$/;" f class:Rails.BacktraceCleaner
|
717
|
+
add_lib_to_load_path! lib/rails/application.rb /^ def add_lib_to_load_path! #:nodoc:$/;" f class:Rails
|
718
|
+
add_resource_route lib/rails/generators/rails/resource/resource_generator.rb /^ def add_resource_route$/;" f class:Rails.Generators.ResourceGenerator
|
719
|
+
add_routes lib/rails/generators/rails/controller/controller_generator.rb /^ def add_routes$/;" f class:Rails.Generators.ControllerGenerator
|
720
|
+
add_shared_options_for lib/rails/generators/app_base.rb /^ def self.add_shared_options_for(name)$/;" F class:Rails.Generators.AppBase
|
721
|
+
add_shebang_option lib/rails/generators/base.rb /^ def self.add_shebang_option!$/;" F class:Rails
|
722
|
+
add_source lib/rails/generators/actions.rb /^ def add_source(source, options={})$/;" f class:Rails.Generators.Actions
|
723
|
+
add_to_config test/isolation/abstract_unit.rb /^ def add_to_config(str)$/;" f
|
724
|
+
after lib/rails/initializable.rb /^ def after$/;" f class:Rails.Initializable.Initializer
|
725
|
+
after_dispatch lib/rails/rack/logger.rb /^ def after_dispatch(env)$/;" f class:Rails.Rack.Logger
|
726
|
+
after_initialize lib/rails/railtie/configuration.rb /^ def after_initialize(&block)$/;" f class:Rails.Railtie.Configuration
|
727
|
+
aliases lib/rails/generators.rb /^ def self.aliases #:nodoc:$/;" F class:Rails.Generators
|
728
|
+
all lib/rails/application/railties.rb /^ def all(&block)$/;" f class:Rails.Application.Railties
|
729
|
+
all lib/rails/engine/railties.rb /^ def all(&block)$/;" f class:Rails.Engine.Railties
|
730
|
+
all lib/rails/generators/active_model.rb /^ def self.all(klass)$/;" F class:Rails.Generators.ActiveModel
|
731
|
+
all lib/rails/plugin.rb /^ def self.all(list, paths)$/;" F class:Rails.Plugin
|
732
|
+
all test/generators/scaffold_controller_generator_test.rb /^ def self.all(klass)$/;" F class:test_customized_orm_is_used
|
733
|
+
all.rb lib/rails/all.rb 1;" F
|
734
|
+
all_paths lib/rails/paths.rb /^ def all_paths$/;" f class:Rails.Paths.Root
|
735
|
+
allowAction lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function allowAction(element) {$/;" f
|
736
|
+
allowAction tmp/app/public/javascripts/rails.js /^ function allowAction(element) {$/;" f
|
737
|
+
allowAction tmp/app_template/public/javascripts/rails.js /^ function allowAction(element) {$/;" f
|
738
|
+
app lib/rails/console/app.rb /^def app(create=false)$/;" f
|
739
|
+
app lib/rails/engine.rb /^ def app$/;" f
|
740
|
+
app lib/rails/generators/rails/app/app_generator.rb /^ def app$/;" f class:Rails.AppBuilder
|
741
|
+
app lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def app$/;" f class:Rails.PluginBuilder
|
742
|
+
app test/application/configuration_test.rb /^ def app$/;" f class:ApplicationTests.ConfigurationTest
|
743
|
+
app test/application/initializers/i18n_test.rb /^ def app$/;" f class:ApplicationTests.I18nTest
|
744
|
+
app test/application/loading_test.rb /^ def app$/;" f class:LoadingTest
|
745
|
+
app test/application/middleware/remote_ip_test.rb /^ def app$/;" f class:ApplicationTests.RemoteIpTest
|
746
|
+
app test/application/middleware/sendfile_test.rb /^ def app$/;" f class:ApplicationTests.SendfileTest
|
747
|
+
app test/application/middleware_test.rb /^ def app$/;" f class:ApplicationTests.MiddlewareTest
|
748
|
+
app test/application/url_generation_test.rb /^ def app$/;" f class:ApplicationTests.UrlGenerationTest
|
749
|
+
app test/isolation/abstract_unit.rb /^ def app(env = "production")$/;" f class:TestHelpers.Rack
|
750
|
+
app test/railties/engine_test.rb /^ def app$/;" f
|
751
|
+
app test/railties/mounted_engine_test.rb /^ def app$/;" f class:ApplicationTests
|
752
|
+
app test/railties/railtie_test.rb /^ def app$/;" f class:RailtiesTest.RailtieTest
|
753
|
+
app test/railties/shared_tests.rb /^ def app$/;" f class:RailtiesTest.SharedTests
|
754
|
+
app.rb lib/rails/console/app.rb 1;" F
|
755
|
+
app_base.rb lib/rails/generators/app_base.rb 1;" F
|
756
|
+
app_const lib/rails/generators/rails/app/app_generator.rb /^ def app_const$/;" f class:Generators.AppGenerator
|
757
|
+
app_const test/application/generators_test.rb /^ def app_const$/;" f class:ApplicationTests.GeneratorsTest
|
758
|
+
app_const_base lib/rails/generators/rails/app/app_generator.rb /^ def app_const_base$/;" f class:Generators.AppGenerator
|
759
|
+
app_file test/isolation/abstract_unit.rb /^ def app_file(path, contents)$/;" f
|
760
|
+
app_generator.rb lib/rails/generators/rails/app/app_generator.rb 1;" F
|
761
|
+
app_generator_test.rb test/generators/app_generator_test.rb 1;" F
|
762
|
+
app_generators lib/rails/railtie/configuration.rb /^ def app_generators$/;" f class:Rails.Railtie.Configuration
|
763
|
+
app_middleware lib/rails/railtie/configuration.rb /^ def app_middleware$/;" f class:Rails.Railtie.Configuration
|
764
|
+
app_name lib/rails/generators/rails/app/app_generator.rb /^ def app_name$/;" f class:Generators.AppGenerator
|
765
|
+
app_path test/isolation/abstract_unit.rb /^ def app_path(*args)$/;" f class:TestHelpers.Paths
|
766
|
+
app_secret lib/rails/generators/rails/app/app_generator.rb /^ def app_secret$/;" f class:Generators.AppGenerator
|
767
|
+
app_templates_dir lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def app_templates_dir$/;" f class:Generators.PluginNewGenerator
|
768
|
+
application lib/rails.rb /^ def application$/;" f class:Rails
|
769
|
+
application.js lib/rails/generators/rails/app/templates/public/javascripts/application.js 1;" F
|
770
|
+
application.js tmp/app/public/javascripts/application.js 1;" F
|
771
|
+
application.js tmp/app_template/public/javascripts/application.js 1;" F
|
772
|
+
application.rb lib/rails/application.rb 1;" F
|
773
|
+
application.rb lib/rails/commands/application.rb 1;" F
|
774
|
+
application.rb lib/rails/generators/rails/app/templates/config/application.rb 1;" F
|
775
|
+
application.rb lib/rails/generators/rails/plugin_new/templates/rails/application.rb 1;" F
|
776
|
+
application.rb tmp/app/config/application.rb 1;" F
|
777
|
+
application.rb tmp/app_template/config/application.rb 1;" F
|
778
|
+
application= lib/rails.rb /^ def application=(application)$/;" f class:Rails
|
779
|
+
application_controller.rb lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb 1;" F
|
780
|
+
application_controller.rb tmp/app/app/controllers/application_controller.rb 1;" F
|
781
|
+
application_controller.rb tmp/app_template/app/controllers/application_controller.rb 1;" F
|
782
|
+
application_definition lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def application_definition$/;" f class:Generators.PluginNewGenerator
|
783
|
+
application_helper.rb lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb 1;" F
|
784
|
+
application_helper.rb tmp/app/app/helpers/application_helper.rb 1;" F
|
785
|
+
application_helper.rb tmp/app_template/app/helpers/application_helper.rb 1;" F
|
786
|
+
application_name lib/rails/generators/named_base.rb /^ def application_name$/;" f class:Rails.Generators
|
787
|
+
application_route_in_view test/railties/mounted_engine_test.rb /^ def application_route_in_view$/;" f class:ApplicationTests.ApplicationRoutingTest.Blog.PostsController
|
788
|
+
apply_rails_template lib/rails/generators/app_base.rb /^ def apply_rails_template$/;" f class:Rails.Generators.AppBase
|
789
|
+
arguments lib/rails/generators/test_case.rb /^ def self.arguments(array)$/;" F class:Rails.Generators.TestCase
|
790
|
+
assert_body test/isolation/abstract_unit.rb /^ def assert_body(expected, resp)$/;" f class:TestHelpers
|
791
|
+
assert_class_method lib/rails/generators/test_case.rb /^ def assert_class_method(method, content, &block)$/;" f class:Rails.Generators.TestCase
|
792
|
+
assert_fallbacks test/application/initializers/i18n_test.rb /^ def assert_fallbacks(fallbacks)$/;" f class:ApplicationTests.I18nTest
|
793
|
+
assert_field_default_value lib/rails/generators/test_case.rb /^ def assert_field_default_value(attribute_type, value)$/;" f class:Rails.Generators.TestCase
|
794
|
+
assert_field_type lib/rails/generators/test_case.rb /^ def assert_field_type(attribute_type, field_type)$/;" f class:Rails.Generators.TestCase
|
795
|
+
assert_file lib/rails/generators/test_case.rb /^ def assert_file(relative, *contents)$/;" f class:Rails.Generators.TestCase
|
796
|
+
assert_header test/isolation/abstract_unit.rb /^ def assert_header(key, value, resp)$/;" f class:TestHelpers
|
797
|
+
assert_in_load_path test/application/paths_test.rb /^ def assert_in_load_path(*path)$/;" f class:ApplicationTests.PathsTest
|
798
|
+
assert_instance_method lib/rails/generators/test_case.rb /^ def assert_instance_method(method, content)$/;" f class:Rails.Generators.TestCase
|
799
|
+
assert_migration lib/rails/generators/test_case.rb /^ def assert_migration(relative, *contents, &block)$/;" f class:Rails.Generators.TestCase
|
800
|
+
assert_missing test/isolation/abstract_unit.rb /^ def assert_missing(resp)$/;" f class:TestHelpers
|
801
|
+
assert_name test/generators/named_base_test.rb /^ def assert_name(generator, value, method)$/;" f class:NamedBaseTest
|
802
|
+
assert_no_fallbacks test/application/initializers/i18n_test.rb /^ def assert_no_fallbacks$/;" f class:ApplicationTests.I18nTest
|
803
|
+
assert_no_file lib/rails/generators/test_case.rb /^ def assert_no_file(relative)$/;" f class:Rails.Generators.TestCase
|
804
|
+
assert_no_migration lib/rails/generators/test_case.rb /^ def assert_no_migration(relative)$/;" f class:Rails.Generators.TestCase
|
805
|
+
assert_not_in_load_path test/application/paths_test.rb /^ def assert_not_in_load_path(*path)$/;" f class:ApplicationTests.PathsTest
|
806
|
+
assert_path test/application/paths_test.rb /^ def assert_path(paths, *dir)$/;" f class:ApplicationTests.PathsTest
|
807
|
+
assert_property test/rails_info_test.rb /^ def assert_property(property_name, value)$/;" f
|
808
|
+
assert_rails_boots test/application/initializers/check_ruby_version_test.rb /^ def assert_rails_boots$/;" f class:ApplicationTests
|
809
|
+
assert_rails_does_not_boot test/application/initializers/check_ruby_version_test.rb /^ def assert_rails_does_not_boot$/;" f
|
810
|
+
assert_success test/isolation/abstract_unit.rb /^ def assert_success(resp)$/;" f class:TestHelpers
|
811
|
+
assert_utf8 test/application/configuration_test.rb /^ def assert_utf8$/;" f
|
812
|
+
assert_welcome test/isolation/abstract_unit.rb /^ def assert_welcome(resp)$/;" f class:TestHelpers
|
813
|
+
assign_names! lib/rails/generators/named_base.rb /^ def assign_names!(name) #:nodoc:$/;" f class:Rails.Generators
|
814
|
+
author guides/rails_guides/helpers.rb /^ def author(name, nick, image = 'credits_pic_blank.gif', &block)$/;" f class:RailsGuides.Helpers
|
815
|
+
autoload_once lib/rails/paths.rb /^ def autoload_once$/;" f class:Rails.Paths.Root
|
816
|
+
autoload_once_paths lib/rails/engine/configuration.rb /^ def autoload_once_paths$/;" f class:Rails.Engine.Configuration
|
817
|
+
autoload_paths lib/rails/engine/configuration.rb /^ def autoload_paths$/;" f class:Rails.Engine.Configuration
|
818
|
+
autoload_paths lib/rails/paths.rb /^ def autoload_paths$/;" f class:Rails.Paths.Root
|
819
|
+
available_views lib/rails/generators/erb/scaffold/scaffold_generator.rb /^ def available_views$/;" f class:Erb.Generators.ScaffoldGenerator
|
820
|
+
backtrace_cleaner lib/rails.rb /^ def backtrace_cleaner$/;" f class:Rails
|
821
|
+
backtrace_cleaner.rb lib/rails/backtrace_cleaner.rb 1;" F
|
822
|
+
backtrace_cleaner_test.rb test/backtrace_cleaner_test.rb 1;" F
|
823
|
+
backtrace_silencers.rb lib/rails/generators/rails/app/templates/config/initializers/backtrace_silencers.rb 1;" F
|
824
|
+
backtrace_silencers.rb tmp/app_template/config/initializers/backtrace_silencers.rb 1;" F
|
825
|
+
banner lib/rails/generators/base.rb /^ def self.banner$/;" F class:Rails
|
826
|
+
banner lib/rails/generators/rails/app/app_generator.rb /^ def self.banner$/;" F class:Generators.AppGenerator
|
827
|
+
banner lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def self.banner$/;" F class:Generators.PluginNewGenerator
|
828
|
+
bar test/application/routing_test.rb /^ def bar$/;" f class:FooController
|
829
|
+
bar test/railties/engine_test.rb /^ def bar$/;" f class:BarHelper
|
830
|
+
bar test/railties/engine_test.rb /^ def bar$/;" f class:Bukkits
|
831
|
+
base.rb lib/rails/generators/base.rb 1;" F
|
832
|
+
base_name lib/rails/generators/base.rb /^ def self.base_name$/;" F class:Rails
|
833
|
+
base_root lib/rails/generators/base.rb /^ def self.base_root$/;" F class:Rails
|
834
|
+
baz test/application/routing_test.rb /^ def baz$/;" f class:FooController
|
835
|
+
before lib/rails/initializable.rb /^ def before$/;" f class:Rails.Initializable.Initializer
|
836
|
+
before_configuration lib/rails/railtie/configuration.rb /^ def before_configuration(&block)$/;" f class:Rails.Railtie.Configuration
|
837
|
+
before_dispatch lib/rails/rack/logger.rb /^ def before_dispatch(env)$/;" f class:Rails.Rack.Logger
|
838
|
+
before_eager_load lib/rails/railtie/configuration.rb /^ def before_eager_load(&block)$/;" f class:Rails.Railtie.Configuration
|
839
|
+
before_initialize lib/rails/railtie/configuration.rb /^ def before_initialize(&block)$/;" f class:Rails.Railtie.Configuration
|
840
|
+
benchmarker.rb lib/rails/commands/benchmarker.rb 1;" F
|
841
|
+
best_install_method lib/rails/commands/plugin.rb /^ def best_install_method$/;" f class:RailsEnvironment
|
842
|
+
best_practices_test.rb test/application/middleware/best_practices_test.rb 1;" F
|
843
|
+
bind lib/rails/initializable.rb /^ def bind(context)$/;" f class:Rails.Initializable.Initializer
|
844
|
+
boot! test/application/middleware_test.rb /^ def boot!$/;" f
|
845
|
+
boot.rb lib/rails/generators/rails/app/templates/config/boot.rb 1;" F
|
846
|
+
boot.rb lib/rails/generators/rails/plugin_new/templates/rails/boot.rb 1;" F
|
847
|
+
boot.rb tmp/app/config/boot.rb 1;" F
|
848
|
+
boot.rb tmp/app_template/config/boot.rb 1;" F
|
849
|
+
boot_rails test/isolation/abstract_unit.rb /^ def boot_rails$/;" f
|
850
|
+
boot_rails test/railties/plugin_ordering_test.rb /^ def boot_rails$/;" f class:RailtiesTest.PluginOrderingTest
|
851
|
+
boot_rails test/railties/shared_tests.rb /^ def boot_rails$/;" f class:RailtiesTest.SharedTests
|
852
|
+
boot_test.rb test/application/initializers/boot_test.rb 1;" F
|
853
|
+
bootstrap.rb lib/rails/application/bootstrap.rb 1;" F
|
854
|
+
browsing_test.rb lib/rails/generators/rails/app/templates/test/performance/browsing_test.rb 1;" F
|
855
|
+
browsing_test.rb tmp/app/test/performance/browsing_test.rb 1;" F
|
856
|
+
browsing_test.rb tmp/app_template/test/performance/browsing_test.rb 1;" F
|
857
|
+
build lib/rails/generators/active_model.rb /^ def self.build(klass, params=nil)$/;" F class:Rails.Generators.ActiveModel
|
858
|
+
build lib/rails/generators/app_base.rb /^ def build(meth, *args)$/;" f class:Rails.Generators.AppBase
|
859
|
+
build_app test/isolation/abstract_unit.rb /^ def build_app(options = {})$/;" f class:Generation
|
860
|
+
builder lib/rails/generators/app_base.rb /^ def builder$/;" f class:Rails.Generators.AppBase
|
861
|
+
builder_class test/generators/app_generator_test.rb /^ def builder_class$/;" f class:CustomAppGeneratorTest
|
862
|
+
builder_class test/generators/plugin_new_generator_test.rb /^ def builder_class$/;" f class:CustomPluginGeneratorTest
|
863
|
+
builders_dir test/generators/app_generator_test.rb /^ def builders_dir$/;" f class:CustomAppGeneratorTest
|
864
|
+
builders_dir test/generators/plugin_new_generator_test.rb /^ def builders_dir$/;" f class:CustomPluginGeneratorTest
|
865
|
+
bukkits test/railties/shared_tests.rb /^ def bukkits$/;" f class:RailtiesTest.test_adds_helpers_to_controller_views.BukkitHelper
|
866
|
+
bundle_if_dev_or_edge lib/rails/generators/app_base.rb /^ def bundle_if_dev_or_edge$/;" f class:Rails.Generators
|
867
|
+
bundler? guides/rails_guides.rb /^def bundler?$/;" f
|
868
|
+
cache lib/rails.rb /^ def cache$/;" f class:Rails
|
869
|
+
cache_store lib/rails/application/configuration.rb /^ def cache_store$/;" f class:Rails.Application.Configuration
|
870
|
+
cache_test.rb test/application/middleware/cache_test.rb 1;" F
|
871
|
+
calculate_code lib/rails/code_statistics.rb /^ def calculate_code$/;" f class:CodeStatistics
|
872
|
+
calculate_directory_statistics lib/rails/code_statistics.rb /^ def calculate_directory_statistics(directory, pattern = \/.*\\.rb$\/)$/;" f class:CodeStatistics
|
873
|
+
calculate_statistics lib/rails/code_statistics.rb /^ def calculate_statistics$/;" f class:CodeStatistics
|
874
|
+
calculate_tests lib/rails/code_statistics.rb /^ def calculate_tests$/;" f class:CodeStatistics
|
875
|
+
calculate_total lib/rails/code_statistics.rb /^ def calculate_total$/;" f class:CodeStatistics
|
876
|
+
call lib/rails/engine.rb /^ def call(env)$/;" f
|
877
|
+
call lib/rails/rack/debugger.rb /^ def call(env)$/;" f class:Rails.Rack.Debugger
|
878
|
+
call lib/rails/rack/log_tailer.rb /^ def call(env)$/;" f class:Rails.Rack.LogTailer
|
879
|
+
call lib/rails/rack/logger.rb /^ def call(env)$/;" f class:Rails.Rack.Logger
|
880
|
+
call test/application/middleware_test.rb /^ def call(env)$/;" f
|
881
|
+
call test/railties/engine_test.rb /^ def call(env)$/;" f class:Upcaser
|
882
|
+
call test/railties/shared_tests.rb /^ def call(env)$/;" f class:RailtiesTest.test_midleware_referenced_in_configuration.Bukkits
|
883
|
+
call test/railties/shared_tests.rb /^ def self.call(env)$/;" F class:RailtiesTest.test_routes_are_added_to_router.Sprokkit
|
884
|
+
camelized lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def camelized$/;" f class:Generators.PluginNewGenerator
|
885
|
+
capify! lib/rails/generators/actions.rb /^ def capify!$/;" f class:Rails.Generators
|
886
|
+
check_class_collision lib/rails/generators/named_base.rb /^ def self.check_class_collision(options={})$/;" F class:Rails.Generators
|
887
|
+
check_fragment_identifiers guides/rails_guides/generator.rb /^ def check_fragment_identifiers(html, anchors)$/;" f
|
888
|
+
check_ruby_version_test.rb test/application/initializers/check_ruby_version_test.rb 1;" F
|
889
|
+
child.id lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var child = {$/;" p
|
890
|
+
child.id tmp/app/public/javascripts/dragdrop.js /^ var child = {$/;" p
|
891
|
+
child.id tmp/app_template/public/javascripts/dragdrop.js /^ var child = {$/;" p
|
892
|
+
children lib/rails/paths.rb /^ def children$/;" f class:Rails.Paths.Path
|
893
|
+
class_collisions lib/rails/generators/base.rb /^ def class_collisions(*class_names) #:nodoc:$/;" f class:Rails
|
894
|
+
class_name lib/rails/generators/named_base.rb /^ def class_name$/;" f class:Rails.Generators
|
895
|
+
class_option lib/rails/generators/base.rb /^ def self.class_option(name, options={}) #:nodoc:$/;" F class:Rails
|
896
|
+
class_path lib/rails/generators/named_base.rb /^ def class_path$/;" f class:Rails.Generators
|
897
|
+
clear! lib/rails/application/routes_reloader.rb /^ def clear!$/;" f class:Rails.Application.RoutesReloader
|
898
|
+
cli.rb lib/rails/cli.rb 1;" F
|
899
|
+
clone lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function clone(object) {$/;" f
|
900
|
+
clone tmp/app/public/javascripts/prototype.js /^ function clone(object) {$/;" f
|
901
|
+
clone tmp/app_template/public/javascripts/prototype.js /^ function clone(object) {$/;" f
|
902
|
+
code guides/rails_guides/helpers.rb /^ def code(&block)$/;" f class:RailsGuides.Helpers
|
903
|
+
code guides/rails_guides/textile_extensions.rb /^ def code(body)$/;" f class:RailsGuides.TextileExtensions
|
904
|
+
code_statistics.rb lib/rails/code_statistics.rb 1;" F
|
905
|
+
colorize_logging lib/rails/application/configuration.rb /^ def colorize_logging$/;" f class:Rails.Application.Configuration
|
906
|
+
colorize_logging= lib/rails/application/configuration.rb /^ def colorize_logging=(val)$/;" f class:Rails.Application.Configuration
|
907
|
+
commands.rb lib/rails/commands.rb 1;" F
|
908
|
+
compiled_asset_path lib/rails/application/configuration.rb /^ def compiled_asset_path$/;" f class:Rails.Application.Configuration
|
909
|
+
compiled_asset_path lib/rails/engine/configuration.rb /^ def compiled_asset_path$/;" f class:Rails.Engine.Configuration
|
910
|
+
config lib/rails/application.rb /^ def config$/;" f class:Rails
|
911
|
+
config lib/rails/engine.rb /^ def config$/;" f
|
912
|
+
config lib/rails/generators/rails/app/app_generator.rb /^ def config$/;" f class:Rails.AppBuilder
|
913
|
+
config lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def config$/;" f class:Rails.PluginBuilder
|
914
|
+
config lib/rails/plugin.rb /^ def config$/;" f class:Rails
|
915
|
+
config lib/rails/railtie.rb /^ def config$/;" f class:Rails
|
916
|
+
configru lib/rails/generators/rails/app/app_generator.rb /^ def configru$/;" f class:Rails.AppBuilder
|
917
|
+
configurable.rb lib/rails/railtie/configurable.rb 1;" F
|
918
|
+
configuration lib/rails.rb /^ def configuration$/;" f class:Rails
|
919
|
+
configuration.rb lib/rails/application/configuration.rb 1;" F
|
920
|
+
configuration.rb lib/rails/configuration.rb 1;" F
|
921
|
+
configuration.rb lib/rails/engine/configuration.rb 1;" F
|
922
|
+
configuration.rb lib/rails/railtie/configuration.rb 1;" F
|
923
|
+
configuration_test.rb test/application/configuration_test.rb 1;" F
|
924
|
+
configure lib/rails/generators.rb /^ def self.configure!(config = Rails.application.config.generators) #:nodoc:$/;" F class:Rails.Generators
|
925
|
+
configure lib/rails/railtie/configurable.rb /^ def configure(&block)$/;" f class:Rails.Railtie.Configurable.ClassMethods
|
926
|
+
consider_all_requests_local? lib/rails/info_controller.rb /^ def consider_all_requests_local?$/;" f class:Rails
|
927
|
+
console lib/rails/railtie.rb /^ def console(&blk)$/;" f class:Rails.Railtie
|
928
|
+
console.rb lib/rails/commands/console.rb 1;" F
|
929
|
+
console_test.rb test/application/console_test.rb 1;" F
|
930
|
+
controller lib/rails/console/helpers.rb /^def controller$/;" f
|
931
|
+
controller test/isolation/abstract_unit.rb /^ def controller(name, contents)$/;" f
|
932
|
+
controller.rb lib/rails/generators/rails/controller/templates/controller.rb 1;" F
|
933
|
+
controller.rb lib/rails/generators/rails/scaffold_controller/templates/controller.rb 1;" F
|
934
|
+
controller_class_name lib/rails/generators/resource_helpers.rb /^ def controller_class_name$/;" f class:Rails.Generators.ResourceHelpers
|
935
|
+
controller_class_path lib/rails/generators/resource_helpers.rb /^ def controller_class_path$/;" f class:Rails.Generators.ResourceHelpers
|
936
|
+
controller_file_name lib/rails/generators/resource_helpers.rb /^ def controller_file_name$/;" f class:Rails.Generators.ResourceHelpers
|
937
|
+
controller_file_path lib/rails/generators/resource_helpers.rb /^ def controller_file_path$/;" f class:Rails.Generators.ResourceHelpers
|
938
|
+
controller_generator.rb lib/rails/generators/erb/controller/controller_generator.rb 1;" F
|
939
|
+
controller_generator.rb lib/rails/generators/rails/controller/controller_generator.rb 1;" F
|
940
|
+
controller_generator.rb lib/rails/generators/test_unit/controller/controller_generator.rb 1;" F
|
941
|
+
controller_generator_test.rb test/generators/controller_generator_test.rb 1;" F
|
942
|
+
controller_i18n_scope lib/rails/generators/resource_helpers.rb /^ def controller_i18n_scope$/;" f class:Rails.Generators.ResourceHelpers
|
943
|
+
controls.js lib/rails/generators/rails/app/templates/public/javascripts/controls.js 1;" F
|
944
|
+
controls.js tmp/app/public/javascripts/controls.js 1;" F
|
945
|
+
controls.js tmp/app_template/public/javascripts/controls.js 1;" F
|
946
|
+
copy_app test/application/configuration_test.rb /^ def copy_app$/;" f class:ApplicationTests.ConfigurationTest
|
947
|
+
copy_assets guides/rails_guides/generator.rb /^ def copy_assets$/;" f class:RailsGuides.Generator
|
948
|
+
copy_routes test/generators/generators_test_helper.rb /^ def copy_routes$/;" f class:GeneratorsTestHelper
|
949
|
+
copy_stylesheets_file lib/rails/generators/rails/stylesheets/stylesheets_generator.rb /^ def copy_stylesheets_file$/;" f class:Rails.Generators.StylesheetsGenerator
|
950
|
+
copy_view_files lib/rails/generators/erb/controller/controller_generator.rb /^ def copy_view_files$/;" f class:Erb.Generators.ControllerGenerator
|
951
|
+
copy_view_files lib/rails/generators/erb/scaffold/scaffold_generator.rb /^ def copy_view_files$/;" f class:Erb.Generators.ScaffoldGenerator
|
952
|
+
count test/application/runner_test.rb /^ def self.count$/;" F class:ApplicationTests.RunnerTest.setup.User
|
953
|
+
create lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def create$/;" f
|
954
|
+
create_active_record_files lib/rails/generators/rails/app/app_generator.rb /^ def create_active_record_files$/;" f class:Generators.AppGenerator
|
955
|
+
create_app_files lib/rails/generators/rails/app/app_generator.rb /^ def create_app_files$/;" f class:Generators.AppGenerator
|
956
|
+
create_app_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_app_files$/;" f class:Generators.PluginNewGenerator
|
957
|
+
create_boot_file lib/rails/generators/rails/app/app_generator.rb /^ def create_boot_file$/;" f class:Generators.AppGenerator
|
958
|
+
create_config_files lib/rails/generators/rails/app/app_generator.rb /^ def create_config_files$/;" f class:Generators.AppGenerator
|
959
|
+
create_config_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_config_files$/;" f class:Generators.PluginNewGenerator
|
960
|
+
create_controller_files lib/rails/generators/rails/controller/controller_generator.rb /^ def create_controller_files$/;" f class:Rails.Generators.ControllerGenerator
|
961
|
+
create_controller_files lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb /^ def create_controller_files$/;" f class:Rails.Generators.ScaffoldControllerGenerator
|
962
|
+
create_db_files lib/rails/generators/rails/app/app_generator.rb /^ def create_db_files$/;" f class:Generators.AppGenerator
|
963
|
+
create_doc_files lib/rails/generators/rails/app/app_generator.rb /^ def create_doc_files$/;" f class:Generators.AppGenerator
|
964
|
+
create_dummy_app lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_dummy_app(path = nil)$/;" f class:Generators.PluginNewGenerator
|
965
|
+
create_fixture_file lib/rails/generators/test_unit/model/model_generator.rb /^ def create_fixture_file$/;" f class:TestUnit.Generators.ModelGenerator
|
966
|
+
create_fixtures lib/rails/test_help.rb /^ def create_fixtures(*table_names, &block)$/;" f
|
967
|
+
create_generated_attribute lib/rails/generators/test_case.rb /^ def create_generated_attribute(attribute_type, name = 'test')$/;" f class:Rails.Generators.TestCase
|
968
|
+
create_generator_files lib/rails/generators/rails/generator/generator_generator.rb /^ def create_generator_files$/;" f class:Rails.Generators.GeneratorGenerator
|
969
|
+
create_helper_files lib/rails/generators/rails/helper/helper_generator.rb /^ def create_helper_files$/;" f class:Rails.Generators.HelperGenerator
|
970
|
+
create_helper_files lib/rails/generators/test_unit/helper/helper_generator.rb /^ def create_helper_files$/;" f class:TestUnit.Generators.HelperGenerator
|
971
|
+
create_javascript_files lib/rails/generators/rails/app/app_generator.rb /^ def create_javascript_files$/;" f class:Generators.AppGenerator
|
972
|
+
create_javascript_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_javascript_files$/;" f class:Generators.PluginNewGenerator
|
973
|
+
create_lib_files lib/rails/generators/rails/app/app_generator.rb /^ def create_lib_files$/;" f class:Generators.AppGenerator
|
974
|
+
create_lib_files lib/rails/generators/rails/plugin/plugin_generator.rb /^ def create_lib_files$/;" f class:Rails.Generators.PluginGenerator
|
975
|
+
create_lib_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_lib_files$/;" f class:Generators.PluginNewGenerator
|
976
|
+
create_log_files lib/rails/generators/rails/app/app_generator.rb /^ def create_log_files$/;" f class:Generators.AppGenerator
|
977
|
+
create_output_dir_if_needed guides/rails_guides/generator.rb /^ def create_output_dir_if_needed$/;" f class:RailsGuides.Generator
|
978
|
+
create_public_files lib/rails/generators/rails/app/app_generator.rb /^ def create_public_files$/;" f class:Generators.AppGenerator
|
979
|
+
create_public_image_files lib/rails/generators/rails/app/app_generator.rb /^ def create_public_image_files$/;" f class:Generators.AppGenerator
|
980
|
+
create_public_stylesheets_files lib/rails/generators/rails/app/app_generator.rb /^ def create_public_stylesheets_files$/;" f class:Generators.AppGenerator
|
981
|
+
create_public_stylesheets_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_public_stylesheets_files$/;" f class:Generators.PluginNewGenerator
|
982
|
+
create_root lib/rails/generators/app_base.rb /^ def create_root$/;" f class:Rails.Generators.AppBase
|
983
|
+
create_root_files lib/rails/generators/rails/app/app_generator.rb /^ def create_root_files$/;" f class:Generators.AppGenerator
|
984
|
+
create_root_files lib/rails/generators/rails/plugin/plugin_generator.rb /^ def create_root_files$/;" f class:Rails.Generators.PluginGenerator
|
985
|
+
create_root_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_root_files$/;" f class:Generators.PluginNewGenerator
|
986
|
+
create_root_folder lib/rails/generators/erb/scaffold/scaffold_generator.rb /^ def create_root_folder$/;" f class:Erb.Generators.ScaffoldGenerator
|
987
|
+
create_script_files lib/rails/generators/rails/app/app_generator.rb /^ def create_script_files$/;" f class:Generators.AppGenerator
|
988
|
+
create_script_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_script_files$/;" f class:Generators.PluginNewGenerator
|
989
|
+
create_tasks_files lib/rails/generators/rails/plugin/plugin_generator.rb /^ def create_tasks_files$/;" f class:Rails.Generators.PluginGenerator
|
990
|
+
create_test_dummy_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_test_dummy_files$/;" f class:Generators.PluginNewGenerator
|
991
|
+
create_test_dummy_template.rb test/fixtures/lib/create_test_dummy_template.rb 1;" F
|
992
|
+
create_test_file lib/rails/generators/test_unit/model/model_generator.rb /^ def create_test_file$/;" f class:TestUnit.Generators.ModelGenerator
|
993
|
+
create_test_files lib/rails/generators/rails/app/app_generator.rb /^ def create_test_files$/;" f class:Generators.AppGenerator
|
994
|
+
create_test_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_test_files$/;" f class:Generators.PluginNewGenerator
|
995
|
+
create_test_files lib/rails/generators/test_unit/controller/controller_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.ControllerGenerator
|
996
|
+
create_test_files lib/rails/generators/test_unit/integration/integration_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.IntegrationGenerator
|
997
|
+
create_test_files lib/rails/generators/test_unit/mailer/mailer_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.MailerGenerator
|
998
|
+
create_test_files lib/rails/generators/test_unit/observer/observer_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.ObserverGenerator
|
999
|
+
create_test_files lib/rails/generators/test_unit/performance/performance_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.PerformanceGenerator
|
1000
|
+
create_test_files lib/rails/generators/test_unit/plugin/plugin_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.PluginGenerator
|
1001
|
+
create_test_files lib/rails/generators/test_unit/scaffold/scaffold_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.ScaffoldGenerator
|
1002
|
+
create_tmp_files lib/rails/generators/rails/app/app_generator.rb /^ def create_tmp_files$/;" f class:Generators.AppGenerator
|
1003
|
+
create_vendor_files lib/rails/generators/rails/app/app_generator.rb /^ def create_vendor_files$/;" f class:Generators.AppGenerator
|
1004
|
+
current_migration_number lib/rails/generators/migration.rb /^ def current_migration_number(dirname) #:nodoc:$/;" f class:Rails.Generators.Migration.ClassMethods
|
1005
|
+
database_configuration lib/rails/application/configuration.rb /^ def database_configuration$/;" f class:Rails.Application.Configuration
|
1006
|
+
database_gemfile_entry lib/rails/generators/app_base.rb /^ def database_gemfile_entry$/;" f class:Rails.Generators
|
1007
|
+
database_yml lib/rails/generators/rails/app/app_generator.rb /^ def database_yml$/;" f class:Rails
|
1008
|
+
db lib/rails/generators/rails/app/app_generator.rb /^ def db$/;" f class:Rails
|
1009
|
+
dbconsole.rb lib/rails/commands/dbconsole.rb 1;" F
|
1010
|
+
debugger.rb lib/rails/rack/debugger.rb 1;" F
|
1011
|
+
default lib/rails/commands/plugin.rb /^ def self.default$/;" F class:RailsEnvironment
|
1012
|
+
default lib/rails/commands/plugin.rb /^ def self.default=(rails_env)$/;" F class:RailsEnvironment
|
1013
|
+
default lib/rails/generators/generated_attribute.rb /^ def default$/;" f class:Rails.Generators
|
1014
|
+
default_aliases_for_option lib/rails/generators/base.rb /^ def self.default_aliases_for_option(name, options)$/;" F class:Rails
|
1015
|
+
default_asset_path lib/rails/application.rb /^ def default_asset_path$/;" f class:Rails
|
1016
|
+
default_asset_path lib/rails/engine.rb /^ def default_asset_path$/;" f
|
1017
|
+
default_files test/generators/app_generator_test.rb /^ def default_files$/;" f class:AppGeneratorTest
|
1018
|
+
default_files test/generators/app_generator_test.rb /^ def default_files$/;" f class:CustomAppGeneratorTest
|
1019
|
+
default_files test/generators/plugin_new_generator_test.rb /^ def default_files$/;" f class:CustomPluginGeneratorTest
|
1020
|
+
default_files test/generators/plugin_new_generator_test.rb /^ def default_files$/;" f class:PluginNewGeneratorTest
|
1021
|
+
default_for_option lib/rails/generators/base.rb /^ def self.default_for_option(config, name, options, default)$/;" F class:Rails
|
1022
|
+
default_middleware_stack lib/rails/application.rb /^ def default_middleware_stack$/;" f class:Rails
|
1023
|
+
default_middleware_stack lib/rails/engine.rb /^ def default_middleware_stack$/;" f
|
1024
|
+
default_options lib/rails/commands/server.rb /^ def default_options$/;" f class:Rails.Server
|
1025
|
+
default_source_root lib/rails/generators/base.rb /^ def self.default_source_root$/;" F class:Rails
|
1026
|
+
default_value_for_option lib/rails/generators/base.rb /^ def self.default_value_for_option(name, options)$/;" F class:Rails
|
1027
|
+
defined_app_const_base lib/rails/generators/rails/app/app_generator.rb /^ def defined_app_const_base$/;" f class:Generators.AppGenerator
|
1028
|
+
defined_app_name lib/rails/generators/rails/app/app_generator.rb /^ def defined_app_name$/;" f class:Generators.AppGenerator
|
1029
|
+
delete lib/rails/configuration.rb /^ def delete(*args, &block)$/;" f class:Rails.Configuration.MiddlewareStackProxy
|
1030
|
+
delete test/isolation/abstract_unit.rb /^ def delete(file)$/;" f class:Bukkit
|
1031
|
+
desc lib/rails/generators/base.rb /^ def self.desc(description=nil)$/;" F class:Rails.Generators.Base
|
1032
|
+
destination lib/rails/generators/test_case.rb /^ def self.destination(path)$/;" F class:Rails.Generators.TestCase
|
1033
|
+
destination_root_is_set? lib/rails/generators/test_case.rb /^ def destination_root_is_set? #:nodoc:$/;" f class:Rails.Generators.TestCase
|
1034
|
+
destroy lib/rails/generators/active_model.rb /^ def destroy$/;" f class:Rails.Generators.ActiveModel
|
1035
|
+
destroy lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def destroy$/;" f
|
1036
|
+
destroy.rb lib/rails/commands/destroy.rb 1;" F
|
1037
|
+
determine_install_method lib/rails/commands/plugin.rb /^ def determine_install_method$/;" f class:Commands.Install
|
1038
|
+
dev_or_edge? lib/rails/generators/app_base.rb /^ def dev_or_edge?$/;" f class:Rails.Generators
|
1039
|
+
development.rb tmp/app_template/config/environments/development.rb 1;" F
|
1040
|
+
disableFormElements lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function disableFormElements(form) {$/;" f
|
1041
|
+
disableFormElements tmp/app/public/javascripts/rails.js /^ function disableFormElements(form) {$/;" f
|
1042
|
+
disableFormElements tmp/app_template/public/javascripts/rails.js /^ function disableFormElements(form) {$/;" f
|
1043
|
+
display lib/rails/source_annotation_extractor.rb /^ def display(results, options={})$/;" f
|
1044
|
+
distance guides/rails_guides/levenshtein.rb /^ def self.distance(s1, s2)$/;" F class:RailsGuides.Levenshtein
|
1045
|
+
doc lib/rails/generators/rails/app/app_generator.rb /^ def doc$/;" f class:Rails
|
1046
|
+
download lib/rails/commands/plugin.rb /^ def download(link)$/;" f class:RecursiveHTTPFetcher
|
1047
|
+
dragdrop.js lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js 1;" F
|
1048
|
+
dragdrop.js tmp/app/public/javascripts/dragdrop.js 1;" F
|
1049
|
+
dragdrop.js tmp/app_template/public/javascripts/dragdrop.js 1;" F
|
1050
|
+
drop lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var drop, affected = [];$/;" v
|
1051
|
+
drop tmp/app/public/javascripts/dragdrop.js /^ var drop, affected = [];$/;" v
|
1052
|
+
drop tmp/app_template/public/javascripts/dragdrop.js /^ var drop, affected = [];$/;" v
|
1053
|
+
droponOptions lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var droponOptions = Sortable.options(dropon);$/;" v
|
1054
|
+
droponOptions tmp/app/public/javascripts/dragdrop.js /^ var droponOptions = Sortable.options(dropon);$/;" v
|
1055
|
+
droponOptions tmp/app_template/public/javascripts/dragdrop.js /^ var droponOptions = Sortable.options(dropon);$/;" v
|
1056
|
+
dummy_path lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def dummy_path(path = nil)$/;" f class:Generators.PluginNewGenerator
|
1057
|
+
eager_load lib/rails/paths.rb /^ def eager_load$/;" f class:Rails.Paths.Root
|
1058
|
+
eager_load! lib/rails/application.rb /^ def eager_load! #:nodoc:$/;" f class:Rails
|
1059
|
+
eager_load! lib/rails/engine.rb /^ def eager_load!$/;" f class:Rails
|
1060
|
+
eager_load! lib/rails/railtie.rb /^ def eager_load!$/;" f class:Rails
|
1061
|
+
eager_load_paths lib/rails/engine/configuration.rb /^ def eager_load_paths$/;" f class:Rails.Engine.Configuration
|
1062
|
+
edit lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def edit$/;" f
|
1063
|
+
effects.js lib/rails/generators/rails/app/templates/public/javascripts/effects.js 1;" F
|
1064
|
+
effects.js tmp/app/public/javascripts/effects.js 1;" F
|
1065
|
+
effects.js tmp/app_template/public/javascripts/effects.js 1;" F
|
1066
|
+
empty_builder.rb test/fixtures/lib/app_builders/empty_builder.rb 1;" F
|
1067
|
+
empty_builder.rb test/fixtures/lib/plugin_builders/empty_builder.rb 1;" F
|
1068
|
+
empty_directory_with_gitkeep lib/rails/generators/app_base.rb /^ def empty_directory_with_gitkeep(destination, config = {})$/;" f class:Rails.Generators
|
1069
|
+
enableFormElements lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function enableFormElements(form) {$/;" f
|
1070
|
+
enableFormElements tmp/app/public/javascripts/rails.js /^ function enableFormElements(form) {$/;" f
|
1071
|
+
enableFormElements tmp/app_template/public/javascripts/rails.js /^ function enableFormElements(form) {$/;" f
|
1072
|
+
encoding= lib/rails/application/configuration.rb /^ def encoding=(value)$/;" f class:Rails.Application.Configuration
|
1073
|
+
endpoint lib/rails/engine.rb /^ def endpoint(endpoint = nil)$/;" f class:Rails.Engine
|
1074
|
+
endpoint lib/rails/engine.rb /^ def endpoint$/;" f
|
1075
|
+
engine test/isolation/abstract_unit.rb /^ def engine(name)$/;" f
|
1076
|
+
engine.rb lib/rails/engine.rb 1;" F
|
1077
|
+
engine.rb lib/rails/generators/rails/plugin_new/templates/lib/%name%/engine.rb 1;" F
|
1078
|
+
engine_route test/railties/mounted_engine_test.rb /^ def engine_route$/;" f class:ApplicationTests.ApplicationRoutingTest.ApplicationGeneratingController
|
1079
|
+
engine_route_in_view test/railties/mounted_engine_test.rb /^ def engine_route_in_view$/;" f class:ApplicationTests.ApplicationRoutingTest.ApplicationGeneratingController
|
1080
|
+
engine_test.rb test/railties/engine_test.rb 1;" F
|
1081
|
+
engines lib/rails/engine/railties.rb /^ def self.engines$/;" F class:Rails.Engine.Railties
|
1082
|
+
ensure_current_path lib/rails/generators/test_case.rb /^ def ensure_current_path #:nodoc:$/;" f class:Rails.Generators.TestCase
|
1083
|
+
enumerate lib/rails/source_annotation_extractor.rb /^ def self.enumerate(tag, options={})$/;" F class:SourceAnnotationExtractor
|
1084
|
+
env lib/rails.rb /^ def env$/;" f class:Rails
|
1085
|
+
env= lib/rails.rb /^ def env=(environment)$/;" f class:Rails
|
1086
|
+
env_config lib/rails/application.rb /^ def env_config$/;" f class:Rails
|
1087
|
+
env_config lib/rails/engine.rb /^ def env_config$/;" f
|
1088
|
+
environment lib/rails/generators/actions.rb /^ def environment(data=nil, options={}, &block)$/;" f class:Rails.Generators.Actions
|
1089
|
+
environment.rb lib/rails/generators/rails/app/templates/config/environment.rb 1;" F
|
1090
|
+
environment.rb tmp/app/config/environment.rb 1;" F
|
1091
|
+
environment.rb tmp/app_template/config/environment.rb 1;" F
|
1092
|
+
environment= lib/rails/commands/plugin.rb /^ def environment=(value)$/;" f class:Commands.Plugin
|
1093
|
+
erb.rb lib/rails/generators/erb.rb 1;" F
|
1094
|
+
errors lib/rails/generators/active_model.rb /^ def errors$/;" f class:Rails.Generators.ActiveModel
|
1095
|
+
exec_script_rails lib/rails/script_rails_loader.rb /^ def self.exec_script_rails!$/;" F class:Rails.ScriptRailsLoader
|
1096
|
+
existent lib/rails/paths.rb /^ def existent$/;" f class:Rails
|
1097
|
+
expanded lib/rails/paths.rb /^ def expanded$/;" f class:Rails
|
1098
|
+
expires_etag test/application/middleware/cache_test.rb /^ def expires_etag$/;" f class:ApplicationTests.RoutingTest.simple_controller.ExpiresController
|
1099
|
+
expires_header test/application/middleware/cache_test.rb /^ def expires_header$/;" f class:ApplicationTests.RoutingTest.simple_controller.ExpiresController
|
1100
|
+
expires_last_modified test/application/middleware/cache_test.rb /^ def expires_last_modified$/;" f class:ApplicationTests.RoutingTest.simple_controller.ExpiresController
|
1101
|
+
extend lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function extend(destination, source) {$/;" f
|
1102
|
+
extend tmp/app/public/javascripts/prototype.js /^ function extend(destination, source) {$/;" f
|
1103
|
+
extend tmp/app_template/public/javascripts/prototype.js /^ function extend(destination, source) {$/;" f
|
1104
|
+
externals lib/rails/commands/plugin.rb /^ def externals$/;" f class:RailsEnvironment
|
1105
|
+
externals= lib/rails/commands/plugin.rb /^ def externals=(items)$/;" f class:RailsEnvironment
|
1106
|
+
extify lib/rails/generators/actions.rb /^ def extify(name)$/;" f class:Rails.Generators.route
|
1107
|
+
extract_anchors guides/rails_guides/generator.rb /^ def extract_anchors(html)$/;" f class:RailsGuides
|
1108
|
+
extract_annotations_from lib/rails/source_annotation_extractor.rb /^ def extract_annotations_from(file, pattern)$/;" f
|
1109
|
+
extract_body test/isolation/abstract_unit.rb /^ def extract_body(response)$/;" f class:TestHelpers.Rack
|
1110
|
+
fallbacks lib/rails/generators.rb /^ def self.fallbacks$/;" F class:Rails.Generators
|
1111
|
+
fetch lib/rails/commands/plugin.rb /^ def fetch(links = @urls_to_fetch)$/;" f
|
1112
|
+
fetch_dir lib/rails/commands/plugin.rb /^ def fetch_dir(url)$/;" f
|
1113
|
+
field_type lib/rails/generators/generated_attribute.rb /^ def field_type$/;" f class:Rails.Generators.GeneratedAttribute
|
1114
|
+
file lib/rails/generators/rails/app/app_generator.rb /^ def file(*args, &block)$/;" f class:Generators.AppGenerator
|
1115
|
+
file_path lib/rails/generators/named_base.rb /^ def file_path$/;" f class:Rails.Generators
|
1116
|
+
filename_with_extensions lib/rails/generators/erb.rb /^ def filename_with_extensions(name)$/;" f class:Erb.Generators.Base
|
1117
|
+
filter_backtrace_with_cleaning lib/rails/backtrace_cleaner.rb /^ def filter_backtrace_with_cleaning(backtrace, prefix=nil)$/;" f class:Rails.BacktraceFilterForTestUnit
|
1118
|
+
filter_by lib/rails/paths.rb /^ def filter_by(constraint)$/;" f class:Rails.Paths.Root
|
1119
|
+
finalize! lib/rails/application/routes_reloader.rb /^ def finalize!$/;" f class:Rails.Application.RoutesReloader
|
1120
|
+
find lib/rails/commands/plugin.rb /^ def self.find(dir=nil)$/;" F class:RailsEnvironment
|
1121
|
+
find lib/rails/commands/plugin.rb /^ def self.find(name)$/;" F class:Plugin
|
1122
|
+
find lib/rails/engine.rb /^ def find(path)$/;" f class:Rails.Engine
|
1123
|
+
find lib/rails/generators/active_model.rb /^ def self.find(klass, params=nil)$/;" F class:Rails.Generators.ActiveModel
|
1124
|
+
find lib/rails/source_annotation_extractor.rb /^ def find(dirs=%w(app lib test))$/;" f class:SourceAnnotationExtractor
|
1125
|
+
find_by_namespace lib/rails/generators.rb /^ def self.find_by_namespace(name, base=nil, context=nil) #:nodoc:$/;" F class:Rails.Generators
|
1126
|
+
find_cmd lib/rails/commands/dbconsole.rb /^ def find_cmd(*commands)$/;" f
|
1127
|
+
find_in lib/rails/source_annotation_extractor.rb /^ def find_in(dir)$/;" f class:SourceAnnotationExtractor
|
1128
|
+
find_root_with_flag lib/rails/engine.rb /^ def find_root_with_flag(flag, default=nil)$/;" f
|
1129
|
+
finish_template lib/rails/generators/rails/app/app_generator.rb /^ def finish_template$/;" f class:Generators.AppGenerator
|
1130
|
+
finish_template lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def finish_template$/;" f class:Generators.PluginNewGenerator
|
1131
|
+
finisher.rb lib/rails/application/finisher.rb 1;" F
|
1132
|
+
first lib/rails/paths.rb /^ def first$/;" f class:Rails.Paths.Path
|
1133
|
+
fixjour_generator.rb test/fixtures/lib/generators/active_record/fixjour_generator.rb 1;" F
|
1134
|
+
fixjour_generator.rb test/fixtures/lib/generators/fixjour_generator.rb 1;" F
|
1135
|
+
foo_or_bar? test/application/routing_test.rb /^ def foo_or_bar?$/;" f class:BarHelper
|
1136
|
+
foobar_generator.rb test/fixtures/lib/rails/generators/foobar/foobar_generator.rb 1;" F
|
1137
|
+
format lib/rails/generators/erb.rb /^ def format$/;" f class:Erb.Generators.Base
|
1138
|
+
format lib/rails/generators/erb/mailer/mailer_generator.rb /^ def format$/;" f class:Erb.Generators.MailerGenerator
|
1139
|
+
framework_path test/isolation/abstract_unit.rb /^ def framework_path$/;" f class:TestHelpers.Paths
|
1140
|
+
framework_version lib/rails/info.rb /^ def framework_version(framework)$/;" f class:Rails
|
1141
|
+
frameworks lib/rails/info.rb /^ def frameworks$/;" f class:Rails
|
1142
|
+
frameworks_test.rb test/application/initializers/frameworks_test.rb 1;" F
|
1143
|
+
from_app test/railties/engine_test.rb /^ def from_app$/;" f class:Bukkits
|
1144
|
+
from_app_helper test/application/initializers/frameworks_test.rb /^ def from_app_helper$/;" f class:ApplicationHelper
|
1145
|
+
from_bar_helper test/application/initializers/frameworks_test.rb /^ def from_bar_helper$/;" f class:BarHelper
|
1146
|
+
from_foo_helper test/application/initializers/frameworks_test.rb /^ def from_foo_helper$/;" f class:FooHelper
|
1147
|
+
full? lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def full?$/;" f class:Generators.PluginNewGenerator
|
1148
|
+
functional_test.rb lib/rails/generators/test_unit/controller/templates/functional_test.rb 1;" F
|
1149
|
+
functional_test.rb lib/rails/generators/test_unit/mailer/templates/functional_test.rb 1;" F
|
1150
|
+
functional_test.rb lib/rails/generators/test_unit/scaffold/templates/functional_test.rb 1;" F
|
1151
|
+
gem lib/rails/generators/actions.rb /^ def gem(*args)$/;" f class:Rails.Generators.Actions
|
1152
|
+
gem_for_database lib/rails/generators/app_base.rb /^ def gem_for_database$/;" f class:Rails.Generators
|
1153
|
+
gemfile lib/rails/generators/rails/app/app_generator.rb /^ def gemfile$/;" f class:Rails.AppBuilder
|
1154
|
+
gemfile lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def gemfile$/;" f class:Rails.PluginBuilder
|
1155
|
+
gemspec lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def gemspec$/;" f class:Rails.PluginBuilder
|
1156
|
+
generate guides/rails_guides/generator.rb /^ def generate$/;" f class:RailsGuides.Generator
|
1157
|
+
generate lib/rails/generators/actions.rb /^ def generate(what, *args)$/;" f class:Rails.Generators
|
1158
|
+
generate.rb lib/rails/commands/generate.rb 1;" F
|
1159
|
+
generate? guides/rails_guides/generator.rb /^ def generate?(source_file, output_file)$/;" f class:RailsGuides.Generator
|
1160
|
+
generate_application_route test/railties/mounted_engine_test.rb /^ def generate_application_route$/;" f class:ApplicationTests.ApplicationRoutingTest.Blog.PostsController
|
1161
|
+
generate_guide guides/rails_guides/generator.rb /^ def generate_guide(guide, output_file)$/;" f class:RailsGuides.Generator
|
1162
|
+
generate_guides guides/rails_guides/generator.rb /^ def generate_guides$/;" f class:RailsGuides.Generator
|
1163
|
+
generate_railtie_name lib/rails/railtie.rb /^ def generate_railtie_name(class_or_module)$/;" f class:Rails.Railtie
|
1164
|
+
generate_test_dummy lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def generate_test_dummy(force = false)$/;" f class:Rails.PluginBuilder
|
1165
|
+
generate_test_dummy test/fixtures/lib/plugin_builders/spec_builder.rb /^ def generate_test_dummy$/;" f class:PluginBuilder
|
1166
|
+
generated_attribute.rb lib/rails/generators/generated_attribute.rb 1;" F
|
1167
|
+
generated_attribute_test.rb test/generators/generated_attribute_test.rb 1;" F
|
1168
|
+
generator lib/rails/generators/test_case.rb /^ def generator(args=self.default_arguments, options={}, config={})$/;" f class:Rails.Generators.TestCase
|
1169
|
+
generator.rb guides/rails_guides/generator.rb 1;" F
|
1170
|
+
generator_dir lib/rails/generators/rails/generator/generator_generator.rb /^ def generator_dir$/;" f class:Rails.Generators.GeneratorGenerator
|
1171
|
+
generator_generator.rb lib/rails/generators/rails/generator/generator_generator.rb 1;" F
|
1172
|
+
generator_generator_test.rb test/generators/generator_generator_test.rb 1;" F
|
1173
|
+
generator_name lib/rails/generators/base.rb /^ def self.generator_name$/;" F class:Rails
|
1174
|
+
generators lib/rails/engine/configuration.rb /^ def generators #:nodoc$/;" f class:Rails.Engine.Configuration
|
1175
|
+
generators lib/rails/railtie.rb /^ def generators(&blk)$/;" f class:Rails.Railtie
|
1176
|
+
generators lib/rails/railtie/configuration.rb /^ def generators(&block) #:nodoc$/;" f class:Rails.Railtie.Configuration
|
1177
|
+
generators.rb lib/rails/generators.rb 1;" F
|
1178
|
+
generators_test.rb test/application/generators_test.rb 1;" F
|
1179
|
+
generators_test.rb test/generators_test.rb 1;" F
|
1180
|
+
generators_test_helper.rb test/generators/generators_test_helper.rb 1;" F
|
1181
|
+
get test/isolation/abstract_unit.rb /^ def get(path)$/;" f class:TestHelpers
|
1182
|
+
get_builder_class lib/rails/generators/rails/app/app_generator.rb /^ def get_builder_class$/;" f class:Generators.AppGenerator
|
1183
|
+
get_builder_class lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def get_builder_class$/;" f class:Generators.PluginNewGenerator
|
1184
|
+
git lib/rails/generators/actions.rb /^ def git(command={})$/;" f class:Rails.Generators
|
1185
|
+
git_url? lib/rails/commands/plugin.rb /^ def git_url?$/;" f class:Plugin
|
1186
|
+
gitignore lib/rails/generators/rails/app/app_generator.rb /^ def gitignore$/;" f class:Rails.AppBuilder
|
1187
|
+
gitignore lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def gitignore$/;" f class:Rails.PluginBuilder
|
1188
|
+
gitignore test/fixtures/lib/app_builders/simple_builder.rb /^ def gitignore$/;" f class:AppBuilder
|
1189
|
+
gitignore test/fixtures/lib/app_builders/tweak_builder.rb /^ def gitignore$/;" f class:AppBuilder
|
1190
|
+
gitignore test/fixtures/lib/plugin_builders/simple_builder.rb /^ def gitignore$/;" f class:PluginBuilder
|
1191
|
+
gitignore test/fixtures/lib/plugin_builders/tweak_builder.rb /^ def gitignore$/;" f class:PluginBuilder
|
1192
|
+
global_plugins lib/rails/plugin.rb /^ def self.global_plugins$/;" F class:Rails.Plugin
|
1193
|
+
guess_name lib/rails/commands/plugin.rb /^ def guess_name(url)$/;" f
|
1194
|
+
guide guides/rails_guides/helpers.rb /^ def guide(name, url, options = {}, &block)$/;" f class:RailsGuides.Helpers
|
1195
|
+
guideMenu guides/assets/javascripts/guides.js /^function guideMenu(){$/;" f
|
1196
|
+
guides.js guides/assets/javascripts/guides.js 1;" F
|
1197
|
+
guides_to_generate guides/rails_guides/generator.rb /^ def guides_to_generate$/;" f class:RailsGuides.Generator
|
1198
|
+
guides_to_validate guides/w3c_validator.rb /^ def guides_to_validate$/;" f class:RailsGuides.Validator
|
1199
|
+
handleMethod lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function handleMethod(element) {$/;" f
|
1200
|
+
handleMethod tmp/app/public/javascripts/rails.js /^ function handleMethod(element) {$/;" f
|
1201
|
+
handleMethod tmp/app_template/public/javascripts/rails.js /^ function handleMethod(element) {$/;" f
|
1202
|
+
handleRemote lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function handleRemote(element) {$/;" f
|
1203
|
+
handleRemote tmp/app/public/javascripts/rails.js /^ function handleRemote(element) {$/;" f
|
1204
|
+
handleRemote tmp/app_template/public/javascripts/rails.js /^ function handleRemote(element) {$/;" f
|
1205
|
+
handler lib/rails/generators/erb.rb /^ def handler$/;" f class:Erb.Generators.Base
|
1206
|
+
help lib/rails/generators.rb /^ def self.help(command = 'generate')$/;" F class:Rails
|
1207
|
+
help_the_engine test/railties/engine_test.rb /^ def help_the_engine$/;" f class:EngineHelper
|
1208
|
+
helper lib/rails/console/helpers.rb /^def helper$/;" f
|
1209
|
+
helper.rb lib/rails/generators/rails/helper/templates/helper.rb 1;" F
|
1210
|
+
helper_generator.rb lib/rails/generators/rails/helper/helper_generator.rb 1;" F
|
1211
|
+
helper_generator.rb lib/rails/generators/test_unit/helper/helper_generator.rb 1;" F
|
1212
|
+
helper_generator_test.rb test/generators/helper_generator_test.rb 1;" F
|
1213
|
+
helper_test.rb lib/rails/generators/test_unit/helper/templates/helper_test.rb 1;" F
|
1214
|
+
helpers.rb guides/rails_guides/helpers.rb 1;" F
|
1215
|
+
helpers.rb lib/rails/console/helpers.rb 1;" F
|
1216
|
+
hidden_namespaces lib/rails/generators.rb /^ def self.hidden_namespaces$/;" F class:Rails.Generators
|
1217
|
+
hide_namespaces lib/rails/generators.rb /^ def hide_namespaces(*namespaces)$/;" f class:Rails.Generators
|
1218
|
+
hook_for lib/rails/generators/base.rb /^ def self.hook_for(*names, &block)$/;" F class:Rails.Generators
|
1219
|
+
hooks lib/rails/generators/base.rb /^ def self.hooks #:nodoc:$/;" F class:Rails
|
1220
|
+
hooks_test.rb test/application/initializers/hooks_test.rb 1;" F
|
1221
|
+
human_name lib/rails/generators/generated_attribute.rb /^ def human_name$/;" f class:Rails
|
1222
|
+
human_name lib/rails/generators/named_base.rb /^ def human_name$/;" f class:Rails.Generators
|
1223
|
+
i18n_scope lib/rails/generators/named_base.rb /^ def i18n_scope$/;" f class:Rails.Generators
|
1224
|
+
i18n_test.rb test/application/initializers/i18n_test.rb 1;" F
|
1225
|
+
id test/railties/mounted_engine_test.rb /^ def id$/;" f class:ApplicationTests.ApplicationRoutingTest.Blog.Post
|
1226
|
+
images lib/rails/generators/rails/app/app_generator.rb /^ def images$/;" f
|
1227
|
+
in_rails_application lib/rails/script_rails_loader.rb /^ def self.in_rails_application?$/;" F class:Rails
|
1228
|
+
in_rails_application_subdirectory lib/rails/script_rails_loader.rb /^ def self.in_rails_application_subdirectory?(path = Pathname.new(Dir.pwd))$/;" F class:Rails
|
1229
|
+
included lib/rails/backtrace_cleaner.rb /^ def self.included(klass)$/;" F class:Rails.BacktraceFilterForTestUnit
|
1230
|
+
included lib/rails/generators/migration.rb /^ def self.included(base) #:nodoc:$/;" F class:Rails.Generators.Migration
|
1231
|
+
included lib/rails/generators/resource_helpers.rb /^ def self.included(base) #:nodoc:$/;" F class:Rails.Generators.ResourceHelpers
|
1232
|
+
included lib/rails/initializable.rb /^ def self.included(base)$/;" F class:Rails.Initializable
|
1233
|
+
included test/generators/generators_test_helper.rb /^ def self.included(base)$/;" F class:GeneratorsTestHelper
|
1234
|
+
included_helpers test/application/initializers/frameworks_test.rb /^ def included_helpers$/;" f class:FooController
|
1235
|
+
indent lib/rails/generators/named_base.rb /^ def indent(content, multiplier = 2)$/;" f class:Rails.Generators.NamedBase
|
1236
|
+
index guides/rails_guides/indexer.rb /^ def index$/;" f class:RailsGuides.Indexer
|
1237
|
+
index lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def index$/;" f
|
1238
|
+
index test/application/configuration_test.rb /^ def index$/;" f
|
1239
|
+
index test/application/middleware/sendfile_test.rb /^ def index$/;" f class:ApplicationTests.SendfileTest
|
1240
|
+
index test/application/middleware_test.rb /^ def index$/;" f
|
1241
|
+
index test/application/routing_test.rb /^ def index$/;" f class:Admin.FooController
|
1242
|
+
index test/application/routing_test.rb /^ def index$/;" f class:BarController
|
1243
|
+
index test/application/routing_test.rb /^ def index$/;" f class:FooController
|
1244
|
+
index test/application/routing_test.rb /^ def index$/;" f class:YazilarController
|
1245
|
+
index test/application/url_generation_test.rb /^ def index$/;" f class:ApplicationTests
|
1246
|
+
index test/isolation/abstract_unit.rb /^ def index$/;" f class:simple_controller.FooController
|
1247
|
+
index test/railties/engine_test.rb /^ def index$/;" f class:Bukkits.HomeController
|
1248
|
+
index test/railties/engine_test.rb /^ def index$/;" f class:Bukkits
|
1249
|
+
index test/railties/engine_test.rb /^ def index$/;" f class:FooController
|
1250
|
+
index test/railties/mounted_engine_test.rb /^ def index$/;" f class:ApplicationTests.ApplicationRoutingTest.Blog.PostsController
|
1251
|
+
index test/railties/shared_tests.rb /^ def index$/;" f class:RailtiesTest.test_adds_helpers_to_controller_views.BukkitController
|
1252
|
+
index test/railties/shared_tests.rb /^ def index$/;" f class:RailtiesTest.test_adds_its_views_to_view_paths.BukkitController
|
1253
|
+
index test/railties/shared_tests.rb /^ def index$/;" f class:RailtiesTest.test_adds_its_views_to_view_paths_with_lower_proriority_than_app_ones.BukkitController
|
1254
|
+
index test/railties/shared_tests.rb /^ def index$/;" f class:RailtiesTest.test_namespaced_controllers_with_namespaced_routes.Admin
|
1255
|
+
index test/railties/shared_tests.rb /^ def index$/;" f class:RailtiesTest.test_routes_in_plugins_have_lower_priority_than_application_ones.BarController
|
1256
|
+
index test/railties/shared_tests.rb /^ def index$/;" f class:RailtiesTest.test_routes_in_plugins_have_lower_priority_than_application_ones.FooController
|
1257
|
+
index.html lib/rails/generators/rails/app/templates/public/index.html 1;" F
|
1258
|
+
index.html tmp/app/public/index.html 1;" F
|
1259
|
+
index.html tmp/app_template/public/index.html 1;" F
|
1260
|
+
index_helper lib/rails/generators/named_base.rb /^ def index_helper$/;" f class:Rails.Generators
|
1261
|
+
indexer.rb guides/rails_guides/indexer.rb 1;" F
|
1262
|
+
inflections.rb lib/rails/generators/rails/app/templates/config/initializers/inflections.rb 1;" F
|
1263
|
+
inflections.rb tmp/app_template/config/initializers/inflections.rb 1;" F
|
1264
|
+
info lib/rails/commands/plugin.rb /^ def info$/;" f class:Plugin
|
1265
|
+
info.rb lib/rails/info.rb 1;" F
|
1266
|
+
info_controller.rb lib/rails/info_controller.rb 1;" F
|
1267
|
+
inherited lib/rails/application.rb /^ def inherited(base)$/;" f class:Rails.Application
|
1268
|
+
inherited lib/rails/engine.rb /^ def inherited(base)$/;" f class:Rails.Engine
|
1269
|
+
inherited lib/rails/generators/base.rb /^ def self.inherited(base) #:nodoc:$/;" F class:Rails
|
1270
|
+
inherited lib/rails/plugin.rb /^ def self.inherited(base)$/;" F class:Rails.Plugin
|
1271
|
+
inherited lib/rails/railtie.rb /^ def inherited(base)$/;" f class:Rails.Railtie
|
1272
|
+
inherited lib/rails/railtie/configurable.rb /^ def inherited(base)$/;" f class:Rails.Railtie.Configurable.ClassMethods
|
1273
|
+
init.rb lib/rails/generators/rails/plugin/templates/init.rb 1;" F
|
1274
|
+
init.rb test/fixtures/about_yml_plugins/bad_about_yml/init.rb 1;" F
|
1275
|
+
init.rb test/fixtures/about_yml_plugins/plugin_without_about_yml/init.rb 1;" F
|
1276
|
+
initializable.rb lib/rails/initializable.rb 1;" F
|
1277
|
+
initializable_test.rb test/initializable_test.rb 1;" F
|
1278
|
+
initialize guides/rails_guides/generator.rb /^ def initialize(output=nil)$/;" f class:RailsGuides.Generator
|
1279
|
+
initialize guides/rails_guides/indexer.rb /^ def initialize(body, warnings)$/;" f class:RailsGuides.Indexer
|
1280
|
+
initialize lib/rails/application/configuration.rb /^ def initialize(*)$/;" f class:Rails.Application.Configuration
|
1281
|
+
initialize lib/rails/application/routes_reloader.rb /^ def initialize$/;" f class:Rails.Application.RoutesReloader
|
1282
|
+
initialize lib/rails/backtrace_cleaner.rb /^ def initialize$/;" f class:Rails.BacktraceCleaner
|
1283
|
+
initialize lib/rails/code_statistics.rb /^ def initialize(*pairs)$/;" f class:CodeStatistics
|
1284
|
+
initialize lib/rails/commands/console.rb /^ def initialize(app)$/;" f class:Rails.Console
|
1285
|
+
initialize lib/rails/commands/dbconsole.rb /^ def initialize(app)$/;" f class:Rails.DBConsole
|
1286
|
+
initialize lib/rails/commands/plugin.rb /^ def initialize$/;" f class:Commands.Plugin
|
1287
|
+
initialize lib/rails/commands/plugin.rb /^ def initialize(base_command)$/;" f class:Commands.Info
|
1288
|
+
initialize lib/rails/commands/plugin.rb /^ def initialize(base_command)$/;" f class:Commands.Install
|
1289
|
+
initialize lib/rails/commands/plugin.rb /^ def initialize(base_command)$/;" f class:Commands.Remove
|
1290
|
+
initialize lib/rails/commands/plugin.rb /^ def initialize(dir)$/;" f class:RailsEnvironment
|
1291
|
+
initialize lib/rails/commands/plugin.rb /^ def initialize(uri, name = nil)$/;" f class:Plugin
|
1292
|
+
initialize lib/rails/commands/plugin.rb /^ def initialize(urls_to_fetch, level = 1, cwd = ".")$/;" f class:RecursiveHTTPFetcher
|
1293
|
+
initialize lib/rails/commands/server.rb /^ def initialize(*)$/;" f class:Rails.Server
|
1294
|
+
initialize lib/rails/configuration.rb /^ def initialize$/;" f class:Rails.Configuration.Generators
|
1295
|
+
initialize lib/rails/configuration.rb /^ def initialize$/;" f class:Rails.Configuration.MiddlewareStackProxy
|
1296
|
+
initialize lib/rails/engine/configuration.rb /^ def initialize(root=nil)$/;" f class:Rails.Engine.Configuration
|
1297
|
+
initialize lib/rails/engine/railties.rb /^ def initialize(config)$/;" f class:Rails.Engine.Railties
|
1298
|
+
initialize lib/rails/generators/active_model.rb /^ def initialize(name)$/;" f class:Rails.Generators.ActiveModel
|
1299
|
+
initialize lib/rails/generators/app_base.rb /^ def initialize(*args)$/;" f class:Rails.Generators.AppBase
|
1300
|
+
initialize lib/rails/generators/generated_attribute.rb /^ def initialize(name, type)$/;" f class:Rails.Generators.GeneratedAttribute
|
1301
|
+
initialize lib/rails/generators/named_base.rb /^ def initialize(args, *options) #:nodoc:$/;" f class:Rails.Generators.NamedBase
|
1302
|
+
initialize lib/rails/generators/rails/app/app_generator.rb /^ def initialize(*args)$/;" f class:Generators.AppGenerator
|
1303
|
+
initialize lib/rails/generators/rails/app/app_generator.rb /^ def initialize(generator)$/;" f class:Rails.ActionMethods
|
1304
|
+
initialize lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def initialize(*args)$/;" f class:Generators.PluginNewGenerator
|
1305
|
+
initialize lib/rails/generators/resource_helpers.rb /^ def initialize(*args) #:nodoc:$/;" f class:Rails.Generators.ResourceHelpers
|
1306
|
+
initialize lib/rails/initializable.rb /^ def initialize(name, context, options, &block)$/;" f class:Rails.Initializable.Initializer
|
1307
|
+
initialize lib/rails/paths.rb /^ def initialize(path)$/;" f class:Rails.Paths.Root
|
1308
|
+
initialize lib/rails/paths.rb /^ def initialize(root, current, *paths)$/;" f class:Rails.Paths.Path
|
1309
|
+
initialize lib/rails/plugin.rb /^ def initialize(root)$/;" f class:Rails
|
1310
|
+
initialize lib/rails/rack/debugger.rb /^ def initialize(app)$/;" f class:Rails.Rack.Debugger
|
1311
|
+
initialize lib/rails/rack/log_tailer.rb /^ def initialize(app, log = nil)$/;" f class:Rails.Rack.LogTailer
|
1312
|
+
initialize lib/rails/rack/logger.rb /^ def initialize(app)$/;" f class:Rails.Rack.Logger
|
1313
|
+
initialize lib/rails/railtie/configuration.rb /^ def initialize$/;" f class:Rails.Railtie.Configuration
|
1314
|
+
initialize lib/rails/source_annotation_extractor.rb /^ def initialize(tag)$/;" f class:SourceAnnotationExtractor
|
1315
|
+
initialize test/isolation/abstract_unit.rb /^ def initialize(path)$/;" f class:Bukkit
|
1316
|
+
initialize test/railties/engine_test.rb /^ def initialize(app)$/;" f class:Upcaser
|
1317
|
+
initialize test/railties/shared_tests.rb /^ def initialize(app)$/;" f class:RailtiesTest.test_midleware_referenced_in_configuration.Bukkits
|
1318
|
+
initialize! lib/rails.rb /^ def initialize!$/;" f class:Rails
|
1319
|
+
initialize! lib/rails/application.rb /^ def initialize!$/;" f class:Rails
|
1320
|
+
initialize_console lib/rails/application.rb /^ def initialize_console(sandbox=false)$/;" f class:Rails
|
1321
|
+
initialize_copy lib/rails/configuration.rb /^ def initialize_copy(source)$/;" f class:Rails.Configuration.Generators
|
1322
|
+
initialize_dirs guides/rails_guides/generator.rb /^ def initialize_dirs(output)$/;" f class:RailsGuides.Generator
|
1323
|
+
initialize_generators lib/rails/application.rb /^ def initialize_generators$/;" f class:Rails
|
1324
|
+
initialize_tasks lib/rails/application.rb /^ def initialize_tasks$/;" f class:Rails
|
1325
|
+
initialized= lib/rails.rb /^ def initialized=(initialized)$/;" f class:Rails
|
1326
|
+
initialized? lib/rails.rb /^ def initialized?$/;" f class:Rails
|
1327
|
+
initializer lib/rails/generators/actions.rb /^ def initializer(filename, data=nil, &block)$/;" f class:Rails.Generators
|
1328
|
+
initializer lib/rails/initializable.rb /^ def initializer(name, opts = {}, &blk)$/;" f class:Rails.Initializable.ClassMethods
|
1329
|
+
initializers lib/rails/application.rb /^ def initializers$/;" f class:Rails
|
1330
|
+
initializers lib/rails/engine.rb /^ def initializers$/;" f
|
1331
|
+
initializers lib/rails/initializable.rb /^ def initializers$/;" f class:Rails.Initializable.ClassMethods
|
1332
|
+
initializers lib/rails/initializable.rb /^ def initializers$/;" f class:Rails.Initializable
|
1333
|
+
initializers test/initializable_test.rb /^ def self.initializers$/;" F class:Application
|
1334
|
+
initializers test/initializable_test.rb /^ def self.initializers$/;" F class:InitializableTests.OverriddenInitializer
|
1335
|
+
initializers_chain lib/rails/initializable.rb /^ def initializers_chain$/;" f class:Rails.Initializable.ClassMethods
|
1336
|
+
initializers_for lib/rails/initializable.rb /^ def initializers_for(binding)$/;" f class:Rails.Initializable.ClassMethods
|
1337
|
+
insertHiddenField lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function insertHiddenField(form, name, value) {$/;" f
|
1338
|
+
insertHiddenField tmp/app/public/javascripts/rails.js /^ function insertHiddenField(form, name, value) {$/;" f
|
1339
|
+
insertHiddenField tmp/app_template/public/javascripts/rails.js /^ function insertHiddenField(form, name, value) {$/;" f
|
1340
|
+
insert_after lib/rails/configuration.rb /^ def insert_after(*args, &block)$/;" f class:Rails.Configuration.MiddlewareStackProxy
|
1341
|
+
insert_before lib/rails/configuration.rb /^ def insert_before(*args, &block)$/;" f class:Rails.Configuration.MiddlewareStackProxy
|
1342
|
+
inside_template lib/rails/generators/named_base.rb /^ def inside_template$/;" f class:Rails.Generators.NamedBase
|
1343
|
+
inside_template? lib/rails/generators/named_base.rb /^ def inside_template?$/;" f class:Rails.Generators.NamedBase
|
1344
|
+
inspect lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function inspect(object) {$/;" f
|
1345
|
+
inspect tmp/app/public/javascripts/prototype.js /^ function inspect(object) {$/;" f
|
1346
|
+
inspect tmp/app_template/public/javascripts/prototype.js /^ function inspect(object) {$/;" f
|
1347
|
+
install lib/rails/commands/plugin.rb /^ def install(method=nil, options = {})$/;" f class:Plugin
|
1348
|
+
install lib/rails/commands/plugin.rb /^ def install(name_uri_or_plugin)$/;" f class:RailsEnvironment
|
1349
|
+
install.rb lib/rails/generators/rails/plugin/templates/install.rb 1;" F
|
1350
|
+
install_using_checkout lib/rails/commands/plugin.rb /^ def install_using_checkout(options = {})$/;" f class:Plugin
|
1351
|
+
install_using_export lib/rails/commands/plugin.rb /^ def install_using_export(options = {})$/;" f class:Plugin
|
1352
|
+
install_using_externals lib/rails/commands/plugin.rb /^ def install_using_externals(options = {})$/;" f class:Plugin
|
1353
|
+
install_using_git lib/rails/commands/plugin.rb /^ def install_using_git(options = {})$/;" f
|
1354
|
+
install_using_http lib/rails/commands/plugin.rb /^ def install_using_http(options = {})$/;" f class:Plugin
|
1355
|
+
installed? lib/rails/commands/plugin.rb /^ def installed?$/;" f class:Plugin
|
1356
|
+
instance lib/rails/railtie/configurable.rb /^ def instance$/;" f class:Rails.Railtie.Configurable.ClassMethods
|
1357
|
+
instrument test/application/initializers/notifications_test.rb /^ def instrument(*args, &block)$/;" f class:ApplicationTests.NotificationsTest
|
1358
|
+
integration_generator.rb lib/rails/generators/test_unit/integration/integration_generator.rb 1;" F
|
1359
|
+
integration_test.rb lib/rails/generators/test_unit/integration/templates/integration_test.rb 1;" F
|
1360
|
+
integration_test_generator.rb lib/rails/generators/rails/integration_test/integration_test_generator.rb 1;" F
|
1361
|
+
integration_test_generator_test.rb test/generators/integration_test_generator_test.rb 1;" F
|
1362
|
+
invoke lib/rails/generators.rb /^ def self.invoke(namespace, args=ARGV, config={})$/;" F class:Rails.Generators
|
1363
|
+
invoke_fallbacks_for lib/rails/generators.rb /^ def self.invoke_fallbacks_for(name, base) #:nodoc:$/;" F class:Rails
|
1364
|
+
isArray lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isArray(object) {$/;" f
|
1365
|
+
isArray tmp/app/public/javascripts/prototype.js /^ function isArray(object) {$/;" f
|
1366
|
+
isArray tmp/app_template/public/javascripts/prototype.js /^ function isArray(object) {$/;" f
|
1367
|
+
isDate lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isDate(object) {$/;" f
|
1368
|
+
isDate tmp/app/public/javascripts/prototype.js /^ function isDate(object) {$/;" f
|
1369
|
+
isDate tmp/app_template/public/javascripts/prototype.js /^ function isDate(object) {$/;" f
|
1370
|
+
isElement lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isElement(object) {$/;" f
|
1371
|
+
isElement tmp/app/public/javascripts/prototype.js /^ function isElement(object) {$/;" f
|
1372
|
+
isElement tmp/app_template/public/javascripts/prototype.js /^ function isElement(object) {$/;" f
|
1373
|
+
isForm lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function isForm(element) {$/;" f
|
1374
|
+
isForm tmp/app/public/javascripts/rails.js /^ function isForm(element) {$/;" f
|
1375
|
+
isForm tmp/app_template/public/javascripts/rails.js /^ function isForm(element) {$/;" f
|
1376
|
+
isFunction lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isFunction(object) {$/;" f
|
1377
|
+
isFunction tmp/app/public/javascripts/prototype.js /^ function isFunction(object) {$/;" f
|
1378
|
+
isFunction tmp/app_template/public/javascripts/prototype.js /^ function isFunction(object) {$/;" f
|
1379
|
+
isHash lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isHash(object) {$/;" f
|
1380
|
+
isHash tmp/app/public/javascripts/prototype.js /^ function isHash(object) {$/;" f
|
1381
|
+
isHash tmp/app_template/public/javascripts/prototype.js /^ function isHash(object) {$/;" f
|
1382
|
+
isInput lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function isInput(element) {$/;" f
|
1383
|
+
isInput tmp/app/public/javascripts/rails.js /^ function isInput(element) {$/;" f
|
1384
|
+
isInput tmp/app_template/public/javascripts/rails.js /^ function isInput(element) {$/;" f
|
1385
|
+
isNumber lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isNumber(object) {$/;" f
|
1386
|
+
isNumber tmp/app/public/javascripts/prototype.js /^ function isNumber(object) {$/;" f
|
1387
|
+
isNumber tmp/app_template/public/javascripts/prototype.js /^ function isNumber(object) {$/;" f
|
1388
|
+
isString lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isString(object) {$/;" f
|
1389
|
+
isString tmp/app/public/javascripts/prototype.js /^ function isString(object) {$/;" f
|
1390
|
+
isString tmp/app_template/public/javascripts/prototype.js /^ function isString(object) {$/;" f
|
1391
|
+
isUndefined lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isUndefined(object) {$/;" f
|
1392
|
+
isUndefined tmp/app/public/javascripts/prototype.js /^ function isUndefined(object) {$/;" f
|
1393
|
+
isUndefined tmp/app_template/public/javascripts/prototype.js /^ function isUndefined(object) {$/;" f
|
1394
|
+
isolate_namespace lib/rails/engine.rb /^ def isolate_namespace(mod)$/;" f class:Rails.Engine
|
1395
|
+
javascripts lib/rails/generators/rails/app/app_generator.rb /^ def javascripts$/;" f
|
1396
|
+
javascripts lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def javascripts$/;" f class:Rails.PluginBuilder
|
1397
|
+
jquery.js lib/rails/generators/rails/app/templates/public/javascripts/jquery.js 1;" F
|
1398
|
+
jquery_ujs.js lib/rails/generators/rails/app/templates/public/javascripts/jquery_ujs.js 1;" F
|
1399
|
+
keys lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function keys(object) {$/;" f
|
1400
|
+
keys tmp/app/public/javascripts/prototype.js /^ function keys(object) {$/;" f
|
1401
|
+
keys tmp/app_template/public/javascripts/prototype.js /^ function keys(object) {$/;" f
|
1402
|
+
last lib/rails/paths.rb /^ def last$/;" f class:Rails.Paths.Path
|
1403
|
+
levenshtein.rb guides/rails_guides/levenshtein.rb 1;" F
|
1404
|
+
lib lib/rails/generators/actions.rb /^ def lib(filename, data=nil, &block)$/;" f class:Rails.Generators
|
1405
|
+
lib lib/rails/generators/rails/app/app_generator.rb /^ def lib$/;" f class:Rails
|
1406
|
+
lib lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def lib$/;" f class:Rails.PluginBuilder
|
1407
|
+
license lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def license$/;" f class:Rails.PluginBuilder
|
1408
|
+
links lib/rails/commands/plugin.rb /^ def links(base_url, contents)$/;" f class:RecursiveHTTPFetcher.ls
|
1409
|
+
load_app test/application/initializers/i18n_test.rb /^ def load_app$/;" f class:ApplicationTests.I18nTest
|
1410
|
+
load_console lib/rails/application.rb /^ def load_console(sandbox=false)$/;" f class:Rails
|
1411
|
+
load_console lib/rails/railtie.rb /^ def load_console$/;" f class:Rails
|
1412
|
+
load_environment test/application/console_test.rb /^ def load_environment$/;" f class:ConsoleTest
|
1413
|
+
load_generators lib/rails/application.rb /^ def load_generators$/;" f class:Rails
|
1414
|
+
load_generators lib/rails/railtie.rb /^ def load_generators$/;" f class:Rails
|
1415
|
+
load_generators_from_railties lib/rails/generators.rb /^ def self.load_generators_from_railties! #:nodoc:$/;" F
|
1416
|
+
load_path_test.rb test/application/initializers/load_path_test.rb 1;" F
|
1417
|
+
load_paths lib/rails/application/routes_reloader.rb /^ def load_paths$/;" f class:Rails.Application.RoutesReloader
|
1418
|
+
load_paths lib/rails/paths.rb /^ def load_paths$/;" f class:Rails.Paths.Root
|
1419
|
+
load_seed lib/rails/engine.rb /^ def load_seed$/;" f
|
1420
|
+
load_tasks lib/rails/application.rb /^ def load_tasks$/;" f class:Rails
|
1421
|
+
load_tasks lib/rails/engine.rb /^ def load_tasks$/;" f class:Rails
|
1422
|
+
load_tasks lib/rails/railtie.rb /^ def load_tasks$/;" f class:Rails
|
1423
|
+
loading_test.rb test/application/loading_test.rb 1;" F
|
1424
|
+
log lib/rails/generators/actions.rb /^ def log(*args)$/;" f class:Rails.Generators.route
|
1425
|
+
log lib/rails/generators/rails/app/app_generator.rb /^ def log$/;" f class:Rails
|
1426
|
+
log_level lib/rails/application/configuration.rb /^ def log_level$/;" f class:Rails.Application.Configuration
|
1427
|
+
log_path lib/rails/commands/server.rb /^ def log_path$/;" f class:Rails.Server
|
1428
|
+
log_tailer.rb lib/rails/rack/log_tailer.rb 1;" F
|
1429
|
+
logger lib/rails.rb /^ def logger$/;" f class:Rails
|
1430
|
+
logger.rb lib/rails/rack/logger.rb 1;" F
|
1431
|
+
logger= lib/rails.rb /^ def logger=(logger)$/;" f class:Rails
|
1432
|
+
lookup lib/rails/generators.rb /^ def self.lookup! #:nodoc:$/;" F
|
1433
|
+
lookup lib/rails/generators.rb /^ def self.lookup(namespaces) #:nodoc:$/;" F class:Rails
|
1434
|
+
ls lib/rails/commands/plugin.rb /^ def ls$/;" f class:RecursiveHTTPFetcher
|
1435
|
+
mailer_generator.rb lib/rails/generators/erb/mailer/mailer_generator.rb 1;" F
|
1436
|
+
mailer_generator.rb lib/rails/generators/test_unit/mailer/mailer_generator.rb 1;" F
|
1437
|
+
mailer_generator_test.rb test/generators/mailer_generator_test.rb 1;" F
|
1438
|
+
make_basic_app test/isolation/abstract_unit.rb /^ def make_basic_app$/;" f
|
1439
|
+
masterDelay lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var masterDelay = options.delay;$/;" v
|
1440
|
+
masterDelay tmp/app/public/javascripts/effects.js /^ var masterDelay = options.delay;$/;" v
|
1441
|
+
masterDelay tmp/app_template/public/javascripts/effects.js /^ var masterDelay = options.delay;$/;" v
|
1442
|
+
merge_into lib/rails/configuration.rb /^ def merge_into(other)$/;" f class:Rails.Configuration.MiddlewareStackProxy
|
1443
|
+
method_missing lib/rails/configuration.rb /^ def method_missing(method, *args)$/;" f class:Rails.Configuration.Generators
|
1444
|
+
method_missing lib/rails/generators/rails/app/app_generator.rb /^ def method_missing(meth, *args, &block)$/;" f class:Rails.ActionMethods
|
1445
|
+
method_missing lib/rails/paths.rb /^ def method_missing(id, *args)$/;" f class:Rails.Paths.PathParent
|
1446
|
+
method_missing lib/rails/railtie/configurable.rb /^ def method_missing(*args, &block)$/;" f class:Rails.Railtie.Configurable.ClassMethods
|
1447
|
+
method_missing lib/rails/railtie/configuration.rb /^ def method_missing(name, *args, &blk)$/;" f class:Rails.Railtie.Configuration
|
1448
|
+
middleware lib/rails/commands/server.rb /^ def middleware$/;" f class:Rails.Server
|
1449
|
+
middleware lib/rails/engine/configuration.rb /^ def middleware$/;" f class:Rails.Engine.Configuration
|
1450
|
+
middleware test/application/middleware_test.rb /^ def middleware$/;" f
|
1451
|
+
middleware_test.rb test/application/middleware_test.rb 1;" F
|
1452
|
+
migration.rb lib/rails/generators/migration.rb 1;" F
|
1453
|
+
migration_exists? lib/rails/generators/migration.rb /^ def migration_exists?(dirname, file_name) #:nodoc:$/;" f class:Rails.Generators.Migration.ClassMethods
|
1454
|
+
migration_file_name lib/rails/generators/test_case.rb /^ def migration_file_name(relative) #:nodoc:$/;" f class:Rails.Generators.TestCase
|
1455
|
+
migration_generator.rb lib/rails/generators/rails/migration/migration_generator.rb 1;" F
|
1456
|
+
migration_generator_test.rb test/generators/migration_generator_test.rb 1;" F
|
1457
|
+
migration_lookup_at lib/rails/generators/migration.rb /^ def migration_lookup_at(dirname) #:nodoc:$/;" f class:Rails.Generators.Migration.ClassMethods
|
1458
|
+
migration_template lib/rails/generators/migration.rb /^ def migration_template(source, destination=nil, config={})$/;" f class:Rails.Generators.Migration.ClassMethods
|
1459
|
+
mime_types.rb lib/rails/generators/rails/app/templates/config/initializers/mime_types.rb 1;" F
|
1460
|
+
mime_types.rb tmp/app_template/config/initializers/mime_types.rb 1;" F
|
1461
|
+
model_generator.rb lib/rails/generators/rails/model/model_generator.rb 1;" F
|
1462
|
+
model_generator.rb lib/rails/generators/test_unit/model/model_generator.rb 1;" F
|
1463
|
+
model_generator.rb test/fixtures/lib/generators/model_generator.rb 1;" F
|
1464
|
+
model_generator_test.rb test/generators/model_generator_test.rb 1;" F
|
1465
|
+
module_namespacing lib/rails/generators/named_base.rb /^ def module_namespacing(&block)$/;" f class:Rails.Generators.NamedBase
|
1466
|
+
mountable? lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def mountable?$/;" f class:Generators.PluginNewGenerator
|
1467
|
+
mounted_engine_test.rb test/railties/mounted_engine_test.rb 1;" F
|
1468
|
+
mute lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def mute(&block)$/;" f class:Generators.PluginNewGenerator
|
1469
|
+
mysql_socket lib/rails/generators/rails/app/app_generator.rb /^ def mysql_socket$/;" f class:Generators.AppGenerator
|
1470
|
+
name lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var name = encodeURIComponent($/;" v
|
1471
|
+
name lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def name$/;" f class:Generators.PluginNewGenerator
|
1472
|
+
name tmp/app/public/javascripts/dragdrop.js /^ var name = encodeURIComponent($/;" v
|
1473
|
+
name tmp/app_template/public/javascripts/dragdrop.js /^ var name = encodeURIComponent($/;" v
|
1474
|
+
named_base.rb lib/rails/generators/named_base.rb 1;" F
|
1475
|
+
named_base_test.rb test/generators/named_base_test.rb 1;" F
|
1476
|
+
names lib/rails/info.rb /^ def names$/;" f class:Rails.Info
|
1477
|
+
namespace lib/rails/generators/base.rb /^ def self.namespace(name=nil)$/;" F class:Rails.Generators
|
1478
|
+
namespace lib/rails/generators/named_base.rb /^ def namespace$/;" f class:Rails.Generators.NamedBase
|
1479
|
+
namespaced? lib/rails/generators/named_base.rb /^ def namespaced?$/;" f class:Rails.Generators
|
1480
|
+
namespaced_class_path lib/rails/generators/named_base.rb /^ def namespaced_class_path$/;" f class:Rails.Generators
|
1481
|
+
namespaced_generators_test.rb test/generators/namespaced_generators_test.rb 1;" F
|
1482
|
+
namespaces_to_paths lib/rails/generators.rb /^ def self.namespaces_to_paths(namespaces) #:nodoc:$/;" F
|
1483
|
+
navigation_test.rb lib/rails/generators/rails/plugin_new/templates/test/integration/navigation_test.rb 1;" F
|
1484
|
+
new lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def new$/;" f
|
1485
|
+
new test/railties/engine_test.rb /^ def new$/;" f class:Bukkits
|
1486
|
+
new_app test/application/configuration_test.rb /^ def new_app$/;" f class:ApplicationTests.ConfigurationTest
|
1487
|
+
new_record? test/railties/mounted_engine_test.rb /^ def new_record?$/;" f class:ApplicationTests.ApplicationRoutingTest.Blog.Post
|
1488
|
+
new_session lib/rails/console/app.rb /^def new_session$/;" f
|
1489
|
+
next_migration_number lib/rails/generators/migration.rb /^ def next_migration_number(dirname) #:nodoc:$/;" f class:Rails.Generators.Migration.ClassMethods.current_migration_number
|
1490
|
+
no_color lib/rails/generators.rb /^ def self.no_color!$/;" F class:Rails.Generators
|
1491
|
+
not_included_helper test/application/initializers/frameworks_test.rb /^ def not_included_helper$/;" f class:FooController
|
1492
|
+
notestuff guides/rails_guides/textile_extensions.rb /^ def notestuff(body)$/;" f class:RailsGuides.TextileExtensions
|
1493
|
+
notifications_test.rb test/application/initializers/notifications_test.rb 1;" F
|
1494
|
+
notify test/application/initializers/frameworks_test.rb /^ def notify$/;" f class:Foo
|
1495
|
+
observer_generator.rb lib/rails/generators/rails/observer/observer_generator.rb 1;" F
|
1496
|
+
observer_generator.rb lib/rails/generators/test_unit/observer/observer_generator.rb 1;" F
|
1497
|
+
observer_generator_test.rb test/generators/observer_generator_test.rb 1;" F
|
1498
|
+
offsets lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var offsets = dropon.cumulativeOffset();$/;" v
|
1499
|
+
offsets tmp/app/public/javascripts/dragdrop.js /^ var offsets = dropon.cumulativeOffset();$/;" v
|
1500
|
+
offsets tmp/app_template/public/javascripts/dragdrop.js /^ var offsets = dropon.cumulativeOffset();$/;" v
|
1501
|
+
opt_parser lib/rails/commands/server.rb /^ def opt_parser$/;" f class:Rails.Server
|
1502
|
+
options lib/rails/commands/plugin.rb /^ def options$/;" f class:Commands.Info
|
1503
|
+
options lib/rails/commands/plugin.rb /^ def options$/;" f class:Commands.Install
|
1504
|
+
options lib/rails/commands/plugin.rb /^ def options$/;" f class:Commands.Plugin
|
1505
|
+
options lib/rails/commands/plugin.rb /^ def options$/;" f class:Commands.Remove
|
1506
|
+
options lib/rails/generators.rb /^ def self.options #:nodoc:$/;" F class:Rails.Generators
|
1507
|
+
options_for_draggable.quiet lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ revert: true,$/;" p
|
1508
|
+
options_for_draggable.quiet tmp/app/public/javascripts/dragdrop.js /^ revert: true,$/;" p
|
1509
|
+
options_for_draggable.quiet tmp/app_template/public/javascripts/dragdrop.js /^ revert: true,$/;" p
|
1510
|
+
options_for_draggable.revert lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var options_for_draggable = {$/;" p
|
1511
|
+
options_for_draggable.revert tmp/app/public/javascripts/dragdrop.js /^ var options_for_draggable = {$/;" p
|
1512
|
+
options_for_draggable.revert tmp/app_template/public/javascripts/dragdrop.js /^ var options_for_draggable = {$/;" p
|
1513
|
+
options_for_droppable.overlap lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var options_for_droppable = {$/;" p
|
1514
|
+
options_for_droppable.overlap tmp/app/public/javascripts/dragdrop.js /^ var options_for_droppable = {$/;" p
|
1515
|
+
options_for_droppable.overlap tmp/app_template/public/javascripts/dragdrop.js /^ var options_for_droppable = {$/;" p
|
1516
|
+
options_for_tree.onHover lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var options_for_tree = {$/;" p
|
1517
|
+
options_for_tree.onHover tmp/app/public/javascripts/dragdrop.js /^ var options_for_tree = {$/;" p
|
1518
|
+
options_for_tree.onHover tmp/app_template/public/javascripts/dragdrop.js /^ var options_for_tree = {$/;" p
|
1519
|
+
orm_class lib/rails/generators/resource_helpers.rb /^ def orm_class$/;" f class:Rails.Generators.ResourceHelpers
|
1520
|
+
orm_instance lib/rails/generators/resource_helpers.rb /^ def orm_instance(name=singular_table_name)$/;" f class:Rails.Generators.ResourceHelpers
|
1521
|
+
output_file_for guides/rails_guides/generator.rb /^ def output_file_for(guide)$/;" f class:RailsGuides.Generator
|
1522
|
+
parse lib/rails/commands/plugin.rb /^ def self.parse!(args=ARGV)$/;" F class:Commands.Plugin
|
1523
|
+
parse! lib/rails/commands/plugin.rb /^ def parse!(args)$/;" f class:Commands.Info
|
1524
|
+
parse! lib/rails/commands/plugin.rb /^ def parse!(args)$/;" f class:Commands.Install
|
1525
|
+
parse! lib/rails/commands/plugin.rb /^ def parse!(args)$/;" f class:Commands.Remove
|
1526
|
+
parse! lib/rails/commands/plugin.rb /^ def parse!(args=ARGV)$/;" f class:Commands.Plugin
|
1527
|
+
parse! lib/rails/commands/server.rb /^ def parse!(args)$/;" f class:Rails.Server.Options
|
1528
|
+
parse_attributes! lib/rails/generators/named_base.rb /^ def parse_attributes! #:nodoc:$/;" f class:Rails.Generators
|
1529
|
+
partial lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ var partial = [];$/;" v
|
1530
|
+
partial tmp/app/public/javascripts/prototype.js /^ var partial = [];$/;" v
|
1531
|
+
partial tmp/app_template/public/javascripts/prototype.js /^ var partial = [];$/;" v
|
1532
|
+
paths lib/rails/application/configuration.rb /^ def paths$/;" f class:Rails.Application.Configuration
|
1533
|
+
paths lib/rails/engine/configuration.rb /^ def paths$/;" f class:Rails.Engine.Configuration
|
1534
|
+
paths lib/rails/paths.rb /^ def paths$/;" f class:Rails
|
1535
|
+
paths.rb lib/rails/paths.rb 1;" F
|
1536
|
+
paths_test.rb test/application/paths_test.rb 1;" F
|
1537
|
+
paths_test.rb test/paths_test.rb 1;" F
|
1538
|
+
performance_generator.rb lib/rails/generators/test_unit/performance/performance_generator.rb 1;" F
|
1539
|
+
performance_test.rb lib/rails/generators/test_unit/performance/templates/performance_test.rb 1;" F
|
1540
|
+
performance_test_generator.rb lib/rails/generators/rails/performance_test/performance_test_generator.rb 1;" F
|
1541
|
+
performance_test_generator_test.rb test/generators/performance_test_generator_test.rb 1;" F
|
1542
|
+
performance_test_help.rb lib/rails/performance_test_help.rb 1;" F
|
1543
|
+
persisted? test/railties/engine_test.rb /^ def persisted?$/;" f class:Bukkits.Post
|
1544
|
+
plugin lib/rails/generators/actions.rb /^ def plugin(name, options)$/;" f class:Rails.Generators.Actions
|
1545
|
+
plugin test/isolation/abstract_unit.rb /^ def plugin(name, string = "")$/;" f
|
1546
|
+
plugin.rb lib/rails/commands/plugin.rb 1;" F
|
1547
|
+
plugin.rb lib/rails/plugin.rb 1;" F
|
1548
|
+
plugin_dir lib/rails/generators/rails/plugin/plugin_generator.rb /^ def plugin_dir(join=nil)$/;" f class:Rails.Generators.PluginGenerator
|
1549
|
+
plugin_generator.rb lib/rails/generators/rails/plugin/plugin_generator.rb 1;" F
|
1550
|
+
plugin_generator.rb lib/rails/generators/test_unit/plugin/plugin_generator.rb 1;" F
|
1551
|
+
plugin_generator_test.rb test/generators/plugin_generator_test.rb 1;" F
|
1552
|
+
plugin_new.rb lib/rails/commands/plugin_new.rb 1;" F
|
1553
|
+
plugin_new_generator.rb lib/rails/generators/rails/plugin_new/plugin_new_generator.rb 1;" F
|
1554
|
+
plugin_new_generator_test.rb test/generators/plugin_new_generator_test.rb 1;" F
|
1555
|
+
plugin_ordering_test.rb test/railties/plugin_ordering_test.rb 1;" F
|
1556
|
+
plugin_test.rb test/railties/plugin_test.rb 1;" F
|
1557
|
+
plugins lib/rails/engine/railties.rb /^ def plugins$/;" f class:Rails.Engine.Railties
|
1558
|
+
plural_file_name lib/rails/generators/named_base.rb /^ def plural_file_name$/;" f class:Rails.Generators
|
1559
|
+
plural_name lib/rails/generators/named_base.rb /^ def plural_name$/;" f class:Rails.Generators
|
1560
|
+
plural_table_name lib/rails/generators/named_base.rb /^ def plural_table_name$/;" f class:Rails.Generators
|
1561
|
+
pluralize_table_names? lib/rails/generators/named_base.rb /^ def pluralize_table_names?$/;" f class:Rails.Generators
|
1562
|
+
plusplus guides/rails_guides/textile_extensions.rb /^ def plusplus(body)$/;" f class:RailsGuides.TextileExtensions
|
1563
|
+
pointer lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var pointer = [Event.pointerX(event), Event.pointerY(event)];$/;" v
|
1564
|
+
pointer tmp/app/public/javascripts/dragdrop.js /^ var pointer = [Event.pointerX(event), Event.pointerY(event)];$/;" v
|
1565
|
+
pointer tmp/app_template/public/javascripts/dragdrop.js /^ var pointer = [Event.pointerX(event), Event.pointerY(event)];$/;" v
|
1566
|
+
polymorphic_path_without_namespace test/railties/engine_test.rb /^ def polymorphic_path_without_namespace$/;" f class:Bukkits
|
1567
|
+
polymorphic_route test/railties/mounted_engine_test.rb /^ def polymorphic_route$/;" f class:ApplicationTests.ApplicationRoutingTest.ApplicationGeneratingController
|
1568
|
+
pop_d lib/rails/commands/plugin.rb /^ def pop_d$/;" f class:RecursiveHTTPFetcher.ls
|
1569
|
+
prepare_destination lib/rails/generators/test_case.rb /^ def prepare_destination$/;" f class:Rails.Generators.TestCase
|
1570
|
+
prepare_for_invocation lib/rails/generators/base.rb /^ def self.prepare_for_invocation(name, value) #:nodoc:$/;" F class:Rails
|
1571
|
+
print_code_test_stats lib/rails/code_statistics.rb /^ def print_code_test_stats$/;" f
|
1572
|
+
print_header lib/rails/code_statistics.rb /^ def print_header$/;" f class:CodeStatistics
|
1573
|
+
print_line lib/rails/code_statistics.rb /^ def print_line(name, statistics)$/;" f class:CodeStatistics
|
1574
|
+
print_list lib/rails/generators.rb /^ def self.print_list(base, namespaces) #:nodoc:$/;" F class:Rails
|
1575
|
+
print_profile lib/rails/rubyprof_ext.rb /^ def self.print_profile(results, io = $stderr)$/;" F class:Prof
|
1576
|
+
print_splitter lib/rails/code_statistics.rb /^ def print_splitter$/;" f class:CodeStatistics
|
1577
|
+
process guides/rails_guides/indexer.rb /^ def process(string, current_level=3, counters=[1])$/;" f class:RailsGuides.Indexer
|
1578
|
+
production.rb tmp/app_template/config/environments/production.rb 1;" F
|
1579
|
+
profiler.rb lib/rails/commands/profiler.rb 1;" F
|
1580
|
+
properties lib/rails/info_controller.rb /^ def properties$/;" f class:Rails
|
1581
|
+
properties test/rails_info_test.rb /^ def properties$/;" f
|
1582
|
+
property lib/rails/info.rb /^ def property(name, value = nil)$/;" f class:Rails
|
1583
|
+
property_defined? test/rails_info_test.rb /^ def property_defined?(property_name)$/;" f
|
1584
|
+
prototype.js lib/rails/generators/rails/app/templates/public/javascripts/prototype.js 1;" F
|
1585
|
+
prototype.js tmp/app/public/javascripts/prototype.js 1;" F
|
1586
|
+
prototype.js tmp/app_template/public/javascripts/prototype.js 1;" F
|
1587
|
+
prototype_ujs.js lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js 1;" F
|
1588
|
+
public_directory lib/rails/generators/rails/app/app_generator.rb /^ def public_directory$/;" f
|
1589
|
+
public_path lib/rails.rb /^ def public_path$/;" f class:Rails
|
1590
|
+
push_d lib/rails/commands/plugin.rb /^ def push_d(dir)$/;" f class:RecursiveHTTPFetcher.ls
|
1591
|
+
rack.rb lib/rails/rack.rb 1;" F
|
1592
|
+
rackup test/application/rackup_test.rb /^ def rackup$/;" f class:ApplicationTests.RackupTest
|
1593
|
+
rackup_test.rb test/application/rackup_test.rb 1;" F
|
1594
|
+
rails tmp/app_template/script/rails 1;" F
|
1595
|
+
rails.js tmp/app/public/javascripts/rails.js 1;" F
|
1596
|
+
rails.js tmp/app_template/public/javascripts/rails.js 1;" F
|
1597
|
+
rails.rb lib/rails.rb 1;" F
|
1598
|
+
rails_env lib/rails/commands/plugin.rb /^ def rails_env$/;" f
|
1599
|
+
rails_gemfile_entry lib/rails/generators/app_base.rb /^ def rails_gemfile_entry$/;" f class:Rails.Generators
|
1600
|
+
rails_guides.rb guides/rails_guides.rb 1;" F
|
1601
|
+
rails_info_controller_test.rb test/rails_info_controller_test.rb 1;" F
|
1602
|
+
rails_info_test.rb test/rails_info_test.rb 1;" F
|
1603
|
+
rails_root test/isolation/abstract_unit.rb /^ def rails_root$/;" f class:TestHelpers.Paths
|
1604
|
+
railtie.rb lib/rails/railtie.rb 1;" F
|
1605
|
+
railtie.rb lib/rails/test_unit/railtie.rb 1;" F
|
1606
|
+
railtie_name lib/rails/plugin.rb /^ def railtie_name$/;" f class:Rails
|
1607
|
+
railtie_name lib/rails/railtie.rb /^ def railtie_name(name = nil)$/;" f class:Rails.Railtie
|
1608
|
+
railtie_test.rb test/railties/railtie_test.rb 1;" F
|
1609
|
+
railties lib/rails/engine.rb /^ def railties$/;" f
|
1610
|
+
railties lib/rails/engine/railties.rb /^ def self.railties$/;" F class:Rails.Engine.Railties
|
1611
|
+
railties.rb lib/rails/application/railties.rb 1;" F
|
1612
|
+
railties.rb lib/rails/engine/railties.rb 1;" F
|
1613
|
+
rake lib/rails/generators/actions.rb /^ def rake(command, options={})$/;" f class:Rails.Generators
|
1614
|
+
rake_tasks lib/rails/railtie.rb /^ def rake_tasks(&blk)$/;" f class:Rails.Railtie
|
1615
|
+
rake_test.rb test/application/rake_test.rb 1;" F
|
1616
|
+
rakefile lib/rails/generators/actions.rb /^ def rakefile(filename, data=nil, &block)$/;" f class:Rails.Generators
|
1617
|
+
rakefile lib/rails/generators/rails/app/app_generator.rb /^ def rakefile$/;" f class:Rails.AppBuilder
|
1618
|
+
rakefile lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def rakefile$/;" f class:Rails.PluginBuilder
|
1619
|
+
rakefile_test_tasks lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def rakefile_test_tasks$/;" f class:Generators.PluginNewGenerator
|
1620
|
+
readme lib/rails/generators/actions.rb /^ def readme(path)$/;" f class:Rails.Generators.route
|
1621
|
+
readme lib/rails/generators/rails/app/app_generator.rb /^ def readme$/;" f class:Rails.AppBuilder
|
1622
|
+
readme lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def readme$/;" f class:Rails.PluginBuilder
|
1623
|
+
reference? lib/rails/generators/generated_attribute.rb /^ def reference?$/;" f class:Rails
|
1624
|
+
regular_class_path lib/rails/generators/named_base.rb /^ def regular_class_path$/;" f class:Rails.Generators
|
1625
|
+
reload! lib/rails/application/routes_reloader.rb /^ def reload!$/;" f class:Rails.Application.RoutesReloader
|
1626
|
+
reload! lib/rails/console/app.rb /^def reload!(print=true)$/;" f
|
1627
|
+
reload_routes! lib/rails/application.rb /^ def reload_routes!$/;" f class:Rails
|
1628
|
+
remote_ip test/application/middleware/remote_ip_test.rb /^ def remote_ip(env = {})$/;" f class:ApplicationTests.RemoteIpTest
|
1629
|
+
remote_ip_test.rb test/application/middleware/remote_ip_test.rb 1;" F
|
1630
|
+
remove_hook_for lib/rails/generators/base.rb /^ def self.remove_hook_for(*names)$/;" F class:Rails
|
1631
|
+
render_conditionally test/application/middleware/cache_test.rb /^ def render_conditionally(headers)$/;" f class:ApplicationTests.RoutingTest.simple_controller.ExpiresController
|
1632
|
+
require_environment! lib/rails/application.rb /^ def require_environment! #:nodoc:$/;" f class:Rails
|
1633
|
+
require_for_database lib/rails/generators/app_base.rb /^ def require_for_database$/;" f class:Rails.Generators
|
1634
|
+
reset_script_name! test/railties/mounted_engine_test.rb /^ def reset_script_name!$/;" f class:ApplicationTests
|
1635
|
+
resource_generator.rb lib/rails/generators/rails/resource/resource_generator.rb 1;" F
|
1636
|
+
resource_generator_test.rb test/generators/resource_generator_test.rb 1;" F
|
1637
|
+
resource_helpers.rb lib/rails/generators/resource_helpers.rb 1;" F
|
1638
|
+
respond_to? lib/rails/railtie/configurable.rb /^ def respond_to?(*args)$/;" f class:Rails.Railtie.Configurable.ClassMethods
|
1639
|
+
respond_to? lib/rails/railtie/configuration.rb /^ def respond_to?(name)$/;" f class:Rails.Railtie.Configuration
|
1640
|
+
revert lib/rails/application/routes_reloader.rb /^ def revert$/;" f class:Rails.Application.RoutesReloader
|
1641
|
+
root lib/rails.rb /^ def root$/;" f class:Rails
|
1642
|
+
root test/application/paths_test.rb /^ def root(*path)$/;" f class:ApplicationTests.PathsTest
|
1643
|
+
root test/generators/generators_test_helper.rb /^ def self.root$/;" F class:Rails
|
1644
|
+
root.children lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ parent: null,$/;" p
|
1645
|
+
root.children tmp/app/public/javascripts/dragdrop.js /^ parent: null,$/;" p
|
1646
|
+
root.children tmp/app_template/public/javascripts/dragdrop.js /^ parent: null,$/;" p
|
1647
|
+
root.id lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var root = {$/;" p
|
1648
|
+
root.id tmp/app/public/javascripts/dragdrop.js /^ var root = {$/;" p
|
1649
|
+
root.id tmp/app_template/public/javascripts/dragdrop.js /^ var root = {$/;" p
|
1650
|
+
root.parent lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ id: null,$/;" p
|
1651
|
+
root.parent tmp/app/public/javascripts/dragdrop.js /^ id: null,$/;" p
|
1652
|
+
root.parent tmp/app_template/public/javascripts/dragdrop.js /^ id: null,$/;" p
|
1653
|
+
root= lib/rails/engine/configuration.rb /^ def root=(value)$/;" f class:Rails.Engine.Configuration
|
1654
|
+
route lib/rails/generators/actions.rb /^ def route(routing_code)$/;" f class:Rails.Generators
|
1655
|
+
route_url lib/rails/generators/named_base.rb /^ def route_url$/;" f class:Rails.Generators
|
1656
|
+
routes lib/rails/engine.rb /^ def routes$/;" f
|
1657
|
+
routes.rb lib/rails/generators/rails/app/templates/config/routes.rb 1;" F
|
1658
|
+
routes.rb lib/rails/generators/rails/plugin_new/templates/config/routes.rb 1;" F
|
1659
|
+
routes.rb lib/rails/generators/rails/plugin_new/templates/rails/routes.rb 1;" F
|
1660
|
+
routes.rb tmp/app/config/routes.rb 1;" F
|
1661
|
+
routes.rb tmp/app_template/config/routes.rb 1;" F
|
1662
|
+
routes? lib/rails/engine.rb /^ def routes?$/;" f
|
1663
|
+
routes_helpers_in_view test/railties/engine_test.rb /^ def routes_helpers_in_view$/;" f class:Bukkits
|
1664
|
+
routes_reloader lib/rails/application.rb /^ def routes_reloader$/;" f class:Rails
|
1665
|
+
routes_reloader.rb lib/rails/application/routes_reloader.rb 1;" F
|
1666
|
+
routing_test.rb test/application/routing_test.rb 1;" F
|
1667
|
+
ruby test/application/test_test.rb /^ def ruby(*args)$/;" f
|
1668
|
+
ruby_version_check.rb lib/rails/ruby_version_check.rb 1;" F
|
1669
|
+
rubyprof_ext.rb lib/rails/rubyprof_ext.rb 1;" F
|
1670
|
+
run lib/rails/initializable.rb /^ def run(*args)$/;" f class:Rails.Initializable.Initializer
|
1671
|
+
run_generator lib/rails/generators/test_case.rb /^ def run_generator(args=self.default_arguments, config={})$/;" f class:Rails.Generators.TestCase
|
1672
|
+
run_initializers lib/rails/initializable.rb /^ def run_initializers(*args)$/;" f class:Rails.Initializable
|
1673
|
+
run_install_hook lib/rails/commands/plugin.rb /^ def run_install_hook$/;" f class:Plugin
|
1674
|
+
run_test test/application/test_test.rb /^ def run_test(name)$/;" f
|
1675
|
+
run_uninstall_hook lib/rails/commands/plugin.rb /^ def run_uninstall_hook$/;" f class:Plugin
|
1676
|
+
runner.rb lib/rails/commands/runner.rb 1;" F
|
1677
|
+
runner_test.rb test/application/runner_test.rb 1;" F
|
1678
|
+
s lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var s = Sortable.sortables[element.id];$/;" v
|
1679
|
+
s tmp/app/public/javascripts/dragdrop.js /^ var s = Sortable.sortables[element.id];$/;" v
|
1680
|
+
s tmp/app_template/public/javascripts/dragdrop.js /^ var s = Sortable.sortables[element.id];$/;" v
|
1681
|
+
sandbox.rb lib/rails/console/sandbox.rb 1;" F
|
1682
|
+
save lib/rails/generators/active_model.rb /^ def save$/;" f class:Rails.Generators.ActiveModel
|
1683
|
+
scaffold_controller_generator.rb lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb 1;" F
|
1684
|
+
scaffold_controller_generator_test.rb test/generators/scaffold_controller_generator_test.rb 1;" F
|
1685
|
+
scaffold_generator.rb lib/rails/generators/erb/scaffold/scaffold_generator.rb 1;" F
|
1686
|
+
scaffold_generator.rb lib/rails/generators/rails/scaffold/scaffold_generator.rb 1;" F
|
1687
|
+
scaffold_generator.rb lib/rails/generators/test_unit/scaffold/scaffold_generator.rb 1;" F
|
1688
|
+
scaffold_generator_test.rb test/generators/scaffold_generator_test.rb 1;" F
|
1689
|
+
script lib/rails/generators/rails/app/app_generator.rb /^ def script$/;" f
|
1690
|
+
script lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def script(force = false)$/;" f class:Rails.PluginBuilder
|
1691
|
+
script test/isolation/abstract_unit.rb /^ def script(script)$/;" f
|
1692
|
+
script_name test/railties/mounted_engine_test.rb /^ def script_name(script_name)$/;" f class:ApplicationTests
|
1693
|
+
script_rails_loader.rb lib/rails/script_rails_loader.rb 1;" F
|
1694
|
+
script_rails_loader_test.rb test/script_rails_loader_test.rb 1;" F
|
1695
|
+
secret_token.rb tmp/app_template/config/initializers/secret_token.rb 1;" F
|
1696
|
+
seeds.rb lib/rails/generators/rails/app/templates/db/seeds.rb 1;" F
|
1697
|
+
seeds.rb tmp/app/db/seeds.rb 1;" F
|
1698
|
+
seeds.rb tmp/app_template/db/seeds.rb 1;" F
|
1699
|
+
select_only guides/rails_guides/generator.rb /^ def select_only(guides)$/;" f class:RailsGuides.Generator
|
1700
|
+
select_only guides/w3c_validator.rb /^ def select_only(guides)$/;" f class:RailsGuides.Validator
|
1701
|
+
sendfile_test.rb test/application/middleware/sendfile_test.rb 1;" F
|
1702
|
+
server.rb lib/rails/commands/server.rb 1;" F
|
1703
|
+
session_migration_generator.rb lib/rails/generators/rails/session_migration/session_migration_generator.rb 1;" F
|
1704
|
+
session_migration_generator_test.rb test/generators/session_migration_generator_test.rb 1;" F
|
1705
|
+
session_store lib/rails/application/configuration.rb /^ def session_store(*args)$/;" f class:Rails.Application.Configuration
|
1706
|
+
session_store.rb tmp/app_template/config/initializers/session_store.rb 1;" F
|
1707
|
+
set_default_accessors! lib/rails/generators/app_base.rb /^ def set_default_accessors!$/;" f class:Rails.Generators.AppBase
|
1708
|
+
set_environment lib/rails/commands/server.rb /^ def set_environment$/;" f class:Rails.Server
|
1709
|
+
set_flags_from_environment guides/rails_guides/generator.rb /^ def set_flags_from_environment$/;" f class:RailsGuides.Generator
|
1710
|
+
set_header_section guides/rails_guides/generator.rb /^ def set_header_section(body, view)$/;" f class:RailsGuides.Generator
|
1711
|
+
set_index guides/rails_guides/generator.rb /^ def set_index(body, view)$/;" f class:RailsGuides.Generator
|
1712
|
+
setup test/application/configuration_test.rb /^ def setup$/;" f class:ApplicationTests.ConfigurationTest
|
1713
|
+
setup test/application/console_test.rb /^ def setup$/;" f class:ConsoleTest
|
1714
|
+
setup test/application/generators_test.rb /^ def setup$/;" f class:ApplicationTests.GeneratorsTest
|
1715
|
+
setup test/application/initializers/boot_test.rb /^ def setup$/;" f class:ApplicationTests.GemBooting
|
1716
|
+
setup test/application/initializers/check_ruby_version_test.rb /^ def setup$/;" f class:ApplicationTests.CheckRubyVersionTest
|
1717
|
+
setup test/application/initializers/frameworks_test.rb /^ def setup$/;" f class:ApplicationTests.FrameworlsTest
|
1718
|
+
setup test/application/initializers/hooks_test.rb /^ def setup$/;" f class:ApplicationTests.InitializersTest
|
1719
|
+
setup test/application/initializers/i18n_test.rb /^ def setup$/;" f class:ApplicationTests.I18nTest
|
1720
|
+
setup test/application/initializers/load_path_test.rb /^ def setup$/;" f class:ApplicationTests.LoadPathTest
|
1721
|
+
setup test/application/initializers/notifications_test.rb /^ def setup$/;" f class:ApplicationTests.NotificationsTest
|
1722
|
+
setup test/application/loading_test.rb /^ def setup$/;" f class:LoadingTest
|
1723
|
+
setup test/application/middleware/best_practices_test.rb /^ def setup$/;" f class:ApplicationTests.BestPracticesTest
|
1724
|
+
setup test/application/middleware/cache_test.rb /^ def setup$/;" f class:ApplicationTests.RoutingTest
|
1725
|
+
setup test/application/middleware/remote_ip_test.rb /^ def setup$/;" f class:ApplicationTests.RemoteIpTest
|
1726
|
+
setup test/application/middleware/sendfile_test.rb /^ def setup$/;" f class:ApplicationTests.SendfileTest
|
1727
|
+
setup test/application/middleware_test.rb /^ def setup$/;" f class:ApplicationTests.MiddlewareTest
|
1728
|
+
setup test/application/paths_test.rb /^ def setup$/;" f class:ApplicationTests.PathsTest
|
1729
|
+
setup test/application/rackup_test.rb /^ def setup$/;" f class:ApplicationTests.RackupTest
|
1730
|
+
setup test/application/rake_test.rb /^ def setup$/;" f class:ApplicationTests.RakeTest
|
1731
|
+
setup test/application/routing_test.rb /^ def setup$/;" f class:ApplicationTests.RoutingTest
|
1732
|
+
setup test/application/runner_test.rb /^ def setup$/;" f class:ApplicationTests.RunnerTest
|
1733
|
+
setup test/application/test_test.rb /^ def setup$/;" f class:ApplicationTests.TestTest
|
1734
|
+
setup test/backtrace_cleaner_test.rb /^ def setup$/;" f class:BacktraceCleanerFilterTest
|
1735
|
+
setup test/backtrace_cleaner_test.rb /^ def setup$/;" f class:BacktraceCleanerVendorGemTest
|
1736
|
+
setup test/generators/actions_test.rb /^ def setup$/;" f class:ActionsTest
|
1737
|
+
setup test/generators/namespaced_generators_test.rb /^ def setup$/;" f class:NamespacedGeneratorTestCase
|
1738
|
+
setup test/generators/shared_generator_tests.rb /^ def setup$/;" f class:SharedCustomGeneratorTests
|
1739
|
+
setup test/generators/shared_generator_tests.rb /^ def setup$/;" f class:SharedGeneratorTests
|
1740
|
+
setup test/generators_test.rb /^ def setup$/;" f class:GeneratorsTest
|
1741
|
+
setup test/paths_test.rb /^ def setup$/;" f class:PathsTest
|
1742
|
+
setup test/rails_info_controller_test.rb /^ def setup$/;" f class:InfoControllerTest
|
1743
|
+
setup test/rails_info_test.rb /^ def setup$/;" f class:InfoTest
|
1744
|
+
setup test/railties/engine_test.rb /^ def setup$/;" f class:RailtiesTest.EngineTest
|
1745
|
+
setup test/railties/mounted_engine_test.rb /^ def setup$/;" f class:ApplicationTests.ApplicationRoutingTest
|
1746
|
+
setup test/railties/plugin_ordering_test.rb /^ def setup$/;" f class:RailtiesTest.PluginOrderingTest
|
1747
|
+
setup test/railties/plugin_test.rb /^ def setup$/;" f class:RailtiesTest.PluginTest
|
1748
|
+
setup test/railties/railtie_test.rb /^ def setup$/;" f class:RailtiesTest.RailtieTest
|
1749
|
+
setup_ar! test/application/loading_test.rb /^ def setup_ar!$/;" f
|
1750
|
+
shBrushAS3.js guides/assets/javascripts/syntaxhighlighter/shBrushAS3.js 1;" F
|
1751
|
+
shBrushAppleScript.js guides/assets/javascripts/syntaxhighlighter/shBrushAppleScript.js 1;" F
|
1752
|
+
shBrushBash.js guides/assets/javascripts/syntaxhighlighter/shBrushBash.js 1;" F
|
1753
|
+
shBrushCSharp.js guides/assets/javascripts/syntaxhighlighter/shBrushCSharp.js 1;" F
|
1754
|
+
shBrushColdFusion.js guides/assets/javascripts/syntaxhighlighter/shBrushColdFusion.js 1;" F
|
1755
|
+
shBrushCpp.js guides/assets/javascripts/syntaxhighlighter/shBrushCpp.js 1;" F
|
1756
|
+
shBrushCss.js guides/assets/javascripts/syntaxhighlighter/shBrushCss.js 1;" F
|
1757
|
+
shBrushDelphi.js guides/assets/javascripts/syntaxhighlighter/shBrushDelphi.js 1;" F
|
1758
|
+
shBrushDiff.js guides/assets/javascripts/syntaxhighlighter/shBrushDiff.js 1;" F
|
1759
|
+
shBrushErlang.js guides/assets/javascripts/syntaxhighlighter/shBrushErlang.js 1;" F
|
1760
|
+
shBrushGroovy.js guides/assets/javascripts/syntaxhighlighter/shBrushGroovy.js 1;" F
|
1761
|
+
shBrushJScript.js guides/assets/javascripts/syntaxhighlighter/shBrushJScript.js 1;" F
|
1762
|
+
shBrushJava.js guides/assets/javascripts/syntaxhighlighter/shBrushJava.js 1;" F
|
1763
|
+
shBrushJavaFX.js guides/assets/javascripts/syntaxhighlighter/shBrushJavaFX.js 1;" F
|
1764
|
+
shBrushPerl.js guides/assets/javascripts/syntaxhighlighter/shBrushPerl.js 1;" F
|
1765
|
+
shBrushPhp.js guides/assets/javascripts/syntaxhighlighter/shBrushPhp.js 1;" F
|
1766
|
+
shBrushPlain.js guides/assets/javascripts/syntaxhighlighter/shBrushPlain.js 1;" F
|
1767
|
+
shBrushPowerShell.js guides/assets/javascripts/syntaxhighlighter/shBrushPowerShell.js 1;" F
|
1768
|
+
shBrushPython.js guides/assets/javascripts/syntaxhighlighter/shBrushPython.js 1;" F
|
1769
|
+
shBrushRuby.js guides/assets/javascripts/syntaxhighlighter/shBrushRuby.js 1;" F
|
1770
|
+
shBrushSass.js guides/assets/javascripts/syntaxhighlighter/shBrushSass.js 1;" F
|
1771
|
+
shBrushScala.js guides/assets/javascripts/syntaxhighlighter/shBrushScala.js 1;" F
|
1772
|
+
shBrushSql.js guides/assets/javascripts/syntaxhighlighter/shBrushSql.js 1;" F
|
1773
|
+
shBrushVb.js guides/assets/javascripts/syntaxhighlighter/shBrushVb.js 1;" F
|
1774
|
+
shBrushXml.js guides/assets/javascripts/syntaxhighlighter/shBrushXml.js 1;" F
|
1775
|
+
shCore.js guides/assets/javascripts/syntaxhighlighter/shCore.js 1;" F
|
1776
|
+
shared_generator_tests.rb test/generators/shared_generator_tests.rb 1;" F
|
1777
|
+
shared_tests.rb test/railties/shared_tests.rb 1;" F
|
1778
|
+
show lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def show$/;" f
|
1779
|
+
show test/railties/engine_test.rb /^ def show$/;" f class:Bukkits
|
1780
|
+
show_deprecation lib/rails/generators/rails/plugin/plugin_generator.rb /^ def show_deprecation$/;" f class:Rails.Generators.PluginGenerator
|
1781
|
+
show_results guides/w3c_validator.rb /^ def show_results(error_list)$/;" f class:RailsGuides.Validator
|
1782
|
+
simple_builder.rb test/fixtures/lib/app_builders/simple_builder.rb 1;" F
|
1783
|
+
simple_builder.rb test/fixtures/lib/plugin_builders/simple_builder.rb 1;" F
|
1784
|
+
simple_controller test/application/middleware/cache_test.rb /^ def simple_controller$/;" f class:ApplicationTests.RoutingTest
|
1785
|
+
simple_controller test/isolation/abstract_unit.rb /^ def simple_controller$/;" f
|
1786
|
+
singular_table_name lib/rails/generators/named_base.rb /^ def singular_table_name$/;" f class:Rails.Generators
|
1787
|
+
skip_ lib/rails/paths.rb /^ def skip_#{m}!$/;" f class:Rails.Paths.Path
|
1788
|
+
skip_test_unit? test/fixtures/lib/plugin_builders/spec_builder.rb /^ def skip_test_unit?$/;" f class:PluginBuilder
|
1789
|
+
something test/railties/engine_test.rb /^ def something$/;" f class:SomeHelper
|
1790
|
+
source_annotation_extractor.rb lib/rails/source_annotation_extractor.rb 1;" F
|
1791
|
+
source_root lib/rails/generators/base.rb /^ def self.source_root(path=nil)$/;" F class:Rails.Generators.Base
|
1792
|
+
spec_builder.rb test/fixtures/lib/plugin_builders/spec_builder.rb 1;" F
|
1793
|
+
split_args lib/rails/commands/plugin.rb /^ def split_args(args)$/;" f class:Commands.Plugin
|
1794
|
+
start lib/rails/commands/console.rb /^ def self.start(app)$/;" F class:Rails.Console
|
1795
|
+
start lib/rails/commands/console.rb /^ def start$/;" f class:Rails.Console
|
1796
|
+
start lib/rails/commands/dbconsole.rb /^ def self.start(app)$/;" F class:Rails.DBConsole
|
1797
|
+
start lib/rails/commands/dbconsole.rb /^ def start$/;" f class:Rails.DBConsole
|
1798
|
+
start lib/rails/commands/server.rb /^ def start$/;" f class:Rails.Server
|
1799
|
+
static.rb lib/rails/rack/static.rb 1;" F
|
1800
|
+
static_asset_paths lib/rails/railtie/configuration.rb /^ def static_asset_paths$/;" f class:Rails.Railtie.Configuration
|
1801
|
+
stringify lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function stringify(object) {$/;" f
|
1802
|
+
stringify tmp/app/public/javascripts/prototype.js /^ function stringify(object) {$/;" f
|
1803
|
+
stringify tmp/app_template/public/javascripts/prototype.js /^ function stringify(object) {$/;" f
|
1804
|
+
stylesheets lib/rails/generators/rails/app/app_generator.rb /^ def stylesheets$/;" f
|
1805
|
+
stylesheets lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def stylesheets$/;" f class:Rails.PluginBuilder
|
1806
|
+
stylesheets_generator.rb lib/rails/generators/rails/stylesheets/stylesheets_generator.rb 1;" F
|
1807
|
+
stylesheets_generator_test.rb test/generators/stylesheets_generator_test.rb 1;" F
|
1808
|
+
subclasses lib/rails/generators.rb /^ def self.subclasses$/;" F class:Rails.Generators
|
1809
|
+
subclasses lib/rails/railtie.rb /^ def subclasses$/;" f class:Rails.Railtie
|
1810
|
+
submitBubbles lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ var submitBubbles = isEventSupported('submit'),$/;" v
|
1811
|
+
submitBubbles tmp/app/public/javascripts/rails.js /^ var submitBubbles = isEventSupported('submit'),$/;" v
|
1812
|
+
submitBubbles tmp/app_template/public/javascripts/rails.js /^ var submitBubbles = isEventSupported('submit'),$/;" v
|
1813
|
+
svn_command lib/rails/commands/plugin.rb /^ def svn_command(cmd, options = {})$/;" f
|
1814
|
+
svn_info test/rails_info_test.rb /^ def svn_info$/;" f class:InfoTest.svn_info=
|
1815
|
+
svn_info= test/rails_info_test.rb /^ def svn_info=(info)$/;" f class:InfoTest
|
1816
|
+
svn_url? lib/rails/commands/plugin.rb /^ def svn_url?$/;" f class:Plugin
|
1817
|
+
swap lib/rails/configuration.rb /^ def swap(*args, &block)$/;" f class:Rails.Configuration.MiddlewareStackProxy
|
1818
|
+
table_name lib/rails/generators/named_base.rb /^ def table_name$/;" f class:Rails.Generators
|
1819
|
+
table_name_prefix test/railties/engine_test.rb /^ def self.table_name_prefix$/;" F class:Bukkits
|
1820
|
+
tail! lib/rails/rack/log_tailer.rb /^ def tail!$/;" f class:Rails.Rack.LogTailer
|
1821
|
+
tasks.rb lib/rails/tasks.rb 1;" F
|
1822
|
+
teardown test/application/configuration_test.rb /^ def teardown$/;" f class:ApplicationTests.ConfigurationTest
|
1823
|
+
teardown test/generators/actions_test.rb /^ def teardown$/;" f class:ActionsTest
|
1824
|
+
teardown test/generators/namespaced_generators_test.rb /^ def teardown$/;" f class:NamespacedGeneratorTestCase
|
1825
|
+
teardown test/generators/shared_generator_tests.rb /^ def teardown$/;" f class:SharedCustomGeneratorTests
|
1826
|
+
teardown test/generators/shared_generator_tests.rb /^ def teardown$/;" f class:SharedGeneratorTests
|
1827
|
+
teardown test/generators_test.rb /^ def teardown$/;" f class:GeneratorsTest
|
1828
|
+
template lib/rails/generators/named_base.rb /^ def template(source, *args, &block)$/;" f class:Rails.Generators.NamedBase
|
1829
|
+
template.rb test/fixtures/lib/template.rb 1;" F
|
1830
|
+
templates_path lib/rails/generators.rb /^ def self.templates_path$/;" F class:Rails.Generators
|
1831
|
+
test lib/rails/generators/rails/app/app_generator.rb /^ def test$/;" f
|
1832
|
+
test lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def test$/;" f class:Rails.PluginBuilder
|
1833
|
+
test test/fixtures/lib/plugin_builders/spec_builder.rb /^ def test$/;" f class:PluginBuilder
|
1834
|
+
test.rb tmp/app_template/config/environments/test.rb 1;" F
|
1835
|
+
test_access_to_helpers test/application/console_test.rb /^ def test_access_to_helpers$/;" f class:ConsoleTest
|
1836
|
+
test_actions_are_turned_into_methods test/generators/controller_generator_test.rb /^ def test_actions_are_turned_into_methods$/;" f class:ControllerGeneratorTest
|
1837
|
+
test_actions_are_turned_into_methods test/generators/mailer_generator_test.rb /^ def test_actions_are_turned_into_methods$/;" f
|
1838
|
+
test_active_record_does_not_panic_when_referencing_an_observed_constant test/application/console_test.rb /^ def test_active_record_does_not_panic_when_referencing_an_observed_constant$/;" f class:ConsoleTest
|
1839
|
+
test_active_record_is_removed_from_frameworks_if_skip_active_record_is_given test/generators/app_generator_test.rb /^ def test_active_record_is_removed_from_frameworks_if_skip_active_record_is_given$/;" f
|
1840
|
+
test_active_record_is_removed_from_frameworks_if_skip_active_record_is_given test/generators/plugin_new_generator_test.rb /^ def test_active_record_is_removed_from_frameworks_if_skip_active_record_is_given$/;" f class:PluginNewGeneratorTest
|
1841
|
+
test_add_migration_with_attributes test/generators/migration_generator_test.rb /^ def test_add_migration_with_attributes$/;" f class:MigrationGeneratorTest
|
1842
|
+
test_add_routes test/generators/controller_generator_test.rb /^ def test_add_routes$/;" f class:ControllerGeneratorTest
|
1843
|
+
test_add_source_adds_source_to_gemfile test/generators/actions_test.rb /^ def test_add_source_adds_source_to_gemfile$/;" f class:ActionsTest
|
1844
|
+
test_adds_helpers_to_controller_views test/railties/shared_tests.rb /^ def test_adds_helpers_to_controller_views$/;" f class:RailtiesTest
|
1845
|
+
test_adds_its_views_to_view_paths test/railties/shared_tests.rb /^ def test_adds_its_views_to_view_paths$/;" f class:RailtiesTest
|
1846
|
+
test_adds_its_views_to_view_paths_with_lower_proriority_than_app_ones test/railties/shared_tests.rb /^ def test_adds_its_views_to_view_paths_with_lower_proriority_than_app_ones$/;" f class:RailtiesTest
|
1847
|
+
test_adds_namespace_to_model test/generators/namespaced_generators_test.rb /^ def test_adds_namespace_to_model$/;" f class:NamespacedModelGeneratorTest
|
1848
|
+
test_app_method_should_return_integration_session test/application/console_test.rb /^ def test_app_method_should_return_integration_session$/;" f class:ConsoleTest
|
1849
|
+
test_application_controller_and_layout_files test/generators/app_generator_test.rb /^ def test_application_controller_and_layout_files$/;" f class:AppGeneratorTest
|
1850
|
+
test_application_name test/generators/named_base_test.rb /^ def test_application_name$/;" f class:NamedBaseTest
|
1851
|
+
test_application_name_is_detected_if_it_exists_and_app_folder_renamed test/generators/app_generator_test.rb /^ def test_application_name_is_detected_if_it_exists_and_app_folder_renamed$/;" f class:AppGeneratorTest
|
1852
|
+
test_application_names_are_not_singularized test/generators/app_generator_test.rb /^ def test_application_names_are_not_singularized$/;" f class:AppGeneratorTest
|
1853
|
+
test_autoload_any_path_under_app test/railties/shared_tests.rb /^ def test_autoload_any_path_under_app$/;" f class:RailtiesTest
|
1854
|
+
test_being_quiet_while_creating_dummy_application test/generators/plugin_new_generator_test.rb /^ def test_being_quiet_while_creating_dummy_application$/;" f class:PluginNewGeneratorTest
|
1855
|
+
test_builder_option_with_empty_app_builder test/generators/shared_generator_tests.rb /^ def test_builder_option_with_empty_app_builder$/;" f class:SharedCustomGeneratorTests
|
1856
|
+
test_builder_option_with_http test/generators/shared_generator_tests.rb /^ def test_builder_option_with_http$/;" f class:SharedCustomGeneratorTests
|
1857
|
+
test_builder_option_with_relative_path test/generators/shared_generator_tests.rb /^ def test_builder_option_with_relative_path$/;" f class:SharedCustomGeneratorTests
|
1858
|
+
test_builder_option_with_simple_plugin_builder test/generators/shared_generator_tests.rb /^ def test_builder_option_with_simple_plugin_builder$/;" f class:SharedCustomGeneratorTests
|
1859
|
+
test_builder_option_with_tweak_plugin_builder test/generators/shared_generator_tests.rb /^ def test_builder_option_with_tweak_plugin_builder$/;" f class:SharedCustomGeneratorTests
|
1860
|
+
test_cache_is_disabled_in_dev_mode test/application/middleware/cache_test.rb /^ def test_cache_is_disabled_in_dev_mode$/;" f class:ApplicationTests.RoutingTest
|
1861
|
+
test_cache_works_with_etags test/application/middleware/cache_test.rb /^ def test_cache_works_with_etags$/;" f class:ApplicationTests.RoutingTest
|
1862
|
+
test_cache_works_with_etags_private test/application/middleware/cache_test.rb /^ def test_cache_works_with_etags_private$/;" f class:ApplicationTests.RoutingTest
|
1863
|
+
test_cache_works_with_expires test/application/middleware/cache_test.rb /^ def test_cache_works_with_expires$/;" f class:ApplicationTests.RoutingTest
|
1864
|
+
test_cache_works_with_expires_private test/application/middleware/cache_test.rb /^ def test_cache_works_with_expires_private$/;" f class:ApplicationTests.RoutingTest
|
1865
|
+
test_cache_works_with_last_modified test/application/middleware/cache_test.rb /^ def test_cache_works_with_last_modified$/;" f class:ApplicationTests.RoutingTest
|
1866
|
+
test_cache_works_with_last_modified_private test/application/middleware/cache_test.rb /^ def test_cache_works_with_last_modified_private$/;" f class:ApplicationTests.RoutingTest
|
1867
|
+
test_capify_should_run_the_capify_command test/generators/actions_test.rb /^ def test_capify_should_run_the_capify_command$/;" f class:ActionsTest
|
1868
|
+
test_case.rb lib/rails/generators/test_case.rb 1;" F
|
1869
|
+
test_check_class_collision test/generators/controller_generator_test.rb /^ def test_check_class_collision$/;" f class:ControllerGeneratorTest
|
1870
|
+
test_check_class_collision test/generators/helper_generator_test.rb /^ def test_check_class_collision$/;" f class:HelperGeneratorTest
|
1871
|
+
test_check_class_collision test/generators/mailer_generator_test.rb /^ def test_check_class_collision$/;" f
|
1872
|
+
test_check_class_collision test/generators/model_generator_test.rb /^ def test_check_class_collision$/;" f
|
1873
|
+
test_check_class_collision test/generators/plugin_generator_test.rb /^ def test_check_class_collision$/;" f class:PluginGeneratorTest
|
1874
|
+
test_check_class_collision_on_tests test/generators/helper_generator_test.rb /^ def test_check_class_collision_on_tests$/;" f class:HelperGeneratorTest
|
1875
|
+
test_code_statistics_sanity test/application/rake_test.rb /^ def test_code_statistics_sanity$/;" f class:ApplicationTests
|
1876
|
+
test_config_another_database test/generators/app_generator_test.rb /^ def test_config_another_database$/;" f class:AppGeneratorTest
|
1877
|
+
test_config_another_database test/generators/plugin_new_generator_test.rb /^ def test_config_another_database$/;" f class:PluginNewGeneratorTest
|
1878
|
+
test_config_database_is_added_by_default test/generators/app_generator_test.rb /^ def test_config_database_is_added_by_default$/;" f class:AppGeneratorTest
|
1879
|
+
test_config_jquery_javascript_library test/generators/app_generator_test.rb /^ def test_config_jquery_javascript_library$/;" f
|
1880
|
+
test_config_prototype_javascript_library test/generators/app_generator_test.rb /^ def test_config_prototype_javascript_library$/;" f
|
1881
|
+
test_constants_in_app_are_autoloaded test/application/loading_test.rb /^ def test_constants_in_app_are_autoloaded$/;" f class:LoadingTest
|
1882
|
+
test_controller_skeleton_is_created test/generators/controller_generator_test.rb /^ def test_controller_skeleton_is_created$/;" f class:ControllerGeneratorTest
|
1883
|
+
test_controller_skeleton_is_created test/generators/scaffold_controller_generator_test.rb /^ def test_controller_skeleton_is_created$/;" f class:ScaffoldControllerGeneratorTest
|
1884
|
+
test_copy_stylesheets test/generators/stylesheets_generator_test.rb /^ def test_copy_stylesheets$/;" f class:StylesheetsGeneratorTest
|
1885
|
+
test_copying_assets test/railties/shared_tests.rb /^ def test_copying_assets$/;" f class:RailtiesTest.SharedTests
|
1886
|
+
test_copying_migrations test/railties/shared_tests.rb /^ def test_copying_migrations$/;" f class:RailtiesTest.SharedTests
|
1887
|
+
test_create_file_should_write_block_contents_to_file_path test/generators/actions_test.rb /^ def test_create_file_should_write_block_contents_to_file_path$/;" f class:ActionsTest
|
1888
|
+
test_create_file_should_write_data_to_file_path test/generators/actions_test.rb /^ def test_create_file_should_write_data_to_file_path$/;" f class:ActionsTest
|
1889
|
+
test_create_mountable_application_with_mountable_option test/generators/plugin_new_generator_test.rb /^ def test_create_mountable_application_with_mountable_option$/;" f class:PluginNewGeneratorTest
|
1890
|
+
test_creates_generator_if_required test/generators/plugin_generator_test.rb /^ def test_creates_generator_if_required$/;" f class:PluginGeneratorTest
|
1891
|
+
test_creates_tasks_if_required test/generators/plugin_generator_test.rb /^ def test_creates_tasks_if_required$/;" f class:PluginGeneratorTest
|
1892
|
+
test_creating_engine_in_full_mode test/generators/plugin_new_generator_test.rb /^ def test_creating_engine_in_full_mode$/;" f class:PluginNewGeneratorTest
|
1893
|
+
test_customized_orm_is_used test/generators/scaffold_controller_generator_test.rb /^ def test_customized_orm_is_used$/;" f
|
1894
|
+
test_database_entry_is_assed_by_default_in_full_mode test/generators/plugin_new_generator_test.rb /^ def test_database_entry_is_assed_by_default_in_full_mode$/;" f class:PluginNewGeneratorTest
|
1895
|
+
test_default_banner_should_not_show_rails_generator_namespace test/generators_test.rb /^ def test_default_banner_should_not_show_rails_generator_namespace$/;" f class:GeneratorsTest
|
1896
|
+
test_default_banner_should_show_generator_namespace test/generators_test.rb /^ def test_default_banner_should_show_generator_namespace$/;" f class:GeneratorsTest
|
1897
|
+
test_default_namespace test/generators/app_generator_test.rb /^ def test_default_namespace$/;" f
|
1898
|
+
test_default_orm_is_used test/generators/scaffold_controller_generator_test.rb /^ def test_default_orm_is_used$/;" f
|
1899
|
+
test_default_usage test/generators/app_generator_test.rb /^ def test_default_usage$/;" f
|
1900
|
+
test_default_value_is_boolean test/generators/generated_attribute_test.rb /^ def test_default_value_is_boolean$/;" f class:GeneratedAttributeTest
|
1901
|
+
test_default_value_is_date test/generators/generated_attribute_test.rb /^ def test_default_value_is_date$/;" f class:GeneratedAttributeTest
|
1902
|
+
test_default_value_is_datetime test/generators/generated_attribute_test.rb /^ def test_default_value_is_datetime$/;" f class:GeneratedAttributeTest
|
1903
|
+
test_default_value_is_decimal test/generators/generated_attribute_test.rb /^ def test_default_value_is_decimal$/;" f class:GeneratedAttributeTest
|
1904
|
+
test_default_value_is_empty_string test/generators/generated_attribute_test.rb /^ def test_default_value_is_empty_string$/;" f class:GeneratedAttributeTest
|
1905
|
+
test_default_value_is_float test/generators/generated_attribute_test.rb /^ def test_default_value_is_float$/;" f class:GeneratedAttributeTest
|
1906
|
+
test_default_value_is_integer test/generators/generated_attribute_test.rb /^ def test_default_value_is_integer$/;" f class:GeneratedAttributeTest
|
1907
|
+
test_default_value_is_nil test/generators/generated_attribute_test.rb /^ def test_default_value_is_nil$/;" f class:GeneratedAttributeTest
|
1908
|
+
test_default_value_is_string test/generators/generated_attribute_test.rb /^ def test_default_value_is_string$/;" f class:GeneratedAttributeTest
|
1909
|
+
test_default_value_is_text test/generators/generated_attribute_test.rb /^ def test_default_value_is_text$/;" f class:GeneratedAttributeTest
|
1910
|
+
test_deprecation test/generators/plugin_generator_test.rb /^ def test_deprecation$/;" f class:PluginGeneratorTest
|
1911
|
+
test_descendants_are_cleaned_on_each_request_without_cache_classes test/application/loading_test.rb /^ def test_descendants_are_cleaned_on_each_request_without_cache_classes$/;" f
|
1912
|
+
test_dev_option test/generators/shared_generator_tests.rb /^ def test_dev_option$/;" f class:SharedGeneratorTests
|
1913
|
+
test_developer_options_are_overwriten_by_user_options test/generators_test.rb /^ def test_developer_options_are_overwriten_by_user_options$/;" f class:GeneratorsTest
|
1914
|
+
test_does_not_invoke_helper_if_required test/generators/controller_generator_test.rb /^ def test_does_not_invoke_helper_if_required$/;" f class:ControllerGeneratorTest
|
1915
|
+
test_does_not_invoke_test_framework_if_required test/generators/controller_generator_test.rb /^ def test_does_not_invoke_test_framework_if_required$/;" f class:ControllerGeneratorTest
|
1916
|
+
test_dummy_clean lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def test_dummy_clean$/;" f class:Rails.PluginBuilder
|
1917
|
+
test_dummy_config lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def test_dummy_config$/;" f class:Rails.PluginBuilder
|
1918
|
+
test_edge_option test/generators/shared_generator_tests.rb /^ def test_edge_option$/;" f class:SharedGeneratorTests
|
1919
|
+
test_ensure_that_database_option_is_passed_to_app_generator test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_database_option_is_passed_to_app_generator$/;" f class:PluginNewGeneratorTest
|
1920
|
+
test_ensure_that_javascript_option_is_passed_to_app_generator test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_javascript_option_is_passed_to_app_generator$/;" f class:PluginNewGeneratorTest
|
1921
|
+
test_ensure_that_plugin_options_are_not_passed_to_app_generator test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_plugin_options_are_not_passed_to_app_generator$/;" f class:PluginNewGeneratorTest
|
1922
|
+
test_ensure_that_skip_active_record_option_is_passed_to_app_generator test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_skip_active_record_option_is_passed_to_app_generator$/;" f class:PluginNewGeneratorTest
|
1923
|
+
test_ensure_that_skip_javascript_option_is_passed_to_app_generator test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_skip_javascript_option_is_passed_to_app_generator$/;" f class:PluginNewGeneratorTest
|
1924
|
+
test_ensure_that_test_dummy_can_be_generated_from_a_template test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_test_dummy_can_be_generated_from_a_template$/;" f class:PluginNewGeneratorTest
|
1925
|
+
test_ensure_that_tests_works test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_tests_works$/;" f class:PluginNewGeneratorTest
|
1926
|
+
test_ensure_that_tests_works_in_full_mode test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_tests_works_in_full_mode$/;" f class:PluginNewGeneratorTest
|
1927
|
+
test_environment_is_required_in_rake_tasks test/application/rake_test.rb /^ def test_environment_is_required_in_rake_tasks$/;" f class:ApplicationTests.RakeTest
|
1928
|
+
test_environment_should_include_data_in_environment_initializer_block test/generators/actions_test.rb /^ def test_environment_should_include_data_in_environment_initializer_block$/;" f class:ActionsTest
|
1929
|
+
test_environment_with_block_should_include_block_contents_in_environment_initializer_block test/generators/actions_test.rb /^ def test_environment_with_block_should_include_block_contents_in_environment_initializer_block$/;" f class:ActionsTest
|
1930
|
+
test_existing_migration_is_removed_on_force test/generators/model_generator_test.rb /^ def test_existing_migration_is_removed_on_force$/;" f
|
1931
|
+
test_fallbacks_for_generators_on_find_by_namespace test/generators_test.rb /^ def test_fallbacks_for_generators_on_find_by_namespace$/;" f class:GeneratorsTest
|
1932
|
+
test_fallbacks_for_generators_on_find_by_namespace_with_context test/generators_test.rb /^ def test_fallbacks_for_generators_on_find_by_namespace_with_context$/;" f class:GeneratorsTest
|
1933
|
+
test_fallbacks_for_generators_on_invoke test/generators_test.rb /^ def test_fallbacks_for_generators_on_invoke$/;" f class:GeneratorsTest
|
1934
|
+
test_field_type_returns_check_box test/generators/generated_attribute_test.rb /^ def test_field_type_returns_check_box$/;" f class:GeneratedAttributeTest
|
1935
|
+
test_field_type_returns_date_select test/generators/generated_attribute_test.rb /^ def test_field_type_returns_date_select$/;" f class:GeneratedAttributeTest
|
1936
|
+
test_field_type_returns_datetime_select test/generators/generated_attribute_test.rb /^ def test_field_type_returns_datetime_select$/;" f class:GeneratedAttributeTest
|
1937
|
+
test_field_type_returns_text_area test/generators/generated_attribute_test.rb /^ def test_field_type_returns_text_area$/;" f class:GeneratedAttributeTest
|
1938
|
+
test_field_type_returns_text_field test/generators/generated_attribute_test.rb /^ def test_field_type_returns_text_field$/;" f class:GeneratedAttributeTest
|
1939
|
+
test_field_type_returns_time_select test/generators/generated_attribute_test.rb /^ def test_field_type_returns_time_select$/;" f class:GeneratedAttributeTest
|
1940
|
+
test_field_type_with_unknown_type_returns_text_field test/generators/generated_attribute_test.rb /^ def test_field_type_with_unknown_type_returns_text_field$/;" f class:GeneratedAttributeTest
|
1941
|
+
test_file_is_added_for_backwards_compatibility test/generators/app_generator_test.rb /^ def test_file_is_added_for_backwards_compatibility$/;" f
|
1942
|
+
test_files_from_inherited_invocation test/generators/resource_generator_test.rb /^ def test_files_from_inherited_invocation$/;" f class:ResourceGeneratorTest
|
1943
|
+
test_find_by_namespace test/generators_test.rb /^ def test_find_by_namespace$/;" f class:GeneratorsTest
|
1944
|
+
test_find_by_namespace_in_subfolder test/generators_test.rb /^ def test_find_by_namespace_in_subfolder$/;" f class:GeneratorsTest
|
1945
|
+
test_find_by_namespace_show_warning_if_generator_cant_be_loaded test/generators_test.rb /^ def test_find_by_namespace_show_warning_if_generator_cant_be_loaded$/;" f class:GeneratorsTest
|
1946
|
+
test_find_by_namespace_with_base test/generators_test.rb /^ def test_find_by_namespace_with_base$/;" f class:GeneratorsTest
|
1947
|
+
test_find_by_namespace_with_context test/generators_test.rb /^ def test_find_by_namespace_with_context$/;" f class:GeneratorsTest
|
1948
|
+
test_find_by_namespace_with_duplicated_name test/generators_test.rb /^ def test_find_by_namespace_with_duplicated_name$/;" f class:GeneratorsTest
|
1949
|
+
test_find_by_namespace_with_generator_on_root test/generators_test.rb /^ def test_find_by_namespace_with_generator_on_root$/;" f class:GeneratorsTest
|
1950
|
+
test_find_by_namespace_without_base_or_context_looks_into_rails_namespace test/generators_test.rb /^ def test_find_by_namespace_without_base_or_context_looks_into_rails_namespace$/;" f class:GeneratorsTest
|
1951
|
+
test_fixture_is_skipped test/generators/model_generator_test.rb /^ def test_fixture_is_skipped$/;" f
|
1952
|
+
test_fixture_is_skipped_if_fixture_replacement_is_given test/generators/model_generator_test.rb /^ def test_fixture_is_skipped_if_fixture_replacement_is_given$/;" f
|
1953
|
+
test_framework_version test/rails_info_test.rb /^ def test_framework_version$/;" f class:InfoTest
|
1954
|
+
test_frameworks_exist test/rails_info_test.rb /^ def test_frameworks_exist$/;" f class:InfoTest
|
1955
|
+
test_functional_tests test/generators/scaffold_controller_generator_test.rb /^ def test_functional_tests$/;" f
|
1956
|
+
test_gem_should_insert_on_separate_lines test/generators/actions_test.rb /^ def test_gem_should_insert_on_separate_lines$/;" f class:ActionsTest
|
1957
|
+
test_gem_should_put_gem_dependency_in_gemfile test/generators/actions_test.rb /^ def test_gem_should_put_gem_dependency_in_gemfile$/;" f class:ActionsTest
|
1958
|
+
test_gem_with_version_should_include_version_in_gemfile test/generators/actions_test.rb /^ def test_gem_with_version_should_include_version_in_gemfile$/;" f class:ActionsTest
|
1959
|
+
test_gems_tasks_are_loaded_first_than_application_ones test/application/rake_test.rb /^ def test_gems_tasks_are_loaded_first_than_application_ones$/;" f class:ApplicationTests.RakeTest
|
1960
|
+
test_generate_should_run_script_generate_with_argument_and_options test/generators/actions_test.rb /^ def test_generate_should_run_script_generate_with_argument_and_options$/;" f class:ActionsTest
|
1961
|
+
test_generating_test_files test/generators/plugin_new_generator_test.rb /^ def test_generating_test_files$/;" f class:PluginNewGeneratorTest
|
1962
|
+
test_generating_test_files_in_full_mode test/generators/plugin_new_generator_test.rb /^ def test_generating_test_files_in_full_mode$/;" f class:PluginNewGeneratorTest
|
1963
|
+
test_generator_if_skip_active_record_is_given test/generators/app_generator_test.rb /^ def test_generator_if_skip_active_record_is_given$/;" f class:AppGeneratorTest
|
1964
|
+
test_generator_skeleton_is_created test/generators/generator_generator_test.rb /^ def test_generator_skeleton_is_created$/;" f class:GeneratorGeneratorTest
|
1965
|
+
test_generator_skeleton_is_created_without_file_name_namespace test/generators/generator_generator_test.rb /^ def test_generator_skeleton_is_created_without_file_name_namespace$/;" f class:GeneratorGeneratorTest
|
1966
|
+
test_git_with_hash_should_run_each_command_using_git_scm test/generators/actions_test.rb /^ def test_git_with_hash_should_run_each_command_using_git_scm$/;" f class:ActionsTest
|
1967
|
+
test_git_with_symbol_should_run_command_using_git_scm test/generators/actions_test.rb /^ def test_git_with_symbol_should_run_command_using_git_scm$/;" f class:ActionsTest
|
1968
|
+
test_help.rb lib/rails/test_help.rb 1;" F
|
1969
|
+
test_help_does_not_show_invoked_generators_options_if_they_already_exist test/generators/controller_generator_test.rb /^ def test_help_does_not_show_invoked_generators_options_if_they_already_exist$/;" f class:ControllerGeneratorTest
|
1970
|
+
test_help_shows_invoked_generators_options test/generators/model_generator_test.rb /^ def test_help_shows_invoked_generators_options$/;" f class:ModelGeneratorTest
|
1971
|
+
test_help_when_a_generator_with_required_arguments_is_invoked_without_arguments test/generators_test.rb /^ def test_help_when_a_generator_with_required_arguments_is_invoked_without_arguments$/;" f class:GeneratorsTest
|
1972
|
+
test_help_with_inherited_options test/generators/resource_generator_test.rb /^ def test_help_with_inherited_options$/;" f class:ResourceGeneratorTest
|
1973
|
+
test_helper.rb lib/rails/generators/rails/plugin_new/templates/test/test_helper.rb 1;" F
|
1974
|
+
test_helper.rb lib/rails/generators/test_unit/plugin/templates/test_helper.rb 1;" F
|
1975
|
+
test_helper.rb tmp/app/test/test_helper.rb 1;" F
|
1976
|
+
test_helper.rb tmp/app_template/test/test_helper.rb 1;" F
|
1977
|
+
test_helper_are_invoked_with_a_pluralized_name test/generators/scaffold_controller_generator_test.rb /^ def test_helper_are_invoked_with_a_pluralized_name$/;" f
|
1978
|
+
test_helper_skeleton_is_created test/generators/helper_generator_test.rb /^ def test_helper_skeleton_is_created$/;" f class:HelperGeneratorTest
|
1979
|
+
test_helpr_is_also_namespaced test/generators/namespaced_generators_test.rb /^ def test_helpr_is_also_namespaced$/;" f class:NamespacedControllerGeneratorTest
|
1980
|
+
test_homepage lib/rails/generators/rails/app/templates/test/performance/browsing_test.rb /^ def test_homepage$/;" f class:BrowsingTest
|
1981
|
+
test_homepage lib/rails/generators/test_unit/performance/templates/performance_test.rb /^ def test_homepage$/;" f
|
1982
|
+
test_homepage tmp/app/test/performance/browsing_test.rb /^ def test_homepage$/;" f class:BrowsingTest
|
1983
|
+
test_homepage tmp/app_template/test/performance/browsing_test.rb /^ def test_homepage$/;" f class:BrowsingTest
|
1984
|
+
test_html_includes_middleware test/rails_info_test.rb /^ def test_html_includes_middleware$/;" f class:InfoTest
|
1985
|
+
test_human_name test/generators/generated_attribute_test.rb /^ def test_human_name$/;" f class:GeneratedAttributeTest
|
1986
|
+
test_i18n_files_have_lower_priority_than_application_ones test/railties/shared_tests.rb /^ def test_i18n_files_have_lower_priority_than_application_ones$/;" f class:RailtiesTest
|
1987
|
+
test_index test/application/test_test.rb /^ def test_index$/;" f class:PostsTest
|
1988
|
+
test_index_helper test/generators/named_base_test.rb /^ def test_index_helper$/;" f class:NamedBaseTest
|
1989
|
+
test_index_helper_with_uncountable test/generators/named_base_test.rb /^ def test_index_helper_with_uncountable$/;" f class:NamedBaseTest
|
1990
|
+
test_inherited_invocations_with_attributes test/generators/resource_generator_test.rb /^ def test_inherited_invocations_with_attributes$/;" f class:ResourceGeneratorTest
|
1991
|
+
test_initializer_should_write_date_to_file_in_config_initializers test/generators/actions_test.rb /^ def test_initializer_should_write_date_to_file_in_config_initializers$/;" f class:ActionsTest
|
1992
|
+
test_initializers test/railties/shared_tests.rb /^ def test_initializers$/;" f class:RailtiesTest
|
1993
|
+
test_initializers_are_executed_in_rake_tasks test/application/rake_test.rb /^ def test_initializers_are_executed_in_rake_tasks$/;" f class:ApplicationTests.RakeTest
|
1994
|
+
test_install_migrations_and_assets test/railties/shared_tests.rb /^ def test_install_migrations_and_assets$/;" f class:RailtiesTest.SharedTests
|
1995
|
+
test_integration_test_skeleton_is_created test/generators/integration_test_generator_test.rb /^ def test_integration_test_skeleton_is_created$/;" f class:IntegrationTestGeneratorTest
|
1996
|
+
test_invalid_application_name_is_fixed test/generators/app_generator_test.rb /^ def test_invalid_application_name_is_fixed$/;" f class:AppGeneratorTest
|
1997
|
+
test_invalid_application_name_raises_an_error test/generators/app_generator_test.rb /^ def test_invalid_application_name_raises_an_error$/;" f class:AppGeneratorTest
|
1998
|
+
test_invalid_database_option_raises_an_error test/generators/shared_generator_tests.rb /^ def test_invalid_database_option_raises_an_error$/;" f class:SharedGeneratorTests
|
1999
|
+
test_invalid_plugin_name_is_fixed test/generators/plugin_new_generator_test.rb /^ def test_invalid_plugin_name_is_fixed$/;" f class:PluginNewGeneratorTest
|
2000
|
+
test_invalid_plugin_name_raises_an_error test/generators/plugin_new_generator_test.rb /^ def test_invalid_plugin_name_raises_an_error$/;" f class:PluginNewGeneratorTest
|
2001
|
+
test_invoke_other_generator_with_full_namespace test/generators/actions_test.rb /^ def test_invoke_other_generator_with_full_namespace$/;" f class:ActionsTest
|
2002
|
+
test_invoke_other_generator_with_shortcut test/generators/actions_test.rb /^ def test_invoke_other_generator_with_shortcut$/;" f class:ActionsTest
|
2003
|
+
test_invoke_when_generator_is_not_found test/generators_test.rb /^ def test_invoke_when_generator_is_not_found$/;" f class:GeneratorsTest
|
2004
|
+
test_invoke_with_config_values test/generators_test.rb /^ def test_invoke_with_config_values$/;" f class:GeneratorsTest
|
2005
|
+
test_invoke_with_default_values test/generators_test.rb /^ def test_invoke_with_default_values$/;" f class:GeneratorsTest
|
2006
|
+
test_invoke_with_nested_namespaces test/generators_test.rb /^ def test_invoke_with_nested_namespaces$/;" f class:GeneratorsTest
|
2007
|
+
test_invokes_default_orm test/generators/model_generator_test.rb /^ def test_invokes_default_orm$/;" f class:ModelGeneratorTest
|
2008
|
+
test_invokes_default_orm test/generators/namespaced_generators_test.rb /^ def test_invokes_default_orm$/;" f class:NamespacedObserverGeneratorTest
|
2009
|
+
test_invokes_default_orm test/generators/observer_generator_test.rb /^ def test_invokes_default_orm$/;" f class:ObserverGeneratorTest
|
2010
|
+
test_invokes_default_orm_with_class_path test/generators/namespaced_generators_test.rb /^ def test_invokes_default_orm_with_class_path$/;" f class:NamespacedObserverGeneratorTest
|
2011
|
+
test_invokes_default_orm_with_class_path test/generators/observer_generator_test.rb /^ def test_invokes_default_orm_with_class_path$/;" f class:ObserverGeneratorTest
|
2012
|
+
test_invokes_default_template_engine test/generators/controller_generator_test.rb /^ def test_invokes_default_template_engine$/;" f class:ControllerGeneratorTest
|
2013
|
+
test_invokes_default_template_engine test/generators/mailer_generator_test.rb /^ def test_invokes_default_template_engine$/;" f
|
2014
|
+
test_invokes_default_template_engine test/generators/namespaced_generators_test.rb /^ def test_invokes_default_template_engine$/;" f
|
2015
|
+
test_invokes_default_template_engine test/generators/namespaced_generators_test.rb /^ def test_invokes_default_template_engine$/;" f class:NamespacedControllerGeneratorTest
|
2016
|
+
test_invokes_default_template_engine_even_with_no_action test/generators/controller_generator_test.rb /^ def test_invokes_default_template_engine_even_with_no_action$/;" f class:ControllerGeneratorTest
|
2017
|
+
test_invokes_default_template_engine_even_with_no_action test/generators/mailer_generator_test.rb /^ def test_invokes_default_template_engine_even_with_no_action$/;" f
|
2018
|
+
test_invokes_default_template_engine_even_with_no_action test/generators/namespaced_generators_test.rb /^ def test_invokes_default_template_engine_even_with_no_action$/;" f
|
2019
|
+
test_invokes_default_template_engine_even_with_no_action test/generators/namespaced_generators_test.rb /^ def test_invokes_default_template_engine_even_with_no_action$/;" f class:NamespacedControllerGeneratorTest
|
2020
|
+
test_invokes_default_test_framework test/generators/controller_generator_test.rb /^ def test_invokes_default_test_framework$/;" f class:ControllerGeneratorTest
|
2021
|
+
test_invokes_default_test_framework test/generators/helper_generator_test.rb /^ def test_invokes_default_test_framework$/;" f class:HelperGeneratorTest
|
2022
|
+
test_invokes_default_test_framework test/generators/mailer_generator_test.rb /^ def test_invokes_default_test_framework$/;" f
|
2023
|
+
test_invokes_default_test_framework test/generators/model_generator_test.rb /^ def test_invokes_default_test_framework$/;" f
|
2024
|
+
test_invokes_default_test_framework test/generators/namespaced_generators_test.rb /^ def test_invokes_default_test_framework$/;" f
|
2025
|
+
test_invokes_default_test_framework test/generators/namespaced_generators_test.rb /^ def test_invokes_default_test_framework$/;" f class:NamespacedControllerGeneratorTest
|
2026
|
+
test_invokes_default_test_framework test/generators/namespaced_generators_test.rb /^ def test_invokes_default_test_framework$/;" f class:NamespacedModelGeneratorTest
|
2027
|
+
test_invokes_default_test_framework test/generators/namespaced_generators_test.rb /^ def test_invokes_default_test_framework$/;" f class:NamespacedObserverGeneratorTest
|
2028
|
+
test_invokes_default_test_framework test/generators/observer_generator_test.rb /^ def test_invokes_default_test_framework$/;" f class:ObserverGeneratorTest
|
2029
|
+
test_invokes_default_test_framework test/generators/plugin_generator_test.rb /^ def test_invokes_default_test_framework$/;" f class:PluginGeneratorTest
|
2030
|
+
test_invokes_helper test/generators/controller_generator_test.rb /^ def test_invokes_helper$/;" f class:ControllerGeneratorTest
|
2031
|
+
test_javascript_is_skipped_if_required test/generators/app_generator_test.rb /^ def test_javascript_is_skipped_if_required$/;" f
|
2032
|
+
test_javascripts_generation test/generators/plugin_new_generator_test.rb /^ def test_javascripts_generation$/;" f class:PluginNewGeneratorTest
|
2033
|
+
test_lib_should_write_data_to_file_in_lib test/generators/actions_test.rb /^ def test_lib_should_write_data_to_file_in_lib$/;" f class:ActionsTest
|
2034
|
+
test_load_generators_from_railties test/generators_test.rb /^ def test_load_generators_from_railties$/;" f class:GeneratorsTest
|
2035
|
+
test_logs_if_the_template_engine_cannot_be_found test/generators/mailer_generator_test.rb /^ def test_logs_if_the_template_engine_cannot_be_found$/;" f
|
2036
|
+
test_logs_if_the_test_framework_cannot_be_found test/generators/helper_generator_test.rb /^ def test_logs_if_the_test_framework_cannot_be_found$/;" f class:HelperGeneratorTest
|
2037
|
+
test_logs_if_the_test_framework_cannot_be_found test/generators/observer_generator_test.rb /^ def test_logs_if_the_test_framework_cannot_be_found$/;" f class:ObserverGeneratorTest
|
2038
|
+
test_logs_if_the_test_framework_cannot_be_found test/generators/plugin_generator_test.rb /^ def test_logs_if_the_test_framework_cannot_be_found$/;" f class:PluginGeneratorTest
|
2039
|
+
test_mailer_skeleton_is_created test/generators/mailer_generator_test.rb /^ def test_mailer_skeleton_is_created$/;" f class:MailerGeneratorTest
|
2040
|
+
test_mailer_skeleton_is_created test/generators/namespaced_generators_test.rb /^ def test_mailer_skeleton_is_created$/;" f class:NamespacedMailerGeneratorTest
|
2041
|
+
test_mailer_with_i18n_helper test/generators/mailer_generator_test.rb /^ def test_mailer_with_i18n_helper$/;" f
|
2042
|
+
test_mailer_with_i18n_helper test/generators/namespaced_generators_test.rb /^ def test_mailer_with_i18n_helper$/;" f
|
2043
|
+
test_mailer_with_namedspaced_mailer test/generators/mailer_generator_test.rb /^ def test_mailer_with_namedspaced_mailer$/;" f
|
2044
|
+
test_mass_nouns_do_not_throw_warnings test/generators/resource_generator_test.rb /^ def test_mass_nouns_do_not_throw_warnings$/;" f
|
2045
|
+
test_midleware_referenced_in_configuration test/railties/shared_tests.rb /^ def test_midleware_referenced_in_configuration$/;" f class:RailtiesTest
|
2046
|
+
test_migration test/generators/migration_generator_test.rb /^ def test_migration$/;" f class:MigrationGeneratorTest
|
2047
|
+
test_migration test/generators/model_generator_test.rb /^ def test_migration$/;" f class:ModelGeneratorTest
|
2048
|
+
test_migration test/generators/namespaced_generators_test.rb /^ def test_migration$/;" f class:NamespacedModelGeneratorTest
|
2049
|
+
test_migration_error_is_not_shown_on_revoke test/generators/model_generator_test.rb /^ def test_migration_error_is_not_shown_on_revoke$/;" f
|
2050
|
+
test_migration_is_ignored_as_identical_with_skip_option test/generators/model_generator_test.rb /^ def test_migration_is_ignored_as_identical_with_skip_option$/;" f
|
2051
|
+
test_migration_is_removed_on_revoke test/generators/model_generator_test.rb /^ def test_migration_is_removed_on_revoke$/;" f
|
2052
|
+
test_migration_is_skipped test/generators/model_generator_test.rb /^ def test_migration_is_skipped$/;" f class:ModelGeneratorTest
|
2053
|
+
test_migration_is_skipped_on_skip_behavior test/generators/model_generator_test.rb /^ def test_migration_is_skipped_on_skip_behavior$/;" f
|
2054
|
+
test_migration_is_skipped_with_skip_option test/generators/model_generator_test.rb /^ def test_migration_is_skipped_with_skip_option$/;" f
|
2055
|
+
test_migration_timestamps_are_skipped test/generators/model_generator_test.rb /^ def test_migration_timestamps_are_skipped$/;" f
|
2056
|
+
test_migration_with_attributes test/generators/model_generator_test.rb /^ def test_migration_with_attributes$/;" f class:ModelGeneratorTest
|
2057
|
+
test_migration_with_class_name test/generators/migration_generator_test.rb /^ def test_migration_with_class_name$/;" f class:MigrationGeneratorTest
|
2058
|
+
test_migration_with_namespace test/generators/model_generator_test.rb /^ def test_migration_with_namespace$/;" f class:ModelGeneratorTest
|
2059
|
+
test_migration_with_namespace test/generators/namespaced_generators_test.rb /^ def test_migration_with_namespace$/;" f class:NamespacedModelGeneratorTest
|
2060
|
+
test_migration_with_namespaces_in_model_name_without_plurization test/generators/model_generator_test.rb /^ def test_migration_with_namespaces_in_model_name_without_plurization$/;" f class:ModelGeneratorTest
|
2061
|
+
test_migration_with_nested_namespace test/generators/model_generator_test.rb /^ def test_migration_with_nested_namespace$/;" f class:ModelGeneratorTest
|
2062
|
+
test_migration_with_nested_namespace test/generators/namespaced_generators_test.rb /^ def test_migration_with_nested_namespace$/;" f class:NamespacedModelGeneratorTest
|
2063
|
+
test_migration_with_nested_namespace_without_pluralization test/generators/model_generator_test.rb /^ def test_migration_with_nested_namespace_without_pluralization$/;" f class:ModelGeneratorTest
|
2064
|
+
test_migration_with_nested_namespace_without_pluralization test/generators/namespaced_generators_test.rb /^ def test_migration_with_nested_namespace_without_pluralization$/;" f class:NamespacedModelGeneratorTest
|
2065
|
+
test_migration_with_timestamps test/generators/model_generator_test.rb /^ def test_migration_with_timestamps$/;" f
|
2066
|
+
test_migration_without_pluralization test/generators/model_generator_test.rb /^ def test_migration_without_pluralization$/;" f class:ModelGeneratorTest
|
2067
|
+
test_migration_without_timestamps test/generators/model_generator_test.rb /^ def test_migration_without_timestamps$/;" f
|
2068
|
+
test_migrations_generated_simultaneously test/generators/migration_generator_test.rb /^ def test_migrations_generated_simultaneously$/;" f class:MigrationGeneratorTest
|
2069
|
+
test_missing_type_raises_exception test/generators/generated_attribute_test.rb /^ def test_missing_type_raises_exception$/;" f class:GeneratedAttributeTest
|
2070
|
+
test_model_and_migration_generator_with_change_syntax test/application/rake_test.rb /^ def test_model_and_migration_generator_with_change_syntax$/;" f class:ApplicationTests
|
2071
|
+
test_model_with_belongs_to_attribute_generates_belongs_to_associations test/generators/model_generator_test.rb /^ def test_model_with_belongs_to_attribute_generates_belongs_to_associations$/;" f
|
2072
|
+
test_model_with_missing_attribute_type test/generators/model_generator_test.rb /^ def test_model_with_missing_attribute_type$/;" f class:ModelGeneratorTest
|
2073
|
+
test_model_with_namespace test/generators/model_generator_test.rb /^ def test_model_with_namespace$/;" f class:ModelGeneratorTest
|
2074
|
+
test_model_with_namespace test/generators/namespaced_generators_test.rb /^ def test_model_with_namespace$/;" f class:NamespacedModelGeneratorTest
|
2075
|
+
test_model_with_parent_option test/generators/model_generator_test.rb /^ def test_model_with_parent_option$/;" f class:ModelGeneratorTest
|
2076
|
+
test_model_with_references_attribute_generates_belongs_to_associations test/generators/model_generator_test.rb /^ def test_model_with_references_attribute_generates_belongs_to_associations$/;" f
|
2077
|
+
test_model_with_underscored_parent_option test/generators/model_generator_test.rb /^ def test_model_with_underscored_parent_option$/;" f class:ModelGeneratorTest
|
2078
|
+
test_models_without_table_do_not_panic_on_scope_definitions_when_loaded test/application/loading_test.rb /^ def test_models_without_table_do_not_panic_on_scope_definitions_when_loaded$/;" f class:LoadingTest
|
2079
|
+
test_module_file_is_not_created test/generators/namespaced_generators_test.rb /^ def test_module_file_is_not_created$/;" f class:NamespacedModelGeneratorTest
|
2080
|
+
test_name_collision_raises_an_error test/generators/shared_generator_tests.rb /^ def test_name_collision_raises_an_error$/;" f class:SharedGeneratorTests
|
2081
|
+
test_name_raises_an_error_if_name_already_used_constant test/generators/shared_generator_tests.rb /^ def test_name_raises_an_error_if_name_already_used_constant$/;" f class:SharedGeneratorTests
|
2082
|
+
test_named_generator_attributes test/generators/named_base_test.rb /^ def test_named_generator_attributes$/;" f class:NamedBaseTest
|
2083
|
+
test_named_generator_attributes_as_ruby test/generators/named_base_test.rb /^ def test_named_generator_attributes_as_ruby$/;" f class:NamedBaseTest
|
2084
|
+
test_named_generator_attributes_without_pluralized test/generators/named_base_test.rb /^ def test_named_generator_attributes_without_pluralized$/;" f class:NamedBaseTest
|
2085
|
+
test_named_generator_with_underscore test/generators/named_base_test.rb /^ def test_named_generator_with_underscore$/;" f class:NamedBaseTest
|
2086
|
+
test_namespaced_and_not_namespaced_helpers test/generators/helper_generator_test.rb /^ def test_namespaced_and_not_namespaced_helpers$/;" f class:HelperGeneratorTest
|
2087
|
+
test_namespaced_controller_skeleton_is_created test/generators/namespaced_generators_test.rb /^ def test_namespaced_controller_skeleton_is_created$/;" f class:NamespacedControllerGeneratorTest
|
2088
|
+
test_namespaced_controller_with_additional_namespace test/generators/namespaced_generators_test.rb /^ def test_namespaced_controller_with_additional_namespace$/;" f class:NamespacedControllerGeneratorTest
|
2089
|
+
test_namespaced_controllers_with_namespaced_routes test/railties/shared_tests.rb /^ def test_namespaced_controllers_with_namespaced_routes$/;" f class:RailtiesTest
|
2090
|
+
test_namespaced_generator_skeleton test/generators/generator_generator_test.rb /^ def test_namespaced_generator_skeleton$/;" f class:GeneratorGeneratorTest
|
2091
|
+
test_namespaced_generator_skeleton_without_file_name_namespace test/generators/generator_generator_test.rb /^ def test_namespaced_generator_skeleton_without_file_name_namespace$/;" f class:GeneratorGeneratorTest
|
2092
|
+
test_nested_fallbacks_for_generators test/generators_test.rb /^ def test_nested_fallbacks_for_generators$/;" f class:GeneratorsTest
|
2093
|
+
test_new_session_should_return_integration_session test/application/console_test.rb /^ def test_new_session_should_return_integration_session$/;" f class:ConsoleTest
|
2094
|
+
test_nil_type_raises_exception test/generators/generated_attribute_test.rb /^ def test_nil_type_raises_exception$/;" f class:GeneratedAttributeTest
|
2095
|
+
test_no_color_sets_proper_shell test/generators_test.rb /^ def test_no_color_sets_proper_shell$/;" f class:GeneratorsTest
|
2096
|
+
test_options_before_application_name_raises_an_error test/generators/shared_generator_tests.rb /^ def test_options_before_application_name_raises_an_error$/;" f class:SharedGeneratorTests
|
2097
|
+
test_overriding_test_framework test/generators/plugin_new_generator_test.rb /^ def test_overriding_test_framework$/;" f class:CustomPluginGeneratorTest
|
2098
|
+
test_passing_dummy_path_as_a_parameter test/generators/plugin_new_generator_test.rb /^ def test_passing_dummy_path_as_a_parameter$/;" f class:PluginNewGeneratorTest
|
2099
|
+
test_performance_test_skeleton_is_created test/generators/performance_test_generator_test.rb /^ def test_performance_test_skeleton_is_created$/;" f class:PerformanceTestGeneratorTest
|
2100
|
+
test_plugin_generator_on_revoke test/generators/plugin_generator_test.rb /^ def test_plugin_generator_on_revoke$/;" f class:PluginGeneratorTest
|
2101
|
+
test_plugin_new_generate_pretend test/generators/shared_generator_tests.rb /^ def test_plugin_new_generate_pretend$/;" f class:SharedGeneratorTests
|
2102
|
+
test_plugin_skeleton_is_created test/generators/plugin_generator_test.rb /^ def test_plugin_skeleton_is_created$/;" f class:PluginGeneratorTest
|
2103
|
+
test_plugin_with_git_option_and_branch_should_run_plugin_install test/generators/actions_test.rb /^ def test_plugin_with_git_option_and_branch_should_run_plugin_install$/;" f class:ActionsTest
|
2104
|
+
test_plugin_with_git_option_and_submodule_should_use_git_scm test/generators/actions_test.rb /^ def test_plugin_with_git_option_and_submodule_should_use_git_scm$/;" f class:ActionsTest
|
2105
|
+
test_plugin_with_git_option_should_run_plugin_install test/generators/actions_test.rb /^ def test_plugin_with_git_option_should_run_plugin_install$/;" f class:ActionsTest
|
2106
|
+
test_plugin_with_no_options_should_skip_method test/generators/actions_test.rb /^ def test_plugin_with_no_options_should_skip_method$/;" f class:ActionsTest
|
2107
|
+
test_plugin_with_svn_option_and_revision_should_run_plugin_install test/generators/actions_test.rb /^ def test_plugin_with_svn_option_and_revision_should_run_plugin_install$/;" f class:ActionsTest
|
2108
|
+
test_plugin_with_svn_option_should_run_plugin_install test/generators/actions_test.rb /^ def test_plugin_with_svn_option_should_run_plugin_install$/;" f class:ActionsTest
|
2109
|
+
test_plural_names_are_singularized test/generators/resource_generator_test.rb /^ def test_plural_names_are_singularized$/;" f
|
2110
|
+
test_plural_names_can_be_forced test/generators/resource_generator_test.rb /^ def test_plural_names_can_be_forced$/;" f
|
2111
|
+
test_property_with_block test/rails_info_test.rb /^ def test_property_with_block$/;" f class:InfoTest
|
2112
|
+
test_property_with_block_swallows_exceptions_and_ignores_property test/rails_info_test.rb /^ def test_property_with_block_swallows_exceptions_and_ignores_property$/;" f class:InfoTest
|
2113
|
+
test_property_with_string test/rails_info_test.rb /^ def test_property_with_string$/;" f class:InfoTest
|
2114
|
+
test_prototype_and_test_unit_are_added_by_default test/generators/app_generator_test.rb /^ def test_prototype_and_test_unit_are_added_by_default$/;" f
|
2115
|
+
test_puts_its_controllers_directory_on_autoload_path test/railties/shared_tests.rb /^ def test_puts_its_controllers_directory_on_autoload_path$/;" f class:RailtiesTest
|
2116
|
+
test_puts_its_lib_directory_on_load_path test/railties/shared_tests.rb /^ def test_puts_its_lib_directory_on_load_path$/;" f class:RailtiesTest
|
2117
|
+
test_puts_its_models_directory_on_autoload_path test/railties/shared_tests.rb /^ def test_puts_its_models_directory_on_autoload_path$/;" f class:RailtiesTest
|
2118
|
+
test_rails_generators_does_not_show_active_record_hooks test/generators_test.rb /^ def test_rails_generators_does_not_show_active_record_hooks$/;" f class:GeneratorsTest
|
2119
|
+
test_rails_generators_help_does_not_include_app_nor_plugin_new test/generators_test.rb /^ def test_rails_generators_help_does_not_include_app_nor_plugin_new$/;" f class:GeneratorsTest
|
2120
|
+
test_rails_generators_help_with_builtin_information test/generators_test.rb /^ def test_rails_generators_help_with_builtin_information$/;" f class:GeneratorsTest
|
2121
|
+
test_rails_generators_with_others_information test/generators_test.rb /^ def test_rails_generators_with_others_information$/;" f class:GeneratorsTest
|
2122
|
+
test_rails_root_templates test/generators_test.rb /^ def test_rails_root_templates$/;" f class:GeneratorsTest
|
2123
|
+
test_rails_update_generates_correct_session_key test/generators/app_generator_test.rb /^ def test_rails_update_generates_correct_session_key$/;" f class:AppGeneratorTest
|
2124
|
+
test_rake_routes_output_strips_anchors_from_http_verbs test/application/rake_test.rb /^ def test_rake_routes_output_strips_anchors_from_http_verbs$/;" f class:ApplicationTests
|
2125
|
+
test_rake_should_run_rake_command_with_development_env test/generators/actions_test.rb /^ def test_rake_should_run_rake_command_with_development_env$/;" f class:ActionsTest
|
2126
|
+
test_rake_tasks_lib_tasks_are_loaded test/railties/shared_tests.rb /^ def test_rake_tasks_lib_tasks_are_loaded$/;" f class:RailtiesTest
|
2127
|
+
test_rake_with_env_option_should_run_rake_command_in_env test/generators/actions_test.rb /^ def test_rake_with_env_option_should_run_rake_command_in_env$/;" f class:ActionsTest
|
2128
|
+
test_rake_with_sudo_option_should_run_rake_command_with_sudo test/generators/actions_test.rb /^ def test_rake_with_sudo_option_should_run_rake_command_with_sudo$/;" f class:ActionsTest
|
2129
|
+
test_rakefile_should_write_date_to_file_in_lib_tasks test/generators/actions_test.rb /^ def test_rakefile_should_write_date_to_file_in_lib_tasks$/;" f class:ActionsTest
|
2130
|
+
test_readme test/generators/actions_test.rb /^ def test_readme$/;" f class:ActionsTest
|
2131
|
+
test_reference_is_false test/generators/generated_attribute_test.rb /^ def test_reference_is_false$/;" f class:GeneratedAttributeTest
|
2132
|
+
test_reference_is_true test/generators/generated_attribute_test.rb /^ def test_reference_is_true$/;" f class:GeneratedAttributeTest
|
2133
|
+
test_reload_should_fire_preparation_and_cleanup_callbacks test/application/console_test.rb /^ def test_reload_should_fire_preparation_and_cleanup_callbacks$/;" f class:ConsoleTest
|
2134
|
+
test_reload_should_reload_constants test/application/console_test.rb /^ def test_reload_should_reload_constants$/;" f class:ConsoleTest
|
2135
|
+
test_remove_migration_with_attributes test/generators/migration_generator_test.rb /^ def test_remove_migration_with_attributes$/;" f
|
2136
|
+
test_resource_controller_with_actions test/generators/resource_generator_test.rb /^ def test_resource_controller_with_actions$/;" f class:ResourceGeneratorTest
|
2137
|
+
test_resource_controller_with_pluralized_class_name test/generators/resource_generator_test.rb /^ def test_resource_controller_with_pluralized_class_name$/;" f class:ResourceGeneratorTest
|
2138
|
+
test_resource_routes_are_added test/generators/resource_generator_test.rb /^ def test_resource_routes_are_added$/;" f
|
2139
|
+
test_route_is_removed_on_revoke test/generators/resource_generator_test.rb /^ def test_route_is_removed_on_revoke$/;" f
|
2140
|
+
test_route_should_add_data_to_the_routes_block_in_config_routes test/generators/actions_test.rb /^ def test_route_should_add_data_to_the_routes_block_in_config_routes$/;" f class:ActionsTest
|
2141
|
+
test_routes_are_added_to_router test/railties/shared_tests.rb /^ def test_routes_are_added_to_router$/;" f class:RailtiesTest
|
2142
|
+
test_routes_in_plugins_have_lower_priority_than_application_ones test/railties/shared_tests.rb /^ def test_routes_in_plugins_have_lower_priority_than_application_ones$/;" f class:RailtiesTest
|
2143
|
+
test_routes_should_not_be_namespaced test/generators/namespaced_generators_test.rb /^ def test_routes_should_not_be_namespaced$/;" f class:NamespacedControllerGeneratorTest
|
2144
|
+
test_scaffold_generator_on_revoke_does_not_mutilate_legacy_map_parameter test/generators/scaffold_generator_test.rb /^ def test_scaffold_generator_on_revoke_does_not_mutilate_legacy_map_parameter$/;" f
|
2145
|
+
test_scaffold_generator_outputs_error_message_on_missing_attribute_type test/generators/scaffold_generator_test.rb /^ def test_scaffold_generator_outputs_error_message_on_missing_attribute_type$/;" f
|
2146
|
+
test_scaffold_on_invoke test/generators/namespaced_generators_test.rb /^ def test_scaffold_on_invoke$/;" f class:NamespacedScaffoldGeneratorTest
|
2147
|
+
test_scaffold_on_invoke test/generators/scaffold_generator_test.rb /^ def test_scaffold_on_invoke$/;" f class:ScaffoldGeneratorTest
|
2148
|
+
test_scaffold_on_revoke test/generators/namespaced_generators_test.rb /^ def test_scaffold_on_revoke$/;" f
|
2149
|
+
test_scaffold_on_revoke test/generators/scaffold_generator_test.rb /^ def test_scaffold_on_revoke$/;" f
|
2150
|
+
test_scaffold_plural_names test/generators/named_base_test.rb /^ def test_scaffold_plural_names$/;" f class:NamedBaseTest
|
2151
|
+
test_scaffold_plural_names_as_ruby test/generators/named_base_test.rb /^ def test_scaffold_plural_names_as_ruby$/;" f class:NamedBaseTest
|
2152
|
+
test_scaffold_with_namespace_on_invoke test/generators/namespaced_generators_test.rb /^ def test_scaffold_with_namespace_on_invoke$/;" f
|
2153
|
+
test_scaffold_with_namespace_on_invoke test/generators/scaffold_generator_test.rb /^ def test_scaffold_with_namespace_on_invoke$/;" f
|
2154
|
+
test_scaffold_with_namespace_on_revoke test/generators/namespaced_generators_test.rb /^ def test_scaffold_with_namespace_on_revoke$/;" f
|
2155
|
+
test_scaffold_with_namespace_on_revoke test/generators/scaffold_generator_test.rb /^ def test_scaffold_with_namespace_on_revoke$/;" f
|
2156
|
+
test_session_migration_with_custom_table_name test/generators/session_migration_generator_test.rb /^ def test_session_migration_with_custom_table_name$/;" f class:SessionMigrationGeneratorTest
|
2157
|
+
test_session_migration_with_default_name test/generators/session_migration_generator_test.rb /^ def test_session_migration_with_default_name$/;" f class:SessionMigrationGeneratorTest
|
2158
|
+
test_session_migration_with_given_name test/generators/session_migration_generator_test.rb /^ def test_session_migration_with_given_name$/;" f class:SessionMigrationGeneratorTest
|
2159
|
+
test_shebang_is_added_to_rails_file test/generators/shared_generator_tests.rb /^ def test_shebang_is_added_to_rails_file$/;" f class:SharedGeneratorTests
|
2160
|
+
test_shebang_when_is_the_same_as_default_use_env test/generators/shared_generator_tests.rb /^ def test_shebang_when_is_the_same_as_default_use_env$/;" f class:SharedGeneratorTests
|
2161
|
+
test_should_create_empty_migrations_if_name_not_start_with_add_or_remove test/generators/migration_generator_test.rb /^ def test_should_create_empty_migrations_if_name_not_start_with_add_or_remove$/;" f
|
2162
|
+
test_should_give_higher_preference_to_rails_generators test/generators_test.rb /^ def test_should_give_higher_preference_to_rails_generators$/;" f class:GeneratorsTest
|
2163
|
+
test_should_include_runner_in_shebang_line_in_help test/application/runner_test.rb /^ def test_should_include_runner_in_shebang_line_in_help$/;" f class:ApplicationTests.RunnerTest
|
2164
|
+
test_should_run_file test/application/runner_test.rb /^ def test_should_run_file$/;" f class:ApplicationTests.RunnerTest
|
2165
|
+
test_should_run_ruby_statement test/application/runner_test.rb /^ def test_should_run_ruby_statement$/;" f class:ApplicationTests.RunnerTest
|
2166
|
+
test_should_set_dollar_0_to_file test/application/runner_test.rb /^ def test_should_set_dollar_0_to_file$/;" f class:ApplicationTests.RunnerTest
|
2167
|
+
test_should_set_dollar_program_name_to_file test/application/runner_test.rb /^ def test_should_set_dollar_program_name_to_file$/;" f class:ApplicationTests.RunnerTest
|
2168
|
+
test_simple_invoke test/generators_test.rb /^ def test_simple_invoke$/;" f class:GeneratorsTest
|
2169
|
+
test_skeleton_is_created test/generators/shared_generator_tests.rb /^ def test_skeleton_is_created$/;" f class:SharedGeneratorTests
|
2170
|
+
test_skip_helper_if_required test/generators/scaffold_controller_generator_test.rb /^ def test_skip_helper_if_required$/;" f
|
2171
|
+
test_skip_javascripts test/generators/plugin_new_generator_test.rb /^ def test_skip_javascripts$/;" f class:PluginNewGeneratorTest
|
2172
|
+
test_skip_layout_if_required test/generators/scaffold_controller_generator_test.rb /^ def test_skip_layout_if_required$/;" f
|
2173
|
+
test_skipping_gemspec test/generators/plugin_new_generator_test.rb /^ def test_skipping_gemspec$/;" f class:PluginNewGeneratorTest
|
2174
|
+
test_skipping_javascripts_without_mountable_option test/generators/plugin_new_generator_test.rb /^ def test_skipping_javascripts_without_mountable_option$/;" f class:PluginNewGeneratorTest
|
2175
|
+
test_skipping_namespace test/generators/namespaced_generators_test.rb /^ def test_skipping_namespace$/;" f class:NamespacedControllerGeneratorTest
|
2176
|
+
test_source_paths_for_not_namespaced_generators test/generators_test.rb /^ def test_source_paths_for_not_namespaced_generators$/;" f
|
2177
|
+
test_stylesheets_are_not_deleted_on_revoke test/generators/stylesheets_generator_test.rb /^ def test_stylesheets_are_not_deleted_on_revoke$/;" f class:StylesheetsGeneratorTest
|
2178
|
+
test_template_engine_with_class_path test/generators/controller_generator_test.rb /^ def test_template_engine_with_class_path$/;" f class:ControllerGeneratorTest
|
2179
|
+
test_template_from_dir_pwd test/generators/app_generator_test.rb /^ def test_template_from_dir_pwd$/;" f
|
2180
|
+
test_template_from_dir_pwd test/generators/plugin_new_generator_test.rb /^ def test_template_from_dir_pwd$/;" f class:PluginNewGeneratorTest
|
2181
|
+
test_template_is_executed_when_supplied test/generators/shared_generator_tests.rb /^ def test_template_is_executed_when_supplied$/;" f class:SharedGeneratorTests
|
2182
|
+
test_template_is_executed_when_supplied_an_https_path test/generators/shared_generator_tests.rb /^ def test_template_is_executed_when_supplied_an_https_path$/;" f class:SharedGeneratorTests
|
2183
|
+
test_template_raises_an_error_with_invalid_path test/generators/shared_generator_tests.rb /^ def test_template_raises_an_error_with_invalid_path$/;" f class:SharedGeneratorTests
|
2184
|
+
test_test.rb test/application/test_test.rb 1;" F
|
2185
|
+
test_test_unit_is_removed_from_frameworks_if_skip_test_unit_is_given test/generators/app_generator_test.rb /^ def test_test_unit_is_removed_from_frameworks_if_skip_test_unit_is_given$/;" f
|
2186
|
+
test_test_unit_is_skipped_if_required test/generators/shared_generator_tests.rb /^ def test_test_unit_is_skipped_if_required$/;" f class:SharedGeneratorTests
|
2187
|
+
test_truth test/application/test_test.rb /^ def test_truth$/;" f class:ApplicationTests.FooTest
|
2188
|
+
test_truth test/application/test_test.rb /^ def test_truth$/;" f class:ApplicationTests.TestTest.FooTest
|
2189
|
+
test_unit.rb lib/rails/generators/test_unit.rb 1;" F
|
2190
|
+
test_usage_read_from_file test/generators/app_generator_test.rb /^ def test_usage_read_from_file$/;" f
|
2191
|
+
test_vendor_should_write_data_to_file_in_vendor test/generators/actions_test.rb /^ def test_vendor_should_write_data_to_file_in_vendor$/;" f class:ActionsTest
|
2192
|
+
test_views_are_generated test/generators/scaffold_controller_generator_test.rb /^ def test_views_are_generated$/;" f
|
2193
|
+
tests lib/rails/generators/test_case.rb /^ def self.tests(klass)$/;" F class:Rails.Generators.TestCase
|
2194
|
+
textile guides/rails_guides/generator.rb /^ def textile(body, lite_mode=false)$/;" f class:RailsGuides.Generator
|
2195
|
+
textile_extensions.rb guides/rails_guides/textile_extensions.rb 1;" F
|
2196
|
+
threadsafe! lib/rails/application/configuration.rb /^ def threadsafe!$/;" f class:Rails.Application.Configuration
|
2197
|
+
tip guides/rails_guides/textile_extensions.rb /^ def tip(body)$/;" f class:RailsGuides.TextileExtensions
|
2198
|
+
title_to_idx guides/rails_guides/indexer.rb /^ def title_to_idx(title)$/;" f class:RailsGuides.Indexer
|
2199
|
+
tmp lib/rails/generators/rails/app/app_generator.rb /^ def tmp$/;" f
|
2200
|
+
tmp_path test/isolation/abstract_unit.rb /^ def tmp_path(*args)$/;" f class:TestHelpers.Paths
|
2201
|
+
toHTML lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function toHTML(object) {$/;" f
|
2202
|
+
toHTML tmp/app/public/javascripts/prototype.js /^ function toHTML(object) {$/;" f
|
2203
|
+
toHTML tmp/app_template/public/javascripts/prototype.js /^ function toHTML(object) {$/;" f
|
2204
|
+
toJSON lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function toJSON(value) {$/;" f
|
2205
|
+
toJSON tmp/app/public/javascripts/prototype.js /^ function toJSON(value) {$/;" f
|
2206
|
+
toJSON tmp/app_template/public/javascripts/prototype.js /^ function toJSON(value) {$/;" f
|
2207
|
+
toQueryString lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function toQueryString(object) {$/;" f
|
2208
|
+
toQueryString tmp/app/public/javascripts/prototype.js /^ function toQueryString(object) {$/;" f
|
2209
|
+
toQueryString tmp/app_template/public/javascripts/prototype.js /^ function toQueryString(object) {$/;" f
|
2210
|
+
to_html lib/rails/info.rb /^ def to_html$/;" f class:Rails
|
2211
|
+
to_param test/railties/engine_test.rb /^ def to_param$/;" f class:Bukkits.Post
|
2212
|
+
to_param test/railties/mounted_engine_test.rb /^ def to_param$/;" f class:ApplicationTests.ApplicationRoutingTest.Blog.Post
|
2213
|
+
to_prepare lib/rails/railtie/configuration.rb /^ def to_prepare(&blk)$/;" f class:Rails.Railtie.Configuration
|
2214
|
+
to_prepare_blocks lib/rails/railtie/configuration.rb /^ def to_prepare_blocks$/;" f class:Rails.Railtie.Configuration
|
2215
|
+
to_s lib/rails/code_statistics.rb /^ def to_s$/;" f class:CodeStatistics
|
2216
|
+
to_s lib/rails/commands/plugin.rb /^ def to_s$/;" f class:Plugin
|
2217
|
+
to_s lib/rails/info.rb /^ def to_s$/;" f class:Rails
|
2218
|
+
to_s lib/rails/source_annotation_extractor.rb /^ def to_s(options={})$/;" f class:SourceAnnotationExtractor.Annotation
|
2219
|
+
tsort_each_child lib/rails/initializable.rb /^ def tsort_each_child(initializer, &block)$/;" f class:Rails.Initializable.Collection
|
2220
|
+
tweak_builder.rb test/fixtures/lib/app_builders/tweak_builder.rb 1;" F
|
2221
|
+
tweak_builder.rb test/fixtures/lib/plugin_builders/tweak_builder.rb 1;" F
|
2222
|
+
two test/initializable_test.rb /^ def two$/;" f class:InitializableTests.OverriddenInitializer.MoreInitializers
|
2223
|
+
uncountable? lib/rails/generators/named_base.rb /^ def uncountable?$/;" f class:Rails.Generators
|
2224
|
+
uninstall lib/rails/commands/plugin.rb /^ def uninstall$/;" f class:Plugin
|
2225
|
+
uninstall.rb lib/rails/generators/rails/plugin/templates/uninstall.rb 1;" F
|
2226
|
+
unit_test.rb lib/rails/generators/test_unit/model/templates/unit_test.rb 1;" F
|
2227
|
+
unit_test.rb lib/rails/generators/test_unit/observer/templates/unit_test.rb 1;" F
|
2228
|
+
update lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def update$/;" f
|
2229
|
+
update.rb lib/rails/commands/update.rb 1;" F
|
2230
|
+
update_attributes lib/rails/generators/active_model.rb /^ def update_attributes(params=nil)$/;" f class:Rails.Generators.ActiveModel
|
2231
|
+
url_for_engine_route test/railties/mounted_engine_test.rb /^ def url_for_engine_route$/;" f class:ApplicationTests.ApplicationRoutingTest.ApplicationGeneratingController
|
2232
|
+
url_generation_test.rb test/application/url_generation_test.rb 1;" F
|
2233
|
+
use lib/rails/configuration.rb /^ def use(*args, &block)$/;" f class:Rails.Configuration.MiddlewareStackProxy
|
2234
|
+
use_checkout? lib/rails/commands/plugin.rb /^ def use_checkout?$/;" f class:RailsEnvironment
|
2235
|
+
use_externals? lib/rails/commands/plugin.rb /^ def use_externals?$/;" f class:RailsEnvironment
|
2236
|
+
use_frameworks test/isolation/abstract_unit.rb /^ def use_frameworks(arr)$/;" f
|
2237
|
+
use_svn? lib/rails/commands/plugin.rb /^ def use_svn?$/;" f class:RailsEnvironment
|
2238
|
+
valid_const? lib/rails/generators/rails/app/app_generator.rb /^ def valid_const?$/;" f class:Generators.AppGenerator
|
2239
|
+
valid_const? lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def valid_const?$/;" f class:Generators.PluginNewGenerator
|
2240
|
+
validate guides/w3c_validator.rb /^ def validate$/;" f class:RailsGuides.Validator
|
2241
|
+
value_for lib/rails/info.rb /^ def value_for(property_name)$/;" f class:Rails.Info
|
2242
|
+
values lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function values(object) {$/;" f
|
2243
|
+
values tmp/app/public/javascripts/prototype.js /^ function values(object) {$/;" f
|
2244
|
+
values tmp/app_template/public/javascripts/prototype.js /^ function values(object) {$/;" f
|
2245
|
+
var.Effect._elementDoesNotExistError lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^var Effect = {$/;" p
|
2246
|
+
var.Effect._elementDoesNotExistError tmp/app/public/javascripts/effects.js /^var Effect = {$/;" p
|
2247
|
+
var.Effect._elementDoesNotExistError tmp/app_template/public/javascripts/effects.js /^var Effect = {$/;" p
|
2248
|
+
vendor lib/rails/generators/actions.rb /^ def vendor(filename, data=nil, &block)$/;" f class:Rails.Generators
|
2249
|
+
vendor_plugins lib/rails/generators/rails/app/app_generator.rb /^ def vendor_plugins$/;" f
|
2250
|
+
version lib/rails.rb /^ def version$/;" f class:Rails
|
2251
|
+
version.rb lib/rails/version.rb 1;" F
|
2252
|
+
w3c_validator.rb guides/w3c_validator.rb 1;" F
|
2253
|
+
wait test/application/initializers/notifications_test.rb /^ def wait$/;" f class:ApplicationTests.NotificationsTest
|
2254
|
+
warn_about_broken_links guides/rails_guides/generator.rb /^ def warn_about_broken_links(html)$/;" f class:RailsGuides
|
2255
|
+
with_bare_config test/application/generators_test.rb /^ def with_bare_config$/;" f class:ApplicationTests.GeneratorsTest
|
2256
|
+
with_config test/application/generators_test.rb /^ def with_config$/;" f class:ApplicationTests.GeneratorsTest
|
2257
|
+
with_workaround_for_notextile guides/rails_guides/generator.rb /^ def with_workaround_for_notextile(body)$/;" f class:RailsGuides.Generator
|
2258
|
+
wrap_with_namespace lib/rails/generators/named_base.rb /^ def wrap_with_namespace(content)$/;" f class:Rails.Generators.NamedBase
|
2259
|
+
write test/isolation/abstract_unit.rb /^ def write(file, string)$/;" f class:Bukkit
|
2260
|
+
wrong_generator.rb test/fixtures/lib/generators/wrong_generator.rb 1;" F
|