├── log
└── .gitignore
├── public
├── favicon.ico
├── images
│ ├── rails.png
│ └── textile-editor
│ │ ├── h1.png
│ │ ├── h2.png
│ │ ├── h3.png
│ │ ├── h4.png
│ │ ├── h5.png
│ │ ├── h6.png
│ │ ├── bold.png
│ │ ├── left.png
│ │ ├── center.png
│ │ ├── indent.png
│ │ ├── italic.png
│ │ ├── justify.png
│ │ ├── omega.png
│ │ ├── outdent.png
│ │ ├── right.png
│ │ ├── paragraph.png
│ │ ├── underline.png
│ │ ├── background.png
│ │ ├── blockquote.png
│ │ ├── list_bullets.png
│ │ ├── list_numbers.png
│ │ └── strikethrough.png
└── robots.txt
├── previous_failures.txt
├── vendor
├── rails
│ ├── REVISION_9248
│ ├── railties
│ │ ├── html
│ │ │ ├── favicon.ico
│ │ │ ├── images
│ │ │ │ └── rails.png
│ │ │ ├── javascripts
│ │ │ │ └── application.js
│ │ │ └── robots.txt
│ │ ├── configs
│ │ │ ├── empty.log
│ │ │ └── initializers
│ │ │ │ └── mime_types.rb
│ │ ├── test
│ │ │ ├── fixtures
│ │ │ │ ├── plugins
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── plugin_with_no_lib_dir
│ │ │ │ │ │ │ └── init.rb
│ │ │ │ │ │ └── stubby
│ │ │ │ │ │ │ ├── about.yml
│ │ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ └── stubby_mixin.rb
│ │ │ │ │ │ │ └── generators
│ │ │ │ │ │ │ └── stubby_generator
│ │ │ │ │ │ │ └── stubby_generator.rb
│ │ │ │ │ └── alternate
│ │ │ │ │ │ └── a
│ │ │ │ │ │ └── generators
│ │ │ │ │ │ └── a_generator
│ │ │ │ │ │ └── a_generator.rb
│ │ │ │ ├── lib
│ │ │ │ │ └── generators
│ │ │ │ │ │ ├── missing_class
│ │ │ │ │ │ └── missing_class_generator.rb
│ │ │ │ │ │ └── working
│ │ │ │ │ │ └── working_generator.rb
│ │ │ │ ├── about_yml_plugins
│ │ │ │ │ ├── bad_about_yml
│ │ │ │ │ │ ├── init.rb
│ │ │ │ │ │ └── about.yml
│ │ │ │ │ └── plugin_without_about_yml
│ │ │ │ │ │ └── init.rb
│ │ │ │ └── environment_with_constant.rb
│ │ │ └── mocks
│ │ │ │ └── routes.rb
│ │ ├── lib
│ │ │ ├── commands
│ │ │ │ ├── about.rb
│ │ │ │ ├── update.rb
│ │ │ │ ├── performance
│ │ │ │ │ └── request.rb
│ │ │ │ ├── destroy.rb
│ │ │ │ └── generate.rb
│ │ │ ├── rails_generator
│ │ │ │ ├── generators
│ │ │ │ │ └── components
│ │ │ │ │ │ ├── mailer
│ │ │ │ │ │ └── templates
│ │ │ │ │ │ │ ├── view.rhtml
│ │ │ │ │ │ │ ├── fixture.rhtml
│ │ │ │ │ │ │ ├── view.erb
│ │ │ │ │ │ │ └── fixture.erb
│ │ │ │ │ │ ├── plugin
│ │ │ │ │ │ └── templates
│ │ │ │ │ │ │ ├── init.rb
│ │ │ │ │ │ │ ├── plugin.rb
│ │ │ │ │ │ │ ├── install.rb
│ │ │ │ │ │ │ ├── uninstall.rb
│ │ │ │ │ │ │ ├── tasks.rake
│ │ │ │ │ │ │ ├── USAGE
│ │ │ │ │ │ │ ├── unit_test.rb
│ │ │ │ │ │ │ ├── generator.rb
│ │ │ │ │ │ │ └── README
│ │ │ │ │ │ ├── controller
│ │ │ │ │ │ └── templates
│ │ │ │ │ │ │ ├── helper.rb
│ │ │ │ │ │ │ ├── view.html.erb
│ │ │ │ │ │ │ ├── controller.rb
│ │ │ │ │ │ │ └── functional_test.rb
│ │ │ │ │ │ ├── model
│ │ │ │ │ │ └── templates
│ │ │ │ │ │ │ ├── model.rb
│ │ │ │ │ │ │ └── unit_test.rb
│ │ │ │ │ │ ├── resource
│ │ │ │ │ │ └── templates
│ │ │ │ │ │ │ ├── helper.rb
│ │ │ │ │ │ │ ├── controller.rb
│ │ │ │ │ │ │ └── functional_test.rb
│ │ │ │ │ │ ├── scaffold
│ │ │ │ │ │ └── templates
│ │ │ │ │ │ │ └── helper.rb
│ │ │ │ │ │ ├── observer
│ │ │ │ │ │ └── templates
│ │ │ │ │ │ │ ├── observer.rb
│ │ │ │ │ │ │ └── unit_test.rb
│ │ │ │ │ │ └── integration_test
│ │ │ │ │ │ └── templates
│ │ │ │ │ │ └── integration_test.rb
│ │ │ │ └── scripts
│ │ │ │ │ ├── generate.rb
│ │ │ │ │ └── update.rb
│ │ │ ├── railties_path.rb
│ │ │ ├── rails
│ │ │ │ └── version.rb
│ │ │ ├── tasks
│ │ │ │ ├── log.rake
│ │ │ │ └── rails.rb
│ │ │ └── console_sandbox.rb
│ │ ├── builtin
│ │ │ └── rails_info
│ │ │ │ ├── rails
│ │ │ │ └── info_helper.rb
│ │ │ │ └── rails_info_controller.rb
│ │ ├── bin
│ │ │ ├── about
│ │ │ ├── console
│ │ │ ├── destroy
│ │ │ ├── plugin
│ │ │ ├── runner
│ │ │ ├── server
│ │ │ ├── generate
│ │ │ ├── process
│ │ │ │ ├── reaper
│ │ │ │ ├── spawner
│ │ │ │ └── inspector
│ │ │ └── performance
│ │ │ │ ├── profiler
│ │ │ │ ├── request
│ │ │ │ └── benchmarker
│ │ ├── helpers
│ │ │ └── application_helper.rb
│ │ └── doc
│ │ │ └── README_FOR_APP
│ ├── activerecord
│ │ ├── .gitignore
│ │ ├── test
│ │ │ ├── fixtures
│ │ │ │ ├── all
│ │ │ │ │ ├── tasks.yml
│ │ │ │ │ ├── developers.yml
│ │ │ │ │ └── people.csv
│ │ │ │ ├── .gitignore
│ │ │ │ ├── naked
│ │ │ │ │ ├── csv
│ │ │ │ │ │ └── accounts.csv
│ │ │ │ │ └── yml
│ │ │ │ │ │ ├── accounts.yml
│ │ │ │ │ │ ├── courses.yml
│ │ │ │ │ │ └── companies.yml
│ │ │ │ ├── fk_test_has_pk.yml
│ │ │ │ ├── minimalistics.yml
│ │ │ │ ├── fk_test_has_fk.yml
│ │ │ │ ├── items.yml
│ │ │ │ ├── warehouse-things.yml
│ │ │ │ ├── legacy_things.yml
│ │ │ │ ├── computers.yml
│ │ │ │ ├── reserved_words
│ │ │ │ │ ├── distinct.yml
│ │ │ │ │ ├── select.yml
│ │ │ │ │ ├── values.yml
│ │ │ │ │ ├── group.yml
│ │ │ │ │ └── distincts_selects.yml
│ │ │ │ ├── author_addresses.yml
│ │ │ │ ├── author_favorites.yml
│ │ │ │ ├── vertices.yml
│ │ │ │ ├── members.yml
│ │ │ │ ├── tags.yml
│ │ │ │ ├── people.yml
│ │ │ │ ├── ships.yml
│ │ │ │ ├── courses.yml
│ │ │ │ ├── movies.yml
│ │ │ │ ├── mixed_case_monkeys.yml
│ │ │ │ ├── owners.yml
│ │ │ │ ├── books.yml
│ │ │ │ ├── projects.yml
│ │ │ │ ├── edges.yml
│ │ │ │ ├── readers.yml
│ │ │ │ ├── subscribers.yml
│ │ │ │ ├── mateys.yml
│ │ │ │ ├── authors.yml
│ │ │ │ ├── price_estimates.yml
│ │ │ │ ├── clubs.yml
│ │ │ │ ├── categories
│ │ │ │ │ ├── subsubdir
│ │ │ │ │ │ └── arbitrary_filename.yml
│ │ │ │ │ └── special_categories.yml
│ │ │ │ ├── funny_jokes.yml
│ │ │ │ ├── categories_ordered.yml
│ │ │ │ ├── treasures.yml
│ │ │ │ ├── pets.yml
│ │ │ │ ├── tasks.yml
│ │ │ │ ├── entrants.yml
│ │ │ │ ├── pirates.yml
│ │ │ │ ├── categories.yml
│ │ │ │ ├── parrots_pirates.yml
│ │ │ │ ├── categorizations.yml
│ │ │ │ └── sponsors.yml
│ │ │ ├── schema
│ │ │ │ ├── openbase.drop.sql
│ │ │ │ ├── db22.drop.sql
│ │ │ │ ├── sqlite2.drop.sql
│ │ │ │ ├── postgresql2.drop.sql
│ │ │ │ ├── openbase2.drop.sql
│ │ │ │ ├── sybase2.drop.sql
│ │ │ │ ├── frontbase2.drop.sql
│ │ │ │ ├── firebird2.drop.sql
│ │ │ │ ├── oracle2.drop.sql
│ │ │ │ ├── postgresql2.sql
│ │ │ │ ├── frontbase2.sql
│ │ │ │ ├── db22.sql
│ │ │ │ ├── sybase2.sql
│ │ │ │ ├── sqlite2.sql
│ │ │ │ ├── openbase2.sql
│ │ │ │ ├── oracle2.sql
│ │ │ │ └── firebird2.sql
│ │ │ ├── models
│ │ │ │ ├── binary.rb
│ │ │ │ ├── default.rb
│ │ │ │ ├── task.rb
│ │ │ │ ├── minimalistic.rb
│ │ │ │ ├── course.rb
│ │ │ │ ├── entrant.rb
│ │ │ │ ├── ship.rb
│ │ │ │ ├── joke.rb
│ │ │ │ ├── keyboard.rb
│ │ │ │ ├── legacy_thing.rb
│ │ │ │ ├── pet.rb
│ │ │ │ ├── owner.rb
│ │ │ │ ├── reader.rb
│ │ │ │ ├── column_name.rb
│ │ │ │ ├── mixed_case_monkey.rb
│ │ │ │ ├── movie.rb
│ │ │ │ ├── computer.rb
│ │ │ │ ├── price_estimate.rb
│ │ │ │ ├── matey.rb
│ │ │ │ ├── subject.rb
│ │ │ │ ├── categorization.rb
│ │ │ │ ├── auto_id.rb
│ │ │ │ ├── subscriber.rb
│ │ │ │ ├── warehouse_thing.rb
│ │ │ │ ├── item.rb
│ │ │ │ ├── sponsor.rb
│ │ │ │ ├── book.rb
│ │ │ │ ├── treasure.rb
│ │ │ │ ├── membership.rb
│ │ │ │ ├── order.rb
│ │ │ │ ├── tag.rb
│ │ │ │ ├── pirate.rb
│ │ │ │ ├── edge.rb
│ │ │ │ ├── person.rb
│ │ │ │ ├── club.rb
│ │ │ │ └── citation.rb
│ │ │ ├── assets
│ │ │ │ ├── example.log
│ │ │ │ └── flowers.jpg
│ │ │ ├── migrations
│ │ │ │ ├── duplicate
│ │ │ │ │ ├── 3_foo.rb
│ │ │ │ │ ├── 1_people_have_last_names.rb
│ │ │ │ │ └── 2_we_need_reminders.rb
│ │ │ │ ├── interleaved
│ │ │ │ │ ├── pass_3
│ │ │ │ │ │ ├── 2_i_raise_on_down.rb
│ │ │ │ │ │ └── 1_people_have_last_names.rb
│ │ │ │ │ └── pass_2
│ │ │ │ │ │ └── 1_people_have_last_names.rb
│ │ │ │ ├── missing
│ │ │ │ │ ├── 1_people_have_last_names.rb
│ │ │ │ │ ├── 1000_people_have_middle_names.rb
│ │ │ │ │ └── 3_we_need_reminders.rb
│ │ │ │ └── valid
│ │ │ │ │ ├── 1_people_have_last_names.rb
│ │ │ │ │ └── 2_we_need_reminders.rb
│ │ │ ├── config.rb
│ │ │ └── cases
│ │ │ │ └── connection_test_firebird.rb
│ │ ├── lib
│ │ │ ├── activerecord.rb
│ │ │ └── active_record
│ │ │ │ └── version.rb
│ │ └── examples
│ │ │ └── associations.png
│ ├── actionpack
│ │ ├── test
│ │ │ ├── fixtures
│ │ │ │ ├── test
│ │ │ │ │ ├── _partial.erb
│ │ │ │ │ ├── _hello.builder
│ │ │ │ │ ├── _partial.js.erb
│ │ │ │ │ ├── _partial.html.erb
│ │ │ │ │ ├── _partial_only.erb
│ │ │ │ │ ├── hello_world.erb
│ │ │ │ │ ├── _customer.erb
│ │ │ │ │ ├── _form.erb
│ │ │ │ │ ├── greeting.erb
│ │ │ │ │ ├── formatted_html_erb.html.erb
│ │ │ │ │ ├── formatted_xml_erb.builder
│ │ │ │ │ ├── hello_world_with_layout_false.erb
│ │ │ │ │ ├── greeting.js.rjs
│ │ │ │ │ ├── _labelling_form.erb
│ │ │ │ │ ├── _person.erb
│ │ │ │ │ ├── render_file_with_ivar.erb
│ │ │ │ │ ├── render_file_with_locals.erb
│ │ │ │ │ ├── formatted_xml_erb.html.erb
│ │ │ │ │ ├── formatted_xml_erb.xml.erb
│ │ │ │ │ ├── _customer_greeting.erb
│ │ │ │ │ ├── _hash_greeting.erb
│ │ │ │ │ ├── _partial_for_use_in_layout.html.erb
│ │ │ │ │ ├── render_to_string_test.erb
│ │ │ │ │ ├── _layout_for_partial.html.erb
│ │ │ │ │ ├── dot.directory
│ │ │ │ │ │ └── render_file_with_ivar.erb
│ │ │ │ │ ├── _customer_counter.erb
│ │ │ │ │ ├── action_talk_to_layout.erb
│ │ │ │ │ ├── capturing.erb
│ │ │ │ │ ├── _hash_object.erb
│ │ │ │ │ ├── content_for.erb
│ │ │ │ │ ├── hello_world_from_rxml.builder
│ │ │ │ │ ├── block_content_for.erb
│ │ │ │ │ ├── content_for_with_parameter.erb
│ │ │ │ │ ├── delete_with_js.rjs
│ │ │ │ │ ├── erb_content_for.erb
│ │ │ │ │ ├── hello.builder
│ │ │ │ │ ├── hello_world_container.builder
│ │ │ │ │ ├── content_for_concatenated.erb
│ │ │ │ │ ├── non_erb_block_content_for.builder
│ │ │ │ │ ├── list.erb
│ │ │ │ │ ├── using_layout_around_block.html.erb
│ │ │ │ │ ├── calling_partial_with_layout.html.erb
│ │ │ │ │ ├── potential_conflicts.erb
│ │ │ │ │ ├── hello_xml_world.builder
│ │ │ │ │ └── enum_rjs_test.rjs
│ │ │ │ ├── public
│ │ │ │ │ ├── 404.html
│ │ │ │ │ ├── 500.html
│ │ │ │ │ ├── javascripts
│ │ │ │ │ │ ├── bank.js
│ │ │ │ │ │ ├── robber.js
│ │ │ │ │ │ ├── controls.js
│ │ │ │ │ │ ├── dragdrop.js
│ │ │ │ │ │ ├── effects.js
│ │ │ │ │ │ ├── application.js
│ │ │ │ │ │ └── prototype.js
│ │ │ │ │ ├── stylesheets
│ │ │ │ │ │ ├── bank.css
│ │ │ │ │ │ └── robber.css
│ │ │ │ │ └── images
│ │ │ │ │ │ └── rails.png
│ │ │ │ ├── topics
│ │ │ │ │ └── _topic.html.erb
│ │ │ │ ├── layout_tests
│ │ │ │ │ ├── views
│ │ │ │ │ │ └── hello.rhtml
│ │ │ │ │ ├── alt
│ │ │ │ │ │ └── hello.rhtml
│ │ │ │ │ └── layouts
│ │ │ │ │ │ ├── symlinked
│ │ │ │ │ │ ├── item.rhtml
│ │ │ │ │ │ ├── third_party_template_library.mab
│ │ │ │ │ │ ├── layout_test.rhtml
│ │ │ │ │ │ ├── multiple_extensions.html.erb
│ │ │ │ │ │ └── controller_name_space
│ │ │ │ │ │ └── nested.rhtml
│ │ │ │ ├── post_test
│ │ │ │ │ ├── post
│ │ │ │ │ │ ├── index.html.erb
│ │ │ │ │ │ └── index.iphone.erb
│ │ │ │ │ ├── super_post
│ │ │ │ │ │ ├── index.html.erb
│ │ │ │ │ │ └── index.iphone.erb
│ │ │ │ │ └── layouts
│ │ │ │ │ │ ├── post.html.erb
│ │ │ │ │ │ └── super_post.iphone.erb
│ │ │ │ ├── fun
│ │ │ │ │ └── games
│ │ │ │ │ │ └── hello_world.erb
│ │ │ │ ├── override2
│ │ │ │ │ └── layouts
│ │ │ │ │ │ └── test
│ │ │ │ │ │ └── sub.erb
│ │ │ │ ├── respond_to
│ │ │ │ │ ├── using_defaults.html.erb
│ │ │ │ │ ├── using_defaults.xml.builder
│ │ │ │ │ ├── using_defaults_with_type_list.html.erb
│ │ │ │ │ ├── custom_constant_handling_without_block.mobile.erb
│ │ │ │ │ ├── using_defaults.js.rjs
│ │ │ │ │ ├── all_types_with_layout.html.erb
│ │ │ │ │ ├── using_defaults_with_type_list.xml.builder
│ │ │ │ │ ├── all_types_with_layout.js.rjs
│ │ │ │ │ ├── iphone_with_html_response_type.html.erb
│ │ │ │ │ ├── layouts
│ │ │ │ │ │ ├── standard.html.erb
│ │ │ │ │ │ ├── missing.html.erb
│ │ │ │ │ │ └── standard.iphone.erb
│ │ │ │ │ ├── using_defaults_with_type_list.js.rjs
│ │ │ │ │ └── iphone_with_html_response_type.iphone.erb
│ │ │ │ ├── scope
│ │ │ │ │ └── test
│ │ │ │ │ │ └── modgreet.erb
│ │ │ │ ├── addresses
│ │ │ │ │ └── list.erb
│ │ │ │ ├── override
│ │ │ │ │ └── test
│ │ │ │ │ │ └── hello_world.erb
│ │ │ │ ├── content_type
│ │ │ │ │ ├── render_default_for_rhtml.rhtml
│ │ │ │ │ ├── render_default_for_rjs.rjs
│ │ │ │ │ ├── render_default_for_rxml.rxml
│ │ │ │ │ └── render_default_content_types_for_respond_to.rhtml
│ │ │ │ ├── customers
│ │ │ │ │ └── _customer.html.erb
│ │ │ │ ├── layouts
│ │ │ │ │ ├── yield.erb
│ │ │ │ │ ├── builder.builder
│ │ │ │ │ ├── standard.erb
│ │ │ │ │ ├── talk_from_action.erb
│ │ │ │ │ ├── partial_with_layout.erb
│ │ │ │ │ └── block_with_layout.erb
│ │ │ │ ├── helpers
│ │ │ │ │ ├── fun
│ │ │ │ │ │ ├── pdf_helper.rb
│ │ │ │ │ │ └── games_helper.rb
│ │ │ │ │ └── abc_helper.rb
│ │ │ │ ├── functional_caching
│ │ │ │ │ ├── _partial.erb
│ │ │ │ │ ├── html_fragment_cached_with_partial.html.erb
│ │ │ │ │ ├── fragment_cached.html.erb
│ │ │ │ │ └── js_fragment_cached_with_partial.js.rjs
│ │ │ │ ├── symlink_parent
│ │ │ │ │ └── symlinked_layout.erb
│ │ │ │ ├── topic.rb
│ │ │ │ ├── project.rb
│ │ │ │ ├── bad_customers
│ │ │ │ │ └── _bad_customer.html.erb
│ │ │ │ ├── multipart
│ │ │ │ │ ├── single_parameter
│ │ │ │ │ ├── bracketed_param
│ │ │ │ │ ├── binary_file
│ │ │ │ │ ├── mixed_files
│ │ │ │ │ ├── mona_lisa.jpg
│ │ │ │ │ └── text_file
│ │ │ │ ├── good_customers
│ │ │ │ │ └── _good_customer.html.erb
│ │ │ │ ├── projects.yml
│ │ │ │ ├── reply.rb
│ │ │ │ ├── company.rb
│ │ │ │ ├── developer.rb
│ │ │ │ └── developers_projects.yml
│ │ │ └── controller
│ │ │ │ ├── controller_fixtures
│ │ │ │ ├── app
│ │ │ │ │ └── controllers
│ │ │ │ │ │ ├── user_controller.rb
│ │ │ │ │ │ └── admin
│ │ │ │ │ │ └── user_controller.rb
│ │ │ │ └── vendor
│ │ │ │ │ └── plugins
│ │ │ │ │ └── bad_plugin
│ │ │ │ │ └── lib
│ │ │ │ │ └── plugin_controller.rb
│ │ │ │ └── fake_models.rb
│ │ └── lib
│ │ │ ├── actionpack.rb
│ │ │ ├── action_controller
│ │ │ ├── templates
│ │ │ │ └── rescues
│ │ │ │ │ ├── unknown_action.erb
│ │ │ │ │ └── missing_template.erb
│ │ │ ├── session
│ │ │ │ └── mem_cache_store.rb
│ │ │ └── vendor
│ │ │ │ └── html-scanner
│ │ │ │ └── html
│ │ │ │ └── version.rb
│ │ │ └── action_pack
│ │ │ └── version.rb
│ ├── activesupport
│ │ ├── test
│ │ │ ├── dependencies
│ │ │ │ ├── conflict.rb
│ │ │ │ ├── service_two.rb
│ │ │ │ ├── requires_nonexistent0.rb
│ │ │ │ ├── requires_nonexistent1.rb
│ │ │ │ ├── cross_site_depender.rb
│ │ │ │ ├── check_warnings.rb
│ │ │ │ ├── service_one.rb
│ │ │ │ ├── mutual_one.rb
│ │ │ │ ├── mutual_two.rb
│ │ │ │ └── raises_exception.rb
│ │ │ ├── autoloading_fixtures
│ │ │ │ ├── e.rb
│ │ │ │ ├── a
│ │ │ │ │ ├── b.rb
│ │ │ │ │ └── c
│ │ │ │ │ │ ├── d.rb
│ │ │ │ │ │ └── e
│ │ │ │ │ │ └── f.rb
│ │ │ │ ├── conflict.rb
│ │ │ │ ├── application.rb
│ │ │ │ ├── cross_site_dependency.rb
│ │ │ │ ├── raises_name_error.rb
│ │ │ │ ├── class_folder
│ │ │ │ │ ├── inline_class.rb
│ │ │ │ │ ├── class_folder_subclass.rb
│ │ │ │ │ └── nested_class.rb
│ │ │ │ ├── module_folder
│ │ │ │ │ ├── inline_class.rb
│ │ │ │ │ ├── nested_sibling.rb
│ │ │ │ │ └── nested_class.rb
│ │ │ │ ├── module_with_custom_const_missing
│ │ │ │ │ └── a
│ │ │ │ │ │ └── b.rb
│ │ │ │ ├── class_folder.rb
│ │ │ │ ├── multiple_constant_file.rb
│ │ │ │ ├── raises_no_method_error.rb
│ │ │ │ └── counting_loader.rb
│ │ │ └── core_ext
│ │ │ │ └── symbol_test.rb
│ │ └── lib
│ │ │ ├── activesupport.rb
│ │ │ └── active_support
│ │ │ ├── core_ext
│ │ │ ├── test.rb
│ │ │ ├── float.rb
│ │ │ ├── cgi.rb
│ │ │ ├── base64.rb
│ │ │ ├── pathname.rb
│ │ │ ├── bigdecimal.rb
│ │ │ ├── benchmark.rb
│ │ │ ├── object.rb
│ │ │ ├── class.rb
│ │ │ ├── kernel.rb
│ │ │ ├── integer.rb
│ │ │ └── string
│ │ │ │ └── xchar.rb
│ │ │ ├── json
│ │ │ ├── encoders
│ │ │ │ ├── numeric.rb
│ │ │ │ ├── regexp.rb
│ │ │ │ ├── nil_class.rb
│ │ │ │ ├── true_class.rb
│ │ │ │ ├── false_class.rb
│ │ │ │ ├── symbol.rb
│ │ │ │ └── object.rb
│ │ │ └── variable.rb
│ │ │ ├── values
│ │ │ └── unicode_tables.dat
│ │ │ ├── core_ext.rb
│ │ │ ├── version.rb
│ │ │ ├── testing
│ │ │ └── default.rb
│ │ │ └── multibyte.rb
│ ├── actionmailer
│ │ ├── lib
│ │ │ ├── actionmailer.rb
│ │ │ └── action_mailer
│ │ │ │ ├── vendor
│ │ │ │ └── tmail-1.2.2
│ │ │ │ │ ├── tmail
│ │ │ │ │ ├── loader.rb
│ │ │ │ │ ├── mbox.rb
│ │ │ │ │ ├── main.rb
│ │ │ │ │ └── index.rb
│ │ │ │ │ └── tmail.rb
│ │ │ │ ├── version.rb
│ │ │ │ └── utils.rb
│ │ └── test
│ │ │ └── fixtures
│ │ │ ├── first_mailer
│ │ │ └── share.erb
│ │ │ ├── second_mailer
│ │ │ └── share.erb
│ │ │ ├── test_mailer
│ │ │ ├── _subtemplate.text.plain.erb
│ │ │ ├── rxml_template.rxml
│ │ │ ├── rxml_template.builder
│ │ │ ├── signed_up.erb
│ │ │ ├── implicitly_multipart_example.text.yaml.erb
│ │ │ ├── included_subtemplate.text.plain.erb
│ │ │ ├── implicitly_multipart_example.ignored.erb
│ │ │ ├── implicitly_multipart_example.rhtml.bak
│ │ │ ├── custom_templating_extension.text.html.haml
│ │ │ ├── custom_templating_extension.text.plain.haml
│ │ │ ├── implicitly_multipart_example.text.plain.erb
│ │ │ ├── signed_up_with_url.erb
│ │ │ └── implicitly_multipart_example.text.html.erb
│ │ │ ├── templates
│ │ │ └── signed_up.erb
│ │ │ ├── helper_mailer
│ │ │ ├── use_example_helper.erb
│ │ │ ├── use_helper.erb
│ │ │ ├── use_helper_method.erb
│ │ │ └── use_mail_helper.erb
│ │ │ ├── path.with.dots
│ │ │ └── funky_path_mailer
│ │ │ │ └── multipart_with_template_path_with_dots.erb
│ │ │ └── helpers
│ │ │ └── example_helper.rb
│ └── activeresource
│ │ ├── lib
│ │ ├── activeresource.rb
│ │ └── active_resource
│ │ │ └── version.rb
│ │ └── test
│ │ ├── fixtures
│ │ ├── person.rb
│ │ └── street_address.rb
│ │ └── abstract_unit.rb
└── plugins
│ ├── rspec
│ ├── TODO
│ ├── spec
│ │ ├── spec
│ │ │ ├── runner
│ │ │ │ ├── empty_file.txt
│ │ │ │ ├── resources
│ │ │ │ │ ├── a_bar.rb
│ │ │ │ │ ├── a_foo.rb
│ │ │ │ │ └── a_spec.rb
│ │ │ │ ├── spec_drb.opts
│ │ │ │ ├── spec.opts
│ │ │ │ ├── spec_spaced.opts
│ │ │ │ ├── failed.txt
│ │ │ │ ├── examples.txt
│ │ │ │ ├── output_one_time_fixture.rb
│ │ │ │ └── output_one_time_fixture_runner.rb
│ │ │ ├── story
│ │ │ │ └── story_helper.rb
│ │ │ ├── mocks
│ │ │ │ └── bug_report_10260_spec.rb
│ │ │ ├── interop
│ │ │ │ └── test
│ │ │ │ │ └── unit
│ │ │ │ │ ├── testsuite_adapter_spec.rb
│ │ │ │ │ └── resources
│ │ │ │ │ ├── spec_that_fails.rb
│ │ │ │ │ ├── spec_that_passes.rb
│ │ │ │ │ ├── test_case_that_fails.rb
│ │ │ │ │ └── test_case_that_passes.rb
│ │ │ └── runner_spec.rb
│ │ ├── spec.opts
│ │ ├── rspec_suite.rb
│ │ └── autotest_helper.rb
│ ├── examples
│ │ ├── pure
│ │ │ ├── priority.txt
│ │ │ ├── spec_helper.rb
│ │ │ ├── legacy_spec.rb
│ │ │ ├── io_processor.rb
│ │ │ └── dynamic_spec.rb
│ │ └── stories
│ │ │ ├── game-of-life
│ │ │ ├── life.rb
│ │ │ ├── behaviour
│ │ │ │ ├── examples
│ │ │ │ │ └── examples.rb
│ │ │ │ ├── stories
│ │ │ │ │ ├── steps.rb
│ │ │ │ │ ├── stories.rb
│ │ │ │ │ └── helper.rb
│ │ │ │ └── everything.rb
│ │ │ └── .loadpath
│ │ │ ├── adder.rb
│ │ │ └── addition.rb
│ ├── lib
│ │ ├── spec
│ │ │ ├── mocks
│ │ │ │ ├── extensions
│ │ │ │ │ └── object.rb
│ │ │ │ └── errors.rb
│ │ │ ├── expectations
│ │ │ │ └── extensions.rb
│ │ │ ├── extensions
│ │ │ │ ├── metaclass.rb
│ │ │ │ └── object.rb
│ │ │ ├── story
│ │ │ │ ├── extensions.rb
│ │ │ │ ├── extensions
│ │ │ │ │ ├── string.rb
│ │ │ │ │ └── regexp.rb
│ │ │ │ └── scenario.rb
│ │ │ ├── interop
│ │ │ │ └── test
│ │ │ │ │ └── unit
│ │ │ │ │ ├── autorunner.rb
│ │ │ │ │ └── testresult.rb
│ │ │ ├── extensions.rb
│ │ │ ├── example
│ │ │ │ └── errors.rb
│ │ │ ├── runner
│ │ │ │ └── heckle_runner_unsupported.rb
│ │ │ └── story.rb
│ │ └── autotest
│ │ │ └── discover.rb
│ ├── .autotest
│ ├── .gitignore
│ ├── stories
│ │ ├── pending_stories
│ │ │ └── README
│ │ ├── all.rb
│ │ ├── resources
│ │ │ ├── spec
│ │ │ │ ├── simple_spec.rb
│ │ │ │ └── example_group_with_should_methods.rb
│ │ │ └── helpers
│ │ │ │ └── cmdline.rb
│ │ ├── interop
│ │ │ └── stories.rb
│ │ └── example_groups
│ │ │ └── stories.rb
│ ├── bin
│ │ ├── spec
│ │ └── spec_translator
│ ├── failing_examples
│ │ ├── spec_helper.rb
│ │ ├── failure_in_setup.rb
│ │ ├── failure_in_teardown.rb
│ │ ├── timeout_behaviour.rb
│ │ └── syntax_error_example.rb
│ ├── rake_tasks
│ │ ├── examples.rake
│ │ ├── verify_rcov.rake
│ │ └── examples_with_rcov.rake
│ └── UPGRADE
│ ├── can_flag
│ ├── .gitignore
│ ├── generators
│ │ └── can_flag
│ │ │ └── templates
│ │ │ ├── simple_controller_spec.rb
│ │ │ ├── helper.rb
│ │ │ └── fixtures.yml
│ ├── install.rb
│ ├── init.rb
│ └── tasks
│ │ └── acts_as_commentable_tasks.rake
│ ├── acts_as_indexed
│ ├── init.rb
│ └── test
│ │ ├── fixtures
│ │ └── post.rb
│ │ ├── schema.rb
│ │ └── database.yml
│ ├── attachment_fu
│ ├── test
│ │ ├── fixtures
│ │ │ └── files
│ │ │ │ ├── foo.txt
│ │ │ │ ├── rails.png
│ │ │ │ └── fake
│ │ │ │ └── rails.png
│ │ └── amazon_s3.yml
│ ├── install.rb
│ └── amazon_s3.yml.tpl
│ ├── acts_as_versioned
│ ├── init.rb
│ └── test
│ │ └── fixtures
│ │ ├── authors.yml
│ │ ├── landmark.rb
│ │ ├── landmarks.yml
│ │ ├── pages.yml
│ │ ├── landmark_versions.yml
│ │ ├── widget.rb
│ │ └── locked_pages.yml
│ ├── cacheable_flash
│ ├── uninstall.rb
│ ├── init.rb
│ ├── tasks
│ │ └── cacheable_flash_tasks.rake
│ ├── CHANGES
│ └── test
│ │ └── test_suite.rb
│ ├── rspec-rails
│ ├── generators
│ │ ├── rspec
│ │ │ ├── templates
│ │ │ │ ├── previous_failures.txt
│ │ │ │ ├── rcov.opts
│ │ │ │ ├── spec.opts
│ │ │ │ ├── all_stories.rb
│ │ │ │ ├── stories_helper.rb
│ │ │ │ └── script
│ │ │ │ │ └── spec
│ │ │ └── CHANGES
│ │ └── rspec_model
│ │ │ └── templates
│ │ │ └── model_spec.rb
│ ├── spec_resources
│ │ ├── views
│ │ │ ├── controller_spec
│ │ │ │ ├── _partial.rhtml
│ │ │ │ ├── action_setting_the_assigns_hash.rhtml
│ │ │ │ ├── action_with_errors_in_template.rhtml
│ │ │ │ ├── action_setting_flash_after_session_reset.rhtml
│ │ │ │ ├── action_setting_flash_before_session_reset.rhtml
│ │ │ │ └── action_with_template.rhtml
│ │ │ ├── render_spec
│ │ │ │ ├── _a_partial.rhtml
│ │ │ │ ├── some_action.rhtml
│ │ │ │ ├── some_action.js.rjs
│ │ │ │ └── some_action.rjs
│ │ │ ├── view_spec
│ │ │ │ ├── _partial_used_twice.rhtml
│ │ │ │ ├── _spacer.rhtml
│ │ │ │ ├── entry_form.rhtml
│ │ │ │ ├── _partial_with_local_variable.rhtml
│ │ │ │ ├── foo
│ │ │ │ │ └── show.rhtml
│ │ │ │ ├── template_with_partial_with_array.rhtml
│ │ │ │ ├── _partial.rhtml
│ │ │ │ ├── _partial_with_sub_partial.rhtml
│ │ │ │ ├── implicit_helper.rhtml
│ │ │ │ ├── explicit_helper.rhtml
│ │ │ │ ├── multiple_helpers.rhtml
│ │ │ │ ├── template_with_partial_using_collection.rhtml
│ │ │ │ ├── template_with_partial.rhtml
│ │ │ │ └── accessor.rhtml
│ │ │ ├── rjs_spec
│ │ │ │ ├── hide_div.rjs
│ │ │ │ ├── hide_page_element.rjs
│ │ │ │ ├── replace.rjs
│ │ │ │ ├── visual_effect.rjs
│ │ │ │ ├── replace_html.rjs
│ │ │ │ ├── insert_html.rjs
│ │ │ │ ├── _replacement_partial.rhtml
│ │ │ │ ├── visual_toggle_effect.rjs
│ │ │ │ └── replace_html_with_partial.rjs
│ │ │ └── tag_spec
│ │ │ │ ├── no_tags.rhtml
│ │ │ │ ├── single_div_with_no_attributes.rhtml
│ │ │ │ └── single_div_with_one_attribute.rhtml
│ │ ├── controllers
│ │ │ └── action_view_base_spec_controller.rb
│ │ └── helpers
│ │ │ ├── more_explicit_helper.rb
│ │ │ └── plugin_application_helper.rb
│ ├── .gitignore
│ ├── lib
│ │ ├── autotest
│ │ │ └── discover.rb
│ │ └── spec
│ │ │ └── rails
│ │ │ └── extensions
│ │ │ ├── object.rb
│ │ │ └── action_controller
│ │ │ └── test_response.rb
│ ├── README
│ ├── spec
│ │ ├── rails
│ │ │ ├── sample_spec.rb
│ │ │ └── mocks
│ │ │ │ └── ar_classes.rb
│ │ └── rails_suite.rb
│ └── stories
│ │ ├── helper.rb
│ │ └── steps
│ │ └── people.rb
│ ├── textile_editor_helper
│ ├── install.rb
│ ├── init.rb
│ ├── assets
│ │ └── images
│ │ │ └── textile-editor
│ │ │ ├── h1.png
│ │ │ ├── h2.png
│ │ │ ├── h3.png
│ │ │ ├── h4.png
│ │ │ ├── h5.png
│ │ │ ├── h6.png
│ │ │ ├── bold.png
│ │ │ ├── left.png
│ │ │ ├── omega.png
│ │ │ ├── right.png
│ │ │ ├── center.png
│ │ │ ├── indent.png
│ │ │ ├── italic.png
│ │ │ ├── justify.png
│ │ │ ├── outdent.png
│ │ │ ├── background.png
│ │ │ ├── blockquote.png
│ │ │ ├── paragraph.png
│ │ │ ├── underline.png
│ │ │ ├── list_bullets.png
│ │ │ ├── list_numbers.png
│ │ │ └── strikethrough.png
│ └── CHANGELOG
│ ├── sweeper
│ ├── install.rb
│ └── generators
│ │ └── sweeper
│ │ ├── USAGE
│ │ └── templates
│ │ └── sweeper.rb
│ ├── restful_authentication
│ ├── install.rb
│ └── generators
│ │ └── authenticated
│ │ ├── USAGE
│ │ └── templates
│ │ ├── helper.rb
│ │ ├── model_helper.rb
│ │ ├── activation.rhtml
│ │ └── signup_notification.rhtml
│ ├── acts_as_textiled
│ ├── test
│ │ └── fixtures
│ │ │ ├── author.rb
│ │ │ ├── story.rb
│ │ │ └── authors.yml
│ ├── init.rb
│ └── about.yml
│ ├── open_id_authentication
│ ├── lib
│ │ └── open_id_authentication
│ │ │ ├── nonce.rb
│ │ │ └── association.rb
│ └── init.rb
│ └── annotate_models
│ └── tasks
│ └── annotate_models_tasks.rake
├── app
├── helpers
│ ├── flags_helper.rb
│ ├── users_helper.rb
│ ├── menus_helper.rb
│ ├── sites_helper.rb
│ ├── sessions_helper.rb
│ └── attachments_helper.rb
├── views
│ ├── menus
│ │ └── navbar.rjs
│ ├── users
│ │ ├── index.html.erb
│ │ ├── show.html.erb
│ │ └── _user.html.erb
│ ├── pages
│ │ ├── _page.html.erb
│ │ ├── search.html.erb
│ │ ├── show.html.erb
│ │ ├── index.html.erb
│ │ ├── diff.html.erb
│ │ └── new.html.erb
│ └── attachments
│ │ ├── index.html.erb
│ │ ├── show.html.erb
│ │ └── new.html.erb
└── controllers
│ └── menus_controller.rb
├── spec
├── rcov.opts
├── spec.opts
├── fixtures
│ ├── pages.yml
│ ├── users.yml
│ ├── flags.yml
│ ├── page_versions.yml
│ ├── sites.yml
│ └── links.yml
└── models
│ └── link_spec.rb
├── script
├── about
├── plugin
├── runner
├── server
├── console
├── destroy
├── generate
├── process
│ ├── reaper
│ ├── spawner
│ └── inspector
├── performance
│ ├── profiler
│ ├── request
│ └── benchmarker
└── spec
├── stories
├── all.rb
└── helper.rb
├── config
├── initializers
│ ├── mime_types.rb
│ └── inflections.rb
└── amazon_s3.yml
├── doc
└── README_FOR_APP
├── db
└── migrate
│ ├── 005_add_versions_to_pages.rb
│ ├── 009_add_admin_to_users.rb
│ ├── 003_add_private_to_pages.rb
│ ├── 013_add_locking_to_pages.rb
│ ├── 007_add_identity_url_to_users.rb
│ ├── 011_create_links.rb
│ ├── 001_create_pages.rb
│ └── 012_page_site_fk.rb
├── .gitignore
└── Rakefile
/log/.gitignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/previous_failures.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/rails/REVISION_9248:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/TODO:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vendor/rails/railties/html/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/rails/railties/configs/empty.log:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/.gitignore:
--------------------------------------------------------------------------------
1 | debug.log
--------------------------------------------------------------------------------
/app/helpers/flags_helper.rb:
--------------------------------------------------------------------------------
1 | module FlagsHelper
2 | end
--------------------------------------------------------------------------------
/app/helpers/users_helper.rb:
--------------------------------------------------------------------------------
1 | module UsersHelper
2 | end
--------------------------------------------------------------------------------
/vendor/plugins/can_flag/.gitignore:
--------------------------------------------------------------------------------
1 | test/debug.log
2 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/runner/empty_file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/all/tasks.yml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/helpers/menus_helper.rb:
--------------------------------------------------------------------------------
1 | module MenusHelper
2 | end
3 |
--------------------------------------------------------------------------------
/app/helpers/sites_helper.rb:
--------------------------------------------------------------------------------
1 | module SitesHelper
2 | end
3 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/runner/resources/a_bar.rb:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/runner/resources/a_foo.rb:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/all/developers.yml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/all/people.csv:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/helpers/sessions_helper.rb:
--------------------------------------------------------------------------------
1 | module SessionsHelper
2 | end
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_indexed/init.rb:
--------------------------------------------------------------------------------
1 | require 'acts_as_indexed'
--------------------------------------------------------------------------------
/vendor/plugins/attachment_fu/test/fixtures/files/foo.txt:
--------------------------------------------------------------------------------
1 | foo
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/runner/spec_drb.opts:
--------------------------------------------------------------------------------
1 | --drb
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_partial.erb:
--------------------------------------------------------------------------------
1 | invalid
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite*
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_versioned/init.rb:
--------------------------------------------------------------------------------
1 | require 'acts_as_versioned'
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/runner/spec.opts:
--------------------------------------------------------------------------------
1 | --diff
2 | --colour
--------------------------------------------------------------------------------
/vendor/rails/actionpack/lib/actionpack.rb:
--------------------------------------------------------------------------------
1 | require 'action_pack'
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_hello.builder:
--------------------------------------------------------------------------------
1 | xm.hello
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_partial.js.erb:
--------------------------------------------------------------------------------
1 | partial js
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/naked/csv/accounts.csv:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/naked/yml/accounts.yml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/dependencies/conflict.rb:
--------------------------------------------------------------------------------
1 | Conflict = 1
--------------------------------------------------------------------------------
/app/helpers/attachments_helper.rb:
--------------------------------------------------------------------------------
1 | module AttachmentsHelper
2 | end
3 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/lib/actionmailer.rb:
--------------------------------------------------------------------------------
1 | require 'action_mailer'
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_partial.html.erb:
--------------------------------------------------------------------------------
1 | partial html
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_partial_only.erb:
--------------------------------------------------------------------------------
1 | only partial
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/hello_world.erb:
--------------------------------------------------------------------------------
1 | Hello world!
--------------------------------------------------------------------------------
/vendor/rails/activerecord/lib/activerecord.rb:
--------------------------------------------------------------------------------
1 | require 'active_record'
2 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/naked/yml/courses.yml:
--------------------------------------------------------------------------------
1 | qwerty
2 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/openbase.drop.sql:
--------------------------------------------------------------------------------
1 | DROP ALL
2 | go
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/e.rb:
--------------------------------------------------------------------------------
1 | class E
2 | end
--------------------------------------------------------------------------------
/vendor/plugins/cacheable_flash/uninstall.rb:
--------------------------------------------------------------------------------
1 | # Uninstall hook code here
2 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/generators/rspec/templates/previous_failures.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/_partial.rhtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/render_spec/_a_partial.rhtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/render_spec/some_action.rhtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/install.rb:
--------------------------------------------------------------------------------
1 | # Install hook code here
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/first_mailer/share.erb:
--------------------------------------------------------------------------------
1 | first mail
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/public/404.html:
--------------------------------------------------------------------------------
1 | 404 error fixture
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/public/500.html:
--------------------------------------------------------------------------------
1 | 500 error fixture
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/public/javascripts/bank.js:
--------------------------------------------------------------------------------
1 | // bank js
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/public/javascripts/robber.js:
--------------------------------------------------------------------------------
1 | // robber js
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/topics/_topic.html.erb:
--------------------------------------------------------------------------------
1 | <%= topic.title %>
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/fk_test_has_pk.yml:
--------------------------------------------------------------------------------
1 | first:
2 | id: 1
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/db22.drop.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE courses;
2 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/sqlite2.drop.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE courses;
2 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/activesupport.rb:
--------------------------------------------------------------------------------
1 | require 'active_support'
2 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/a/b.rb:
--------------------------------------------------------------------------------
1 | class A::B
2 | end
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/conflict.rb:
--------------------------------------------------------------------------------
1 | Conflict = 2
--------------------------------------------------------------------------------
/app/views/menus/navbar.rjs:
--------------------------------------------------------------------------------
1 | page['navbar'].replace_html :partial => 'shared/navbar'
--------------------------------------------------------------------------------
/spec/rcov.opts:
--------------------------------------------------------------------------------
1 | --exclude "spec/*,gems/*,lib/authenticated_system.rb"
2 | --rails
--------------------------------------------------------------------------------
/vendor/plugins/can_flag/generators/can_flag/templates/simple_controller_spec.rb:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial_used_twice.rhtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/second_mailer/share.erb:
--------------------------------------------------------------------------------
1 | second mail
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layout_tests/views/hello.rhtml:
--------------------------------------------------------------------------------
1 | hello.rhtml
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/post_test/post/index.html.erb:
--------------------------------------------------------------------------------
1 | Hello Firefox
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/post_test/post/index.iphone.erb:
--------------------------------------------------------------------------------
1 | Hello iPhone
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/public/javascripts/controls.js:
--------------------------------------------------------------------------------
1 | // controls js
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/public/javascripts/dragdrop.js:
--------------------------------------------------------------------------------
1 | // dragdrop js
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/public/javascripts/effects.js:
--------------------------------------------------------------------------------
1 | // effects js
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/public/stylesheets/bank.css:
--------------------------------------------------------------------------------
1 | /* bank.css */
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/public/stylesheets/robber.css:
--------------------------------------------------------------------------------
1 | /* robber.css */
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_customer.erb:
--------------------------------------------------------------------------------
1 | Hello: <%= customer.name %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_form.erb:
--------------------------------------------------------------------------------
1 | <%= form.label :title %>
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/greeting.erb:
--------------------------------------------------------------------------------
1 |
This is grand!
2 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/minimalistics.yml:
--------------------------------------------------------------------------------
1 | first:
2 | id: 1
3 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/postgresql2.drop.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE courses;
2 |
--------------------------------------------------------------------------------
/vendor/rails/activeresource/lib/activeresource.rb:
--------------------------------------------------------------------------------
1 | require 'active_resource'
2 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/a/c/d.rb:
--------------------------------------------------------------------------------
1 | class A::C::D
2 | end
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/dependencies/service_two.rb:
--------------------------------------------------------------------------------
1 | class ServiceTwo
2 | end
--------------------------------------------------------------------------------
/vendor/rails/railties/test/fixtures/plugins/default/plugin_with_no_lib_dir/init.rb:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/plugins/cacheable_flash/init.rb:
--------------------------------------------------------------------------------
1 | require "json"
2 | require "cacheable_flash"
3 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/.gitignore:
--------------------------------------------------------------------------------
1 | tmtags
2 | .DS_Store
3 | .emacs-project
4 | *~
5 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/pure/priority.txt:
--------------------------------------------------------------------------------
1 | examples/custom_expectation_matchers.rb
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/runner/spec_spaced.opts:
--------------------------------------------------------------------------------
1 | --diff --colour
2 | --format s
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/test_mailer/_subtemplate.text.plain.erb:
--------------------------------------------------------------------------------
1 | let's go!
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/fun/games/hello_world.erb:
--------------------------------------------------------------------------------
1 | Living in a nested world
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layout_tests/alt/hello.rhtml:
--------------------------------------------------------------------------------
1 | alt/hello.rhtml
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/symlinked:
--------------------------------------------------------------------------------
1 | ../../symlink_parent
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/override2/layouts/test/sub.erb:
--------------------------------------------------------------------------------
1 | layout: <%= yield %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.html.erb:
--------------------------------------------------------------------------------
1 | Super Firefox
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.iphone.erb:
--------------------------------------------------------------------------------
1 | Super iPhone
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/public/javascripts/application.js:
--------------------------------------------------------------------------------
1 | // application js
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/public/javascripts/prototype.js:
--------------------------------------------------------------------------------
1 | // prototype js
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.html.erb:
--------------------------------------------------------------------------------
1 | Hello world!
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/scope/test/modgreet.erb:
--------------------------------------------------------------------------------
1 | Beautiful modules!
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/formatted_html_erb.html.erb:
--------------------------------------------------------------------------------
1 | formatted html erb
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.builder:
--------------------------------------------------------------------------------
1 | xml.test 'failed'
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/hello_world_with_layout_false.erb:
--------------------------------------------------------------------------------
1 | Hello world!
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/binary.rb:
--------------------------------------------------------------------------------
1 | class Binary < ActiveRecord::Base
2 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/openbase2.drop.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE courses
2 | go
3 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/sybase2.drop.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE courses
2 | go
3 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/a/c/e/f.rb:
--------------------------------------------------------------------------------
1 | class A::C::E::F
2 | end
--------------------------------------------------------------------------------
/spec/spec.opts:
--------------------------------------------------------------------------------
1 | --colour
2 | --format
3 | progress
4 | --loadby
5 | mtime
6 | --reverse
7 |
--------------------------------------------------------------------------------
/vendor/plugins/can_flag/install.rb:
--------------------------------------------------------------------------------
1 | puts IO.read(File.join(File.dirname(__FILE__), 'README'))
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/hide_div.rjs:
--------------------------------------------------------------------------------
1 | page.hide 'mydiv'
2 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/runner/resources/a_spec.rb:
--------------------------------------------------------------------------------
1 | # Empty - used by ../options_spec.rb
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/addresses/list.erb:
--------------------------------------------------------------------------------
1 | We only need to get this far!
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/item.rhtml:
--------------------------------------------------------------------------------
1 | item.rhtml <%= yield %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/override/test/hello_world.erb:
--------------------------------------------------------------------------------
1 | Hello overridden world!
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/frontbase2.drop.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE courses CASCADE;
2 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/commands/about.rb:
--------------------------------------------------------------------------------
1 | require 'environment'
2 | puts Rails::Info
3 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.rhtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/rails/railties/test/fixtures/lib/generators/missing_class/missing_class_generator.rb:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/tag_spec/no_tags.rhtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_spacer.rhtml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.rxml:
--------------------------------------------------------------------------------
1 | xml.instruct!
2 | xml.test
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/third_party_template_library.mab:
--------------------------------------------------------------------------------
1 | Mab
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.xml.builder:
--------------------------------------------------------------------------------
1 | xml.p "Hello world!"
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/greeting.js.rjs:
--------------------------------------------------------------------------------
1 | page[:body].visual_effect :highlight
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/fk_test_has_fk.yml:
--------------------------------------------------------------------------------
1 | first:
2 | id: 1
3 | fk_id: 1
4 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/items.yml:
--------------------------------------------------------------------------------
1 | dvd:
2 | id: 1
3 | name: Godfather
4 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/warehouse-things.yml:
--------------------------------------------------------------------------------
1 | one:
2 | id: 1
3 | value: 1000
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/default.rb:
--------------------------------------------------------------------------------
1 | class Default < ActiveRecord::Base
2 | end
3 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/task.rb:
--------------------------------------------------------------------------------
1 | class Task < ActiveRecord::Base
2 |
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/application.rb:
--------------------------------------------------------------------------------
1 | ApplicationController = 10
2 |
--------------------------------------------------------------------------------
/vendor/rails/railties/builtin/rails_info/rails/info_helper.rb:
--------------------------------------------------------------------------------
1 | module Rails::InfoHelper
2 | end
3 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/rails/railties/test/fixtures/about_yml_plugins/bad_about_yml/init.rb:
--------------------------------------------------------------------------------
1 | # intentionally empty
--------------------------------------------------------------------------------
/public/images/rails.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/rails.png
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/generators/rspec/CHANGES:
--------------------------------------------------------------------------------
1 | Please refer to the CHANGES file for RSpec's core
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/generators/rspec/templates/rcov.opts:
--------------------------------------------------------------------------------
1 | --exclude "spec/*,gems/*"
2 | --rails
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_setting_the_assigns_hash.rhtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/hide_page_element.rjs:
--------------------------------------------------------------------------------
1 | page['mydiv'].hide
2 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/tag_spec/single_div_with_no_attributes.rhtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec.opts:
--------------------------------------------------------------------------------
1 | --colour
2 | --format
3 | profile
4 | --timeout
5 | 20
6 | --diff
--------------------------------------------------------------------------------
/vendor/plugins/sweeper/install.rb:
--------------------------------------------------------------------------------
1 |
2 | puts IO.read(File.join(File.dirname(__FILE__), 'README'))
3 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.builder:
--------------------------------------------------------------------------------
1 | xml.instruct!
2 | xml.test
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rhtml.rhtml:
--------------------------------------------------------------------------------
1 | <%= 'hello world!' %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rjs.rjs:
--------------------------------------------------------------------------------
1 | page.alert 'hello world!'
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rxml.rxml:
--------------------------------------------------------------------------------
1 | xml.p "Hello world!"
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/customers/_customer.html.erb:
--------------------------------------------------------------------------------
1 | <%= greeting %>: <%= customer.name %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb:
--------------------------------------------------------------------------------
1 | Hello world!
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_labelling_form.erb:
--------------------------------------------------------------------------------
1 | <%= labelling_form.label :title %>
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_person.erb:
--------------------------------------------------------------------------------
1 | Second: <%= name %>
2 | Third: <%= @name %>
3 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/render_file_with_ivar.erb:
--------------------------------------------------------------------------------
1 | The secret is <%= @secret %>
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/render_file_with_locals.erb:
--------------------------------------------------------------------------------
1 | The secret is <%= secret %>
2 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/naked/yml/companies.yml:
--------------------------------------------------------------------------------
1 | # i wonder what will happen here
2 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/railties_path.rb:
--------------------------------------------------------------------------------
1 | RAILTIES_PATH = File.join(File.dirname(__FILE__), '..')
2 |
--------------------------------------------------------------------------------
/vendor/plugins/restful_authentication/install.rb:
--------------------------------------------------------------------------------
1 | puts IO.read(File.join(File.dirname(__FILE__), 'README'))
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/entry_form.rhtml:
--------------------------------------------------------------------------------
1 | <% form_tag do %>
2 | <% end %>
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/templates/signed_up.erb:
--------------------------------------------------------------------------------
1 | Hello there,
2 |
3 | Mr. <%= @recipient %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/layout_test.rhtml:
--------------------------------------------------------------------------------
1 | layout_test.rhtml <%= yield %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb:
--------------------------------------------------------------------------------
1 | Mobile
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.js.rjs:
--------------------------------------------------------------------------------
1 | page[:body].visual_effect :highlight
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.html.erb:
--------------------------------------------------------------------------------
1 | passed formatted html erb
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb:
--------------------------------------------------------------------------------
1 | passed formatted xml erb
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/minimalistic.rb:
--------------------------------------------------------------------------------
1 | class Minimalistic < ActiveRecord::Base
2 | end
3 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/dependencies/requires_nonexistent0.rb:
--------------------------------------------------------------------------------
1 | require 'RMagickDontExistDude'
2 |
--------------------------------------------------------------------------------
/vendor/rails/railties/test/fixtures/about_yml_plugins/plugin_without_about_yml/init.rb:
--------------------------------------------------------------------------------
1 | # intentionally empty
--------------------------------------------------------------------------------
/vendor/rails/railties/test/fixtures/plugins/default/stubby/about.yml:
--------------------------------------------------------------------------------
1 | author: Plugin Author
2 | version: 1.0.0
--------------------------------------------------------------------------------
/vendor/plugins/can_flag/generators/can_flag/templates/helper.rb:
--------------------------------------------------------------------------------
1 | module <%= controller_class_name %>Helper
2 | end
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_with_errors_in_template.rhtml:
--------------------------------------------------------------------------------
1 | <% raise %>
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/render_spec/some_action.js.rjs:
--------------------------------------------------------------------------------
1 | # This is used for rails > 1.2.3
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/render_spec/some_action.rjs:
--------------------------------------------------------------------------------
1 | # This is used for rails <= 1.2.3
2 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/replace.rjs:
--------------------------------------------------------------------------------
1 | page.replace 'mydiv', 'replacement text'
2 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/visual_effect.rjs:
--------------------------------------------------------------------------------
1 | page.visual_effect :fade, 'mydiv'
2 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial_with_local_variable.rhtml:
--------------------------------------------------------------------------------
1 | <%= x %>
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/runner/failed.txt:
--------------------------------------------------------------------------------
1 | heckler_spec.rb
2 | command_line_spec.rb
3 | reporter_spec.rb
--------------------------------------------------------------------------------
/vendor/plugins/sweeper/generators/sweeper/USAGE:
--------------------------------------------------------------------------------
1 | ./script/generate sweeper SweeperName callback1 callback2
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.erb:
--------------------------------------------------------------------------------
1 | So, <%= example_format(@text) %>
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.erb:
--------------------------------------------------------------------------------
1 | Hello there,
2 |
3 | Mr. <%= @recipient %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layouts/yield.erb:
--------------------------------------------------------------------------------
1 | <%= yield :title %>
2 | <%= yield %>
3 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb:
--------------------------------------------------------------------------------
1 | HTML for all_types_with_layout
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder:
--------------------------------------------------------------------------------
1 | xml.p "Hello world!"
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_customer_greeting.erb:
--------------------------------------------------------------------------------
1 | <%= greeting %>: <%= customer_greeting.name %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_hash_greeting.erb:
--------------------------------------------------------------------------------
1 | <%= greeting %>: <%= hash_greeting[:first_name] %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_partial_for_use_in_layout.html.erb:
--------------------------------------------------------------------------------
1 | Inside from partial (<%= name %>)
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/render_to_string_test.erb:
--------------------------------------------------------------------------------
1 | The value of foo is: ::<%= @foo %>::
2 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/legacy_things.yml:
--------------------------------------------------------------------------------
1 | obtuse:
2 | id: 1
3 | tps_report_number: 500
4 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/firebird2.drop.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE courses;
2 | DROP GENERATOR courses_seq;
3 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/oracle2.drop.sql:
--------------------------------------------------------------------------------
1 | drop table courses;
2 | drop sequence courses_seq;
3 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/cross_site_dependency.rb:
--------------------------------------------------------------------------------
1 | class CrossSiteDependency
2 | end
--------------------------------------------------------------------------------
/vendor/rails/railties/test/fixtures/environment_with_constant.rb:
--------------------------------------------------------------------------------
1 | $initialize_test_set_from_env = 'success'
2 |
--------------------------------------------------------------------------------
/vendor/rails/railties/test/fixtures/plugins/default/stubby/lib/stubby_mixin.rb:
--------------------------------------------------------------------------------
1 | module StubbyMixin
2 | end
3 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_setting_flash_after_session_reset.rhtml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_setting_flash_before_session_reset.rhtml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/replace_html.rjs:
--------------------------------------------------------------------------------
1 | page.replace_html 'mydiv', 'replacement text'
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/tag_spec/single_div_with_one_attribute.rhtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/mocks/extensions/object.rb:
--------------------------------------------------------------------------------
1 | class Object
2 | include Spec::Mocks::Methods
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layouts/builder.builder:
--------------------------------------------------------------------------------
1 | xml.wrapper do
2 | xml << @content_for_layout
3 | end
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/post_test/layouts/post.html.erb:
--------------------------------------------------------------------------------
1 | <%= yield %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.js.rjs:
--------------------------------------------------------------------------------
1 | page << "RJS for all_types_with_layout"
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_layout_for_partial.html.erb:
--------------------------------------------------------------------------------
1 | Before (<%= name %>)
2 | <%= yield %>
3 | After
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb:
--------------------------------------------------------------------------------
1 | The secret is <%= @secret %>
2 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/course.rb:
--------------------------------------------------------------------------------
1 | class Course < ActiveRecord::Base
2 | has_many :entrants
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/dependencies/requires_nonexistent1.rb:
--------------------------------------------------------------------------------
1 | require_dependency 'requires_nonexistent0'
2 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/init.rb:
--------------------------------------------------------------------------------
1 | # Include hook code here
2 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb:
--------------------------------------------------------------------------------
1 | # <%= class_name %>
2 |
--------------------------------------------------------------------------------
/public/images/textile-editor/h1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/h1.png
--------------------------------------------------------------------------------
/public/images/textile-editor/h2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/h2.png
--------------------------------------------------------------------------------
/public/images/textile-editor/h3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/h3.png
--------------------------------------------------------------------------------
/public/images/textile-editor/h4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/h4.png
--------------------------------------------------------------------------------
/public/images/textile-editor/h5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/h5.png
--------------------------------------------------------------------------------
/public/images/textile-editor/h6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/h6.png
--------------------------------------------------------------------------------
/script/about:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/about'
4 |
--------------------------------------------------------------------------------
/script/plugin:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/plugin'
4 |
--------------------------------------------------------------------------------
/script/runner:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/runner'
4 |
--------------------------------------------------------------------------------
/script/server:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/server'
4 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/insert_html.rjs:
--------------------------------------------------------------------------------
1 | page.insert_html 'mydiv', 'replacement text'
2 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/foo/show.rhtml:
--------------------------------------------------------------------------------
1 | <%= method_in_plugin_application_helper %>
2 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/autotest/discover.rb:
--------------------------------------------------------------------------------
1 | Autotest.add_discovery do
2 | "rspec" if File.exist?('spec')
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.erb:
--------------------------------------------------------------------------------
1 | Hello, <%= person_name %>. Thanks for registering!
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.erb:
--------------------------------------------------------------------------------
1 | yaml to: <%= @recipient %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml:
--------------------------------------------------------------------------------
1 | world
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb:
--------------------------------------------------------------------------------
1 | Hello future from <%= @type -%>!
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.html.erb:
--------------------------------------------------------------------------------
1 | <%= yield %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.js.rjs:
--------------------------------------------------------------------------------
1 | page[:body].visual_effect :highlight
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_customer_counter.erb:
--------------------------------------------------------------------------------
1 | <%= customer_counter.name %><%= customer_counter_counter %>
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/entrant.rb:
--------------------------------------------------------------------------------
1 | class Entrant < ActiveRecord::Base
2 | belongs_to :course
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/ship.rb:
--------------------------------------------------------------------------------
1 | class Ship < ActiveRecord::Base
2 | self.record_timestamps = false
3 | end
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/core_ext/test.rb:
--------------------------------------------------------------------------------
1 | require 'active_support/core_ext/test/unit/assertions'
2 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/raises_name_error.rb:
--------------------------------------------------------------------------------
1 | class RaisesNameError
2 | FooBarBaz
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/install.rb:
--------------------------------------------------------------------------------
1 | # Install hook code here
2 |
--------------------------------------------------------------------------------
/public/images/textile-editor/bold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/bold.png
--------------------------------------------------------------------------------
/public/images/textile-editor/left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/left.png
--------------------------------------------------------------------------------
/script/console:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/console'
4 |
--------------------------------------------------------------------------------
/script/destroy:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/destroy'
4 |
--------------------------------------------------------------------------------
/script/generate:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/generate'
4 |
--------------------------------------------------------------------------------
/vendor/plugins/restful_authentication/generators/authenticated/USAGE:
--------------------------------------------------------------------------------
1 | ./script/generate authenticated USERMODEL CONTROLLERNAME
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/_replacement_partial.rhtml:
--------------------------------------------------------------------------------
1 | This is the text in the replacement partial.
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/visual_toggle_effect.rjs:
--------------------------------------------------------------------------------
1 | page.visual_effect :toggle_blind, 'mydiv'
2 |
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/init.rb:
--------------------------------------------------------------------------------
1 | # Include hook code here
2 | ActionView::Base.send :include, TextileEditorHelper
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb:
--------------------------------------------------------------------------------
1 | module Fun::PdfHelper
2 | def foobar() 'baz' end
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layouts/standard.erb:
--------------------------------------------------------------------------------
1 | <%= @content_for_layout %><%= @variable_for_layout %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/layouts/missing.html.erb:
--------------------------------------------------------------------------------
1 | <%= yield %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb:
--------------------------------------------------------------------------------
1 | <%= yield %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/action_talk_to_layout.erb:
--------------------------------------------------------------------------------
1 | <% @title = "Talking to the layout" -%>
2 | Action was here!
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/capturing.erb:
--------------------------------------------------------------------------------
1 | <% days = capture do %>
2 | Dreamy days
3 | <% end %>
4 | <%= days %>
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/assets/example.log:
--------------------------------------------------------------------------------
1 | # Logfile created on Wed Oct 31 16:05:13 +0000 2007 by logger.rb/1.5.2.9
2 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/computers.yml:
--------------------------------------------------------------------------------
1 | workstation:
2 | id: 1
3 | developer: 1
4 | extendedWarranty: 1
5 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/reserved_words/distinct.yml:
--------------------------------------------------------------------------------
1 | distinct1:
2 | id: 1
3 |
4 | distinct2:
5 | id: 2
6 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/joke.rb:
--------------------------------------------------------------------------------
1 | class Joke < ActiveRecord::Base
2 | set_table_name 'funny_jokes'
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/class_folder/inline_class.rb:
--------------------------------------------------------------------------------
1 | class ClassFolder::InlineClass
2 | end
3 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/module_folder/inline_class.rb:
--------------------------------------------------------------------------------
1 | class ModuleFolder::InlineClass
2 | end
3 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/module_folder/nested_sibling.rb:
--------------------------------------------------------------------------------
1 | class ModuleFolder::NestedSibling
2 | end
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/dependencies/cross_site_depender.rb:
--------------------------------------------------------------------------------
1 | class CrossSiteDepender
2 | CrossSiteDependency
3 | end
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/uninstall.rb:
--------------------------------------------------------------------------------
1 | # Uninstall hook code here
2 |
--------------------------------------------------------------------------------
/app/views/users/index.html.erb:
--------------------------------------------------------------------------------
1 | <%= render :partial => @users %>
2 | <% #FIXME Add rendering for all pages that have a nil user... %>
--------------------------------------------------------------------------------
/public/images/textile-editor/center.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/center.png
--------------------------------------------------------------------------------
/public/images/textile-editor/indent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/indent.png
--------------------------------------------------------------------------------
/public/images/textile-editor/italic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/italic.png
--------------------------------------------------------------------------------
/public/images/textile-editor/justify.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/justify.png
--------------------------------------------------------------------------------
/public/images/textile-editor/omega.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/omega.png
--------------------------------------------------------------------------------
/public/images/textile-editor/outdent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/outdent.png
--------------------------------------------------------------------------------
/public/images/textile-editor/right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/right.png
--------------------------------------------------------------------------------
/stories/all.rb:
--------------------------------------------------------------------------------
1 | dir = File.dirname(__FILE__)
2 | Dir[File.expand_path("#{dir}/**/*.rb")].uniq.each do |file|
3 | require file
4 | end
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_versioned/test/fixtures/authors.yml:
--------------------------------------------------------------------------------
1 | caged:
2 | id: 1
3 | name: caged
4 | mly:
5 | id: 2
6 | name: mly
--------------------------------------------------------------------------------
/vendor/plugins/restful_authentication/generators/authenticated/templates/helper.rb:
--------------------------------------------------------------------------------
1 | module <%= controller_class_name %>Helper
2 | end
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/generators/rspec/templates/spec.opts:
--------------------------------------------------------------------------------
1 | --colour
2 | --format progress
3 | --loadby mtime
4 | --reverse
5 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/template_with_partial_with_array.rhtml:
--------------------------------------------------------------------------------
1 | <%= render :partial => @array %>
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.2/tmail/loader.rb:
--------------------------------------------------------------------------------
1 | #:stopdoc:
2 | require 'tmail/mailbox'
3 | #:startdoc:
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.2/tmail/mbox.rb:
--------------------------------------------------------------------------------
1 | #:stopdoc:
2 | require 'tmail/mailbox'
3 | #:startdoc:
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/functional_caching/_partial.erb:
--------------------------------------------------------------------------------
1 | <% cache do %>
2 | Fragment caching in a partial
3 | <% end %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/helpers/fun/games_helper.rb:
--------------------------------------------------------------------------------
1 | module Fun::GamesHelper
2 | def stratego() "Iz guuut!" end
3 | end
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb:
--------------------------------------------------------------------------------
1 | multiple_extensions.html.erb <%= yield %>
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb:
--------------------------------------------------------------------------------
1 | <%= yield %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb:
--------------------------------------------------------------------------------
1 | Hello iPhone future from <%= @type -%>!
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/symlink_parent/symlinked_layout.erb:
--------------------------------------------------------------------------------
1 | This is my layout
2 |
3 | <%= yield %>
4 |
5 | End.
6 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/author_addresses.yml:
--------------------------------------------------------------------------------
1 | david_address:
2 | id: 1
3 |
4 | david_address_extra:
5 | id: 2
6 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/author_favorites.yml:
--------------------------------------------------------------------------------
1 | david_mary:
2 | id: 1
3 | author_id: 1
4 | favorite_author_id: 2
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/vertices.yml:
--------------------------------------------------------------------------------
1 | <% (1..5).each do |id| %>
2 | vertex_<%= id %>:
3 | id: <%= id %>
4 | <% end %>
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/keyboard.rb:
--------------------------------------------------------------------------------
1 | class Keyboard < ActiveRecord::Base
2 | set_primary_key 'key_number'
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/postgresql2.sql:
--------------------------------------------------------------------------------
1 | CREATE TABLE courses (
2 | id serial primary key,
3 | name text
4 | );
5 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/module_with_custom_const_missing/a/b.rb:
--------------------------------------------------------------------------------
1 | ModuleWithCustomConstMissing::A::B = "10"
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/dependencies/check_warnings.rb:
--------------------------------------------------------------------------------
1 | $check_warnings_load_count += 1
2 | $checked_verbose = $VERBOSE
3 |
--------------------------------------------------------------------------------
/public/images/textile-editor/paragraph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/paragraph.png
--------------------------------------------------------------------------------
/public/images/textile-editor/underline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/underline.png
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/lib/autotest/discover.rb:
--------------------------------------------------------------------------------
1 | # This needs to be here for >= ZenTest-3.9.0 to add this directory to the load path.
--------------------------------------------------------------------------------
/vendor/plugins/rspec/.autotest:
--------------------------------------------------------------------------------
1 | Autotest.add_hook :initialize do |at|
2 | at.add_exception("spec/interop/test/unit/resources")
3 | end
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/test_mailer/included_subtemplate.text.plain.erb:
--------------------------------------------------------------------------------
1 | Hey Ho, <%= render :partial => "subtemplate" %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb:
--------------------------------------------------------------------------------
1 | <%= render :partial => 'partial' %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/_hash_object.erb:
--------------------------------------------------------------------------------
1 | <%= hash_object[:first_name] %>
2 | <%= object[:first_name].reverse %>
3 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/content_for.erb:
--------------------------------------------------------------------------------
1 | <% content_for :title do %>Putting stuff in the title!<% end %>
2 | Great stuff!
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/members.yml:
--------------------------------------------------------------------------------
1 | groucho:
2 | name: Groucho Marx
3 | some_other_guy:
4 | name: Englebert Humperdink
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/tags.yml:
--------------------------------------------------------------------------------
1 | general:
2 | id: 1
3 | name: General
4 |
5 | misc:
6 | id: 2
7 | name: Misc
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/legacy_thing.rb:
--------------------------------------------------------------------------------
1 | class LegacyThing < ActiveRecord::Base
2 | set_locking_column :version
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/pet.rb:
--------------------------------------------------------------------------------
1 | class Pet < ActiveRecord::Base
2 | set_primary_key :pet_id
3 | belongs_to :owner
4 | end
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/class_folder.rb:
--------------------------------------------------------------------------------
1 | class ClassFolder
2 | ConstantInClassFolder = 'indeed'
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper.rb:
--------------------------------------------------------------------------------
1 | module <%= class_name %>Helper
2 | end
3 |
--------------------------------------------------------------------------------
/public/images/textile-editor/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/background.png
--------------------------------------------------------------------------------
/public/images/textile-editor/blockquote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/blockquote.png
--------------------------------------------------------------------------------
/public/images/textile-editor/list_bullets.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/list_bullets.png
--------------------------------------------------------------------------------
/public/images/textile-editor/list_numbers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/list_numbers.png
--------------------------------------------------------------------------------
/script/process/reaper:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../../config/boot'
3 | require 'commands/process/reaper'
4 |
--------------------------------------------------------------------------------
/script/process/spawner:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../../config/boot'
3 | require 'commands/process/spawner'
4 |
--------------------------------------------------------------------------------
/vendor/plugins/can_flag/init.rb:
--------------------------------------------------------------------------------
1 | # Include hook code here
2 | require 'can_flag'
3 | ActiveRecord::Base.send(:include, Caboose::Can::Flag)
4 |
--------------------------------------------------------------------------------
/vendor/plugins/restful_authentication/generators/authenticated/templates/model_helper.rb:
--------------------------------------------------------------------------------
1 | module <%= model_controller_class_name %>Helper
2 | end
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_with_template.rhtml:
--------------------------------------------------------------------------------
1 | This is action_with_template.rhtml
2 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial.rhtml:
--------------------------------------------------------------------------------
1 | <%= method_in_plugin_application_helper %>
2 | <%= method_in_partial %>
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/stories/game-of-life/life.rb:
--------------------------------------------------------------------------------
1 | $: << File.dirname(__FILE__)
2 | require 'life/game'
3 | require 'life/grid'
4 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.erb:
--------------------------------------------------------------------------------
1 | This message brought to you by <%= name_of_the_mailer_class %>.
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml:
--------------------------------------------------------------------------------
1 | controller_name_space/nested.rhtml <%= yield %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/hello_world_from_rxml.builder:
--------------------------------------------------------------------------------
1 | xml.html do
2 | xml.p "Hello"
3 | end
4 | "String return value"
5 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/topic.rb:
--------------------------------------------------------------------------------
1 | class Topic < ActiveRecord::Base
2 | has_many :replies, :dependent => :destroy
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/people.yml:
--------------------------------------------------------------------------------
1 | michael:
2 | id: 1
3 | first_name: Michael
4 | david:
5 | id: 2
6 | first_name: David
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/owner.rb:
--------------------------------------------------------------------------------
1 | class Owner < ActiveRecord::Base
2 | set_primary_key :owner_id
3 | has_many :pets
4 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/reader.rb:
--------------------------------------------------------------------------------
1 | class Reader < ActiveRecord::Base
2 | belongs_to :post
3 | belongs_to :person
4 | end
5 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/frontbase2.sql:
--------------------------------------------------------------------------------
1 | CREATE TABLE courses (
2 | id integer DEFAULT unique,
3 | name varchar(100)
4 | );
5 |
--------------------------------------------------------------------------------
/vendor/rails/railties/bin/about:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/about'
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/bin/console:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/console'
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/bin/destroy:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/destroy'
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/bin/plugin:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/plugin'
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/bin/runner:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/runner'
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/bin/server:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/server'
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/html/images/rails.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/rails/railties/html/images/rails.png
--------------------------------------------------------------------------------
/vendor/rails/railties/test/mocks/routes.rb:
--------------------------------------------------------------------------------
1 | module ActionController
2 | module Routing
3 | class Routes
4 | end
5 | end
6 | end
7 |
--------------------------------------------------------------------------------
/public/images/textile-editor/strikethrough.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/public/images/textile-editor/strikethrough.png
--------------------------------------------------------------------------------
/script/process/inspector:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../../config/boot'
3 | require 'commands/process/inspector'
4 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial_with_sub_partial.rhtml:
--------------------------------------------------------------------------------
1 | <%= render :partial => 'partial', :object => partial %>
--------------------------------------------------------------------------------
/vendor/plugins/rspec/.gitignore:
--------------------------------------------------------------------------------
1 | pkg
2 | doc
3 | tmtags
4 | story_server/prototype/rspec_stories.html
5 | .DS_Store
6 | .emacs-project
7 | *~
8 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/lib/action_controller/templates/rescues/unknown_action.erb:
--------------------------------------------------------------------------------
1 | Unknown action
2 | <%=h @exception.message %>
3 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/functional_caching/fragment_cached.html.erb:
--------------------------------------------------------------------------------
1 | Hello
2 | <% cache do %>This bit's fragment cached<% end %>
3 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/functional_caching/js_fragment_cached_with_partial.js.rjs:
--------------------------------------------------------------------------------
1 | page.replace_html 'notices', :partial => 'partial'
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layouts/talk_from_action.erb:
--------------------------------------------------------------------------------
1 | <%= @title || @content_for_title %>
2 | <%= @content_for_layout -%>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/block_content_for.erb:
--------------------------------------------------------------------------------
1 | <% block_content_for :title do 'Putting stuff in the title!' end %>
2 | Great stuff!
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/content_for_with_parameter.erb:
--------------------------------------------------------------------------------
1 | <% content_for :title, "Putting stuff in the title!" %>
2 | Great stuff!
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/delete_with_js.rjs:
--------------------------------------------------------------------------------
1 | page.remove 'person'
2 | page.visual_effect :highlight, "project-#{@project_id}"
3 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/erb_content_for.erb:
--------------------------------------------------------------------------------
1 | <% erb_content_for :title do %>Putting stuff in the title!<% end %>
2 | Great stuff!
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/hello.builder:
--------------------------------------------------------------------------------
1 | xml.html do
2 | xml.p "Hello #{@name}"
3 | xml << render_file("test/greeting")
4 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/ships.yml:
--------------------------------------------------------------------------------
1 | black_pearl:
2 | name: "Black Pearl"
3 | interceptor:
4 | id: 2
5 | name: "Interceptor"
6 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/column_name.rb:
--------------------------------------------------------------------------------
1 | class ColumnName < ActiveRecord::Base
2 | def self.table_name () "colnametests" end
3 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/mixed_case_monkey.rb:
--------------------------------------------------------------------------------
1 | class MixedCaseMonkey < ActiveRecord::Base
2 | set_primary_key 'monkeyID'
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/movie.rb:
--------------------------------------------------------------------------------
1 | class Movie < ActiveRecord::Base
2 | def self.primary_key
3 | "movieid"
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/db22.sql:
--------------------------------------------------------------------------------
1 | CREATE TABLE courses (
2 | id INT NOT NULL PRIMARY KEY,
3 | name VARCHAR(255) NOT NULL
4 | );
5 |
--------------------------------------------------------------------------------
/vendor/rails/activeresource/test/fixtures/person.rb:
--------------------------------------------------------------------------------
1 | class Person < ActiveResource::Base
2 | self.site = "http://37s.sunrise.i:3000"
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/module_folder/nested_class.rb:
--------------------------------------------------------------------------------
1 | module ModuleFolder
2 | class NestedClass
3 | end
4 | end
5 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/dependencies/service_one.rb:
--------------------------------------------------------------------------------
1 | $loaded_service_one ||= 0
2 | $loaded_service_one += 1
3 |
4 | class ServiceOne
5 | end
--------------------------------------------------------------------------------
/vendor/rails/railties/bin/generate:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../config/boot'
3 | require 'commands/generate'
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/model.rb:
--------------------------------------------------------------------------------
1 | class <%= class_name %> < ActiveRecord::Base
2 | end
3 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper.rb:
--------------------------------------------------------------------------------
1 | module <%= controller_class_name %>Helper
2 | end
3 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper.rb:
--------------------------------------------------------------------------------
1 | module <%= controller_class_name %>Helper
2 | end
3 |
--------------------------------------------------------------------------------
/vendor/rails/railties/test/fixtures/lib/generators/working/working_generator.rb:
--------------------------------------------------------------------------------
1 | class WorkingGenerator < Rails::Generator::NamedBase
2 | end
3 |
--------------------------------------------------------------------------------
/script/performance/profiler:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../../config/boot'
3 | require 'commands/performance/profiler'
4 |
--------------------------------------------------------------------------------
/script/performance/request:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../../config/boot'
3 | require 'commands/performance/request'
4 |
--------------------------------------------------------------------------------
/spec/fixtures/pages.yml:
--------------------------------------------------------------------------------
1 | one:
2 | id: 1
3 | title: hai
4 | permalink: hai
5 | body: there
6 | site_id: 1
7 | version: 1
8 | locked_at:
9 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.erb:
--------------------------------------------------------------------------------
1 | Have a lovely picture, from me. Enjoy!
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb:
--------------------------------------------------------------------------------
1 | Ignored when searching for implicitly multipart parts.
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.rhtml.bak:
--------------------------------------------------------------------------------
1 | Ignored when searching for implicitly multipart parts.
2 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/project.rb:
--------------------------------------------------------------------------------
1 | class Project < ActiveRecord::Base
2 | has_and_belongs_to_many :developers, :uniq => true
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/hello_world_container.builder:
--------------------------------------------------------------------------------
1 | xml.test do
2 | render :partial => 'hello', :locals => { :xm => xml }
3 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/assets/flowers.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/rails/activerecord/test/assets/flowers.jpg
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/reserved_words/select.yml:
--------------------------------------------------------------------------------
1 | select1:
2 | id: 1
3 |
4 | select2:
5 | id: 2
6 |
7 | select3:
8 | id: 3
9 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/computer.rb:
--------------------------------------------------------------------------------
1 | class Computer < ActiveRecord::Base
2 | belongs_to :developer, :foreign_key=>'developer'
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/test/fixtures/about_yml_plugins/bad_about_yml/about.yml:
--------------------------------------------------------------------------------
1 | # an empty yaml file - any content in here seems to get parsed as a string
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/replace_html_with_partial.rjs:
--------------------------------------------------------------------------------
1 | page.replace_html 'mydiv', :partial => 'rjs_spec/replacement_partial'
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/implicit_helper.rhtml:
--------------------------------------------------------------------------------
1 | <%= method_in_plugin_application_helper %>
2 | <%= method_in_helper %>
3 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/runner/examples.txt:
--------------------------------------------------------------------------------
1 | Sir, if you were my husband, I would poison your drink.
2 | Madam, if you were my wife, I would drink it.
--------------------------------------------------------------------------------
/vendor/rails/actionpack/lib/action_controller/templates/rescues/missing_template.erb:
--------------------------------------------------------------------------------
1 | Template is missing
2 | <%=h @exception.message %>
3 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/bad_customers/_bad_customer.html.erb:
--------------------------------------------------------------------------------
1 | <%= greeting %> bad customer: <%= bad_customer.name %><%= bad_customer_counter %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/helpers/abc_helper.rb:
--------------------------------------------------------------------------------
1 | module AbcHelper
2 | def bare_a() end
3 | def bare_b() end
4 | def bare_c() end
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/multipart/single_parameter:
--------------------------------------------------------------------------------
1 | --AaB03x
2 | Content-Disposition: form-data; name="foo"
3 |
4 | bar
5 | --AaB03x--
6 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/examples/associations.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/rails/activerecord/examples/associations.png
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/courses.yml:
--------------------------------------------------------------------------------
1 | ruby:
2 | id: 1
3 | name: Ruby Development
4 |
5 | java:
6 | id: 2
7 | name: Java Development
8 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/movies.yml:
--------------------------------------------------------------------------------
1 | first:
2 | movieid: 1
3 | name: Terminator
4 |
5 | second:
6 | movieid: 2
7 | name: Gladiator
8 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/reserved_words/values.yml:
--------------------------------------------------------------------------------
1 | values1:
2 | id: 1
3 | group_id: 2
4 |
5 | values2:
6 | id: 2
7 | group_id: 1
8 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/sybase2.sql:
--------------------------------------------------------------------------------
1 | CREATE TABLE courses (
2 | id int NOT NULL PRIMARY KEY,
3 | name varchar(255) NOT NULL
4 | )
5 | go
6 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/multiple_constant_file.rb:
--------------------------------------------------------------------------------
1 | MultipleConstantFile = 10
2 | SiblingConstant = MultipleConstantFile * 2
3 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/raises_no_method_error.rb:
--------------------------------------------------------------------------------
1 | class RaisesNoMethodError
2 | self.foobar_method_doesnt_exist
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.erb:
--------------------------------------------------------------------------------
1 | <%= class_name %>#<%= action %>
2 |
3 | Find me in <%= path %>
4 |
--------------------------------------------------------------------------------
/script/performance/benchmarker:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../../config/boot'
3 | require 'commands/performance/benchmarker'
4 |
--------------------------------------------------------------------------------
/stories/helper.rb:
--------------------------------------------------------------------------------
1 | ENV["RAILS_ENV"] = "test"
2 | require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
3 | require 'spec/rails/story_adapter'
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/controllers/action_view_base_spec_controller.rb:
--------------------------------------------------------------------------------
1 | class ActionViewBaseSpecController < ActionController::Base
2 | end
3 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/explicit_helper.rhtml:
--------------------------------------------------------------------------------
1 | <%= method_in_plugin_application_helper %>
2 | <%= method_in_explicit_helper %>
3 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/story/story_helper.rb:
--------------------------------------------------------------------------------
1 | require File.dirname(__FILE__) + '/../../spec_helper'
2 | require File.dirname(__FILE__) + '/builders'
3 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/good_customers/_good_customer.html.erb:
--------------------------------------------------------------------------------
1 | <%= greeting %> good customer: <%= good_customer.name %><%= good_customer_counter %>
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/multipart/bracketed_param:
--------------------------------------------------------------------------------
1 | --AaB03x
2 | Content-Disposition: form-data; name="foo[baz]"
3 |
4 | bar
5 | --AaB03x--
6 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/mixed_case_monkeys.yml:
--------------------------------------------------------------------------------
1 | first:
2 | monkeyID: 1
3 | fleaCount: 42
4 | second:
5 | monkeyID: 2
6 | fleaCount: 43
7 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/owners.yml:
--------------------------------------------------------------------------------
1 | blackbeard:
2 | owner_id: 1
3 | name: blackbeard
4 |
5 | ashley:
6 | owner_id: 2
7 | name: ashley
8 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/price_estimate.rb:
--------------------------------------------------------------------------------
1 | class PriceEstimate < ActiveRecord::Base
2 | belongs_to :estimate_of, :polymorphic => true
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/sqlite2.sql:
--------------------------------------------------------------------------------
1 | CREATE TABLE 'courses' (
2 | 'id' INTEGER NOT NULL PRIMARY KEY,
3 | 'name' VARCHAR(255) NOT NULL
4 | );
5 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/json/encoders/numeric.rb:
--------------------------------------------------------------------------------
1 | class Numeric
2 | def to_json(options = nil) #:nodoc:
3 | to_s
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/json/encoders/regexp.rb:
--------------------------------------------------------------------------------
1 | class Regexp
2 | def to_json(options = nil) #:nodoc:
3 | inspect
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/rails/railties/bin/process/reaper:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../../config/boot'
3 | require 'commands/process/reaper'
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/bin/process/spawner:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../../config/boot'
3 | require 'commands/process/spawner'
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.erb:
--------------------------------------------------------------------------------
1 | <%= class_name %>#<%= action %>
2 |
3 | Find me in <%= path %>
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/observer.rb:
--------------------------------------------------------------------------------
1 | class <%= class_name %>Observer < ActiveRecord::Observer
2 | end
3 |
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_textiled/test/fixtures/author.rb:
--------------------------------------------------------------------------------
1 | class Author < ActiveRecord::Base
2 | has_many :stories
3 | acts_as_textiled :blog => :lite_mode
4 | end
5 |
--------------------------------------------------------------------------------
/vendor/plugins/cacheable_flash/tasks/cacheable_flash_tasks.rake:
--------------------------------------------------------------------------------
1 | # desc "Explaining what the task does"
2 | # task :cacheable_flash do
3 | # # Task goes here
4 | # end
--------------------------------------------------------------------------------
/vendor/plugins/can_flag/tasks/acts_as_commentable_tasks.rake:
--------------------------------------------------------------------------------
1 | # desc "Explaining what the task does"
2 | # task :acts_as_commentable do
3 | # # Task goes here
4 | # end
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/README:
--------------------------------------------------------------------------------
1 | See the rdoc for Spec::Rails for usage documentation.
2 |
3 | See ~/rspec/README for instructions on running rspec_on_rails' examples.
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/expectations/extensions.rb:
--------------------------------------------------------------------------------
1 | require 'spec/expectations/extensions/object'
2 | require 'spec/expectations/extensions/string_and_symbol'
3 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.erb:
--------------------------------------------------------------------------------
1 | From "Romeo and Juliet":
2 |
3 | <%= block_format @text %>
4 |
5 | Good ol' Shakespeare.
6 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.html.haml:
--------------------------------------------------------------------------------
1 | %p Hello there,
2 |
3 | %p
4 | Mr.
5 | = @recipient
6 | from haml
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/migrations/duplicate/3_foo.rb:
--------------------------------------------------------------------------------
1 | class Foo < ActiveRecord::Migration
2 | def self.up
3 | end
4 |
5 | def self.down
6 | end
7 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/matey.rb:
--------------------------------------------------------------------------------
1 | class Matey < ActiveRecord::Base
2 | belongs_to :pirate
3 | belongs_to :target, :class_name => 'Pirate'
4 | end
5 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/subject.rb:
--------------------------------------------------------------------------------
1 | # used for OracleSynonymTest, see test/synonym_test_oci.rb
2 | #
3 | class Subject < ActiveRecord::Base
4 | end
5 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/json/encoders/nil_class.rb:
--------------------------------------------------------------------------------
1 | class NilClass
2 | def to_json(options = nil) #:nodoc:
3 | 'null'
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/json/encoders/true_class.rb:
--------------------------------------------------------------------------------
1 | class TrueClass
2 | def to_json(options = nil) #:nodoc:
3 | 'true'
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/rails/railties/bin/process/inspector:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../../config/boot'
3 | require 'commands/process/inspector'
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/builtin/rails_info/rails_info_controller.rb:
--------------------------------------------------------------------------------
1 | # Alias to ensure old public.html still works.
2 | RailsInfoController = Rails::InfoController
3 |
--------------------------------------------------------------------------------
/app/views/pages/_page.html.erb:
--------------------------------------------------------------------------------
1 | <%= link_to page.title, wiki_page_url(page.permalink) %>
2 |
3 |
4 | <%= wikified_body(page.body) %>
5 |
--------------------------------------------------------------------------------
/vendor/plugins/attachment_fu/test/fixtures/files/rails.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/attachment_fu/test/fixtures/files/rails.png
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.plain.haml:
--------------------------------------------------------------------------------
1 | %p Hello there,
2 |
3 | %p
4 | Mr.
5 | = @recipient
6 | from haml
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.erb:
--------------------------------------------------------------------------------
1 | Plain text to <%= @recipient %>.
2 | Plain text to <%= @recipient %>.
3 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/multipart/binary_file:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/rails/actionpack/test/fixtures/multipart/binary_file
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/multipart/mixed_files:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/rails/actionpack/test/fixtures/multipart/mixed_files
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/content_for_concatenated.erb:
--------------------------------------------------------------------------------
1 | <% content_for :title, "Putting stuff "
2 | content_for :title, "in the title!" %>
3 | Great stuff!
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/non_erb_block_content_for.builder:
--------------------------------------------------------------------------------
1 | content_for :title do
2 | 'Putting stuff in the title!'
3 | end
4 | xml << "\nGreat stuff!"
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/books.yml:
--------------------------------------------------------------------------------
1 | awdr:
2 | id: 1
3 | name: "Agile Web Development with Rails"
4 |
5 | rfr:
6 | id: 2
7 | name: "Ruby for Rails"
8 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/json/encoders/false_class.rb:
--------------------------------------------------------------------------------
1 | class FalseClass
2 | def to_json(options = nil) #:nodoc:
3 | 'false'
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/rails/railties/bin/performance/profiler:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../../config/boot'
3 | require 'commands/performance/profiler'
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/bin/performance/request:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../../config/boot'
3 | require 'commands/performance/request'
4 |
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_versioned/test/fixtures/landmark.rb:
--------------------------------------------------------------------------------
1 | class Landmark < ActiveRecord::Base
2 | acts_as_versioned :if_changed => [ :name, :longitude, :latitude ]
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/extensions/metaclass.rb:
--------------------------------------------------------------------------------
1 | module Spec
2 | module MetaClass
3 | def metaclass
4 | class << self; self; end
5 | end
6 | end
7 | end
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/story/extensions.rb:
--------------------------------------------------------------------------------
1 | require 'spec/story/extensions/main'
2 | require 'spec/story/extensions/string'
3 | require 'spec/story/extensions/regexp'
4 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/projects.yml:
--------------------------------------------------------------------------------
1 | action_controller:
2 | id: 2
3 | name: Active Controller
4 |
5 | active_record:
6 | id: 1
7 | name: Active Record
8 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/public/images/rails.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/rails/actionpack/test/fixtures/public/images/rails.png
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/list.erb:
--------------------------------------------------------------------------------
1 | <%= @test_unchanged = 'goodbye' %><%= render :partial => 'customer', :collection => @customers %><%= @test_unchanged %>
2 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/counting_loader.rb:
--------------------------------------------------------------------------------
1 | $counting_loaded_times ||= 0
2 | $counting_loaded_times += 1
3 |
4 | module CountingLoader
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/rails/railties/bin/performance/benchmarker:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require File.dirname(__FILE__) + '/../../config/boot'
3 | require 'commands/performance/benchmarker'
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/helpers/application_helper.rb:
--------------------------------------------------------------------------------
1 | # Methods added to this helper will be available to all templates in the application.
2 | module ApplicationHelper
3 | end
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/view.html.erb:
--------------------------------------------------------------------------------
1 | <%= class_name %>#<%= action %>
2 | Find me in <%= path %>
3 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/controller.rb:
--------------------------------------------------------------------------------
1 | class <%= controller_class_name %>Controller < ApplicationController
2 | end
3 |
--------------------------------------------------------------------------------
/vendor/rails/railties/test/fixtures/plugins/alternate/a/generators/a_generator/a_generator.rb:
--------------------------------------------------------------------------------
1 | class AGenerator < Rails::Generator::Base
2 | def manifest
3 | end
4 | end
5 |
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_textiled/test/fixtures/story.rb:
--------------------------------------------------------------------------------
1 | class Story < ActiveRecord::Base
2 | belongs_to :author
3 | acts_as_textiled :body, :description => :lite_mode
4 | end
5 |
--------------------------------------------------------------------------------
/vendor/plugins/attachment_fu/test/fixtures/files/fake/rails.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/attachment_fu/test/fixtures/files/fake/rails.png
--------------------------------------------------------------------------------
/vendor/plugins/rspec/stories/pending_stories/README:
--------------------------------------------------------------------------------
1 | This directory contains stories that are currently not passing
2 | because they are new or they represent regressions.
3 |
4 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/projects.yml:
--------------------------------------------------------------------------------
1 | action_controller:
2 | id: 2
3 | name: Active Controller
4 |
5 | active_record:
6 | id: 1
7 | name: Active Record
8 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/categorization.rb:
--------------------------------------------------------------------------------
1 | class Categorization < ActiveRecord::Base
2 | belongs_to :post
3 | belongs_to :category
4 | belongs_to :author
5 | end
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/class_folder/class_folder_subclass.rb:
--------------------------------------------------------------------------------
1 | class ClassFolder::ClassFolderSubclass < ClassFolder
2 | ConstantInClassFolder
3 | end
4 |
--------------------------------------------------------------------------------
/app/controllers/menus_controller.rb:
--------------------------------------------------------------------------------
1 | class MenusController < ApplicationController
2 |
3 | def navbar
4 | respond_to do |format|
5 | format.js
6 | end
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/app/views/users/show.html.erb:
--------------------------------------------------------------------------------
1 | <%= render :partial => @user %>
2 |
3 | <% for page in @user.pages do %>
4 | <%= link_to page.title, page_path(page.permalink) %>
5 | <% end %>
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/generators/rspec/templates/all_stories.rb:
--------------------------------------------------------------------------------
1 | dir = File.dirname(__FILE__)
2 | Dir[File.expand_path("#{dir}/**/*.rb")].uniq.each do |file|
3 | require file
4 | end
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/interop/test/unit/autorunner.rb:
--------------------------------------------------------------------------------
1 | class Test::Unit::AutoRunner
2 | remove_method :process_args
3 | def process_args(argv)
4 | true
5 | end
6 | end
7 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block.html.erb:
--------------------------------------------------------------------------------
1 | <% render(:layout => "layout_for_partial", :locals => { :name => "David" }) do %>Inside from block<% end %>
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/edges.yml:
--------------------------------------------------------------------------------
1 | <% (1..4).each do |id| %>
2 | edge_<%= id %>:
3 | id: <%= id %>
4 | source_id: <%= id %>
5 | sink_id: <%= id + 1 %>
6 | <% end %>
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/auto_id.rb:
--------------------------------------------------------------------------------
1 | class AutoId < ActiveRecord::Base
2 | def self.table_name () "auto_id_tests" end
3 | def self.primary_key () "auto_id" end
4 | end
5 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/subscriber.rb:
--------------------------------------------------------------------------------
1 | class Subscriber < ActiveRecord::Base
2 | set_primary_key 'nick'
3 | end
4 |
5 | class SpecialSubscriber < Subscriber
6 | end
7 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/warehouse_thing.rb:
--------------------------------------------------------------------------------
1 | class WarehouseThing < ActiveRecord::Base
2 | set_table_name "warehouse-things"
3 |
4 | validates_uniqueness_of :value
5 | end
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/autoloading_fixtures/class_folder/nested_class.rb:
--------------------------------------------------------------------------------
1 | class ClassFolder
2 | class NestedClass
3 | end
4 |
5 | class SiblingClass
6 | end
7 | end
8 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/extensions.rb:
--------------------------------------------------------------------------------
1 | require 'spec/extensions/object'
2 | require 'spec/extensions/class'
3 | require 'spec/extensions/main'
4 | require 'spec/extensions/metaclass'
5 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/readers.yml:
--------------------------------------------------------------------------------
1 | michael_welcome:
2 | id: 1
3 | post_id: 1
4 | person_id: 1
5 |
6 | michael_authorless:
7 | id: 2
8 | post_id: 3
9 | person_id: 1
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/subscribers.yml:
--------------------------------------------------------------------------------
1 | first:
2 | nick: alterself
3 | name: Luke Holden
4 |
5 | second:
6 | nick: webster132
7 | name: David Heinemeier Hansson
8 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/openbase2.sql:
--------------------------------------------------------------------------------
1 | CREATE TABLE courses (
2 | id integer UNIQUE INDEX DEFAULT _rowid,
3 | name text
4 | )
5 | go
6 | CREATE PRIMARY KEY courses (id)
7 | go
--------------------------------------------------------------------------------
/app/views/attachments/index.html.erb:
--------------------------------------------------------------------------------
1 | Attachments
2 |
3 | <%= render :partial => @attachments %>
4 |
5 |
6 |
7 |
8 | <%= link_to 'Add a new attachment', new_attachment_path %>
9 |
--------------------------------------------------------------------------------
/config/initializers/mime_types.rb:
--------------------------------------------------------------------------------
1 | # Add new mime types for use in respond_to blocks:
2 | # Mime::Type.register "text/richtext", :rtf
3 | # Mime::Type.register "application/x-mobile", :mobile
4 |
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_versioned/test/fixtures/landmarks.yml:
--------------------------------------------------------------------------------
1 | washington:
2 | id: 1
3 | name: Washington, D.C.
4 | latitude: 38.895
5 | longitude: -77.036667
6 | version: 1
7 |
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_versioned/test/fixtures/pages.yml:
--------------------------------------------------------------------------------
1 | welcome:
2 | id: 1
3 | title: Welcome to the weblog
4 | body: Such a lovely day
5 | version: 24
6 | author_id: 1
7 | revisor_id: 1
--------------------------------------------------------------------------------
/vendor/plugins/attachment_fu/test/amazon_s3.yml:
--------------------------------------------------------------------------------
1 | test:
2 | bucket_name: afu
3 | access_key_id: YOURACCESSKEY
4 | secret_access_key: YOURSECRETACCESSKEY
5 | server: 127.0.0.1
6 | port: 3002
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/examples.rb:
--------------------------------------------------------------------------------
1 | require 'spec'
2 | require 'behaviour/examples/game_behaviour'
3 | require 'behaviour/examples/grid_behaviour'
4 |
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/h1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/h1.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/h2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/h2.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/h3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/h3.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/h4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/h4.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/h5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/h5.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/h6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/h6.png
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/helpers/example_helper.rb:
--------------------------------------------------------------------------------
1 | module ExampleHelper
2 | def example_format(text)
3 | "#{text}"
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/json/encoders/symbol.rb:
--------------------------------------------------------------------------------
1 | class Symbol
2 | def to_json(options = {}) #:nodoc:
3 | ActiveSupport::JSON.encode(to_s, options)
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/values/unicode_tables.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/rails/activesupport/lib/active_support/values/unicode_tables.dat
--------------------------------------------------------------------------------
/vendor/rails/railties/test/fixtures/plugins/default/stubby/generators/stubby_generator/stubby_generator.rb:
--------------------------------------------------------------------------------
1 | class StubbyGenerator < Rails::Generator::Base
2 | def manifest
3 | end
4 | end
5 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/multiple_helpers.rhtml:
--------------------------------------------------------------------------------
1 | <%= method_in_plugin_application_helper %>
2 | <%= method_in_explicit_helper %>
3 | <%= method_in_more_explicit_helper %>
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/extensions/object.rb:
--------------------------------------------------------------------------------
1 | class Object
2 | def args_and_options(*args)
3 | options = Hash === args.last ? args.pop : {}
4 | return args, options
5 | end
6 | end
7 |
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/bold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/bold.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/left.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/omega.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/omega.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/right.png
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/calling_partial_with_layout.html.erb:
--------------------------------------------------------------------------------
1 | <%= render(:layout => "layout_for_partial", :partial => "partial_for_use_in_layout", :locals => { :name => "David" }) %>
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/mateys.yml:
--------------------------------------------------------------------------------
1 | blackbeard_to_redbeard:
2 | pirate_id: <%= Fixtures.identify(:blackbeard) %>
3 | target_id: <%= Fixtures.identify(:redbeard) %>
4 | weight: 10
5 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/tasks.rake:
--------------------------------------------------------------------------------
1 | # desc "Explaining what the task does"
2 | # task :<%= file_name %> do
3 | # # Task goes here
4 | # end
5 |
--------------------------------------------------------------------------------
/spec/fixtures/users.yml:
--------------------------------------------------------------------------------
1 | jeremy:
2 | id: 1
3 | login: jeremy
4 | email: hai@ohai.com
5 | admin: 0
6 |
7 | admin:
8 | id: 2
9 | login: admin
10 | email: hai@ohai.com
11 | admin: 1
12 |
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_textiled/init.rb:
--------------------------------------------------------------------------------
1 | begin
2 | require 'RedCloth'
3 | rescue LoadError
4 | nil
5 | end
6 |
7 | require 'acts_as_textiled'
8 | ActiveRecord::Base.send(:include, Err::Acts::Textiled)
9 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/bin/spec:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../lib"))
3 | require 'spec'
4 | exit ::Spec::Runner::CommandLine.run(rspec_options)
5 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/pure/spec_helper.rb:
--------------------------------------------------------------------------------
1 | lib_path = File.expand_path("#{File.dirname(__FILE__)}/../../lib")
2 | $LOAD_PATH.unshift lib_path unless $LOAD_PATH.include?(lib_path)
3 | require 'spec'
4 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/failing_examples/spec_helper.rb:
--------------------------------------------------------------------------------
1 | lib_path = File.expand_path("#{File.dirname(__FILE__)}/../lib")
2 | $LOAD_PATH.unshift lib_path unless $LOAD_PATH.include?(lib_path)
3 | require "spec"
4 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/interop/test/unit/testresult.rb:
--------------------------------------------------------------------------------
1 | class Test::Unit::TestResult
2 | alias_method :tu_passed?, :passed?
3 | def passed?
4 | return tu_passed? & ::Spec.run
5 | end
6 | end
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/center.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/center.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/indent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/indent.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/italic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/italic.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/justify.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/justify.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/outdent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/outdent.png
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/potential_conflicts.erb:
--------------------------------------------------------------------------------
1 | First: <%= @name %>
2 | <%= render :partial => "person", :locals => { :name => "Stephan" } -%>
3 | Fourth: <%= @name %>
4 | Fifth: <%= name %>
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/authors.yml:
--------------------------------------------------------------------------------
1 | david:
2 | id: 1
3 | name: David
4 | author_address_id: 1
5 | author_address_extra_id: 2
6 |
7 | mary:
8 | id: 2
9 | name: Mary
10 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/price_estimates.yml:
--------------------------------------------------------------------------------
1 | saphire_1:
2 | price: 10
3 | estimate_of: sapphire (Treasure)
4 |
5 | sapphire_2:
6 | price: 20
7 | estimate_of: sapphire (Treasure)
8 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/oracle2.sql:
--------------------------------------------------------------------------------
1 | create table courses (
2 | id int not null primary key,
3 | name varchar(255) not null
4 | );
5 |
6 | create sequence courses_seq minvalue 10000;
7 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/dependencies/mutual_one.rb:
--------------------------------------------------------------------------------
1 | $mutual_dependencies_count += 1
2 | require_dependency 'mutual_two'
3 | require_dependency 'mutual_two.rb'
4 | require_dependency 'mutual_two'
5 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/dependencies/mutual_two.rb:
--------------------------------------------------------------------------------
1 | $mutual_dependencies_count += 1
2 | require_dependency 'mutual_one.rb'
3 | require_dependency 'mutual_one'
4 | require_dependency 'mutual_one.rb'
5 |
--------------------------------------------------------------------------------
/doc/README_FOR_APP:
--------------------------------------------------------------------------------
1 | Use this README file to introduce your application and point to useful places in the API for learning more.
2 | Run "rake doc:app" to generate API documentation for your models and controllers.
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/lib/spec/rails/extensions/object.rb:
--------------------------------------------------------------------------------
1 | class Object # :nodoc:
2 | def self.path2class(klassname)
3 | klassname.split('::').inject(Object) { |k,n| k.const_get n }
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec/rails/sample_spec.rb:
--------------------------------------------------------------------------------
1 | require File.dirname(__FILE__) + '/../spec_helper'
2 |
3 | describe "A sample spec" do
4 | it "should pass" do
5 | true.should === true
6 | end
7 | end
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/background.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/blockquote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/blockquote.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/paragraph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/paragraph.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/underline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/underline.png
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.2/tmail.rb:
--------------------------------------------------------------------------------
1 | require 'tmail/version'
2 | require 'tmail/mail'
3 | require 'tmail/mailbox'
4 | require 'tmail/core_extensions'
5 | require 'tmail/net'
6 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/reply.rb:
--------------------------------------------------------------------------------
1 | class Reply < ActiveRecord::Base
2 | belongs_to :topic, :include => [:replies]
3 | belongs_to :developer
4 |
5 | validates_presence_of :content
6 | end
7 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/clubs.yml:
--------------------------------------------------------------------------------
1 | boring_club:
2 | name: Banana appreciation society
3 | moustache_club:
4 | name: Moustache and Eyebrow Fancier Club
5 | crazy_club:
6 | name: Skull and bones
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb:
--------------------------------------------------------------------------------
1 | class IRaiseOnDown < ActiveRecord::Migration
2 | def self.up
3 | end
4 |
5 | def self.down
6 | raise
7 | end
8 | end
--------------------------------------------------------------------------------
/vendor/rails/railties/html/javascripts/application.js:
--------------------------------------------------------------------------------
1 | // Place your application-specific JavaScript functions and classes here
2 | // This file is automatically included by javascript_include_tag :defaults
3 |
--------------------------------------------------------------------------------
/app/views/pages/search.html.erb:
--------------------------------------------------------------------------------
1 | Search results
2 |
3 |
4 |
5 | <% for page in @pages %>
6 | - <%= link_to page.title, page %>
7 | <% end %>
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/script/spec:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../vendor/plugins/rspec/lib"))
3 | require 'spec'
4 | exit ::Spec::Runner::CommandLine.run(ARGV, STDERR, STDOUT)
5 |
--------------------------------------------------------------------------------
/vendor/plugins/open_id_authentication/lib/open_id_authentication/nonce.rb:
--------------------------------------------------------------------------------
1 | module OpenIdAuthentication
2 | class Nonce < ActiveRecord::Base
3 | set_table_name :open_id_authentication_nonces
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/plugins/restful_authentication/generators/authenticated/templates/activation.rhtml:
--------------------------------------------------------------------------------
1 | <%%= @<%= file_name %>.login %>, your account has been activated. You may now start adding your plugins:
2 |
3 | <%%= @url %>
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/generators/rspec/templates/stories_helper.rb:
--------------------------------------------------------------------------------
1 | ENV["RAILS_ENV"] = "test"
2 | require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
3 | require 'spec/rails/story_adapter'
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/steps.rb:
--------------------------------------------------------------------------------
1 | steps_for :life do
2 | Then "the grid should look like" do |dots|
3 | @game.grid.should == Grid.from_string(dots)
4 | end
5 | end
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/list_bullets.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/list_bullets.png
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/list_numbers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/list_numbers.png
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml:
--------------------------------------------------------------------------------
1 | sub_special_3:
2 | id: 102
3 | name: A special category in an arbitrarily named subsubdir file
4 | type: SpecialCategory
5 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/item.rb:
--------------------------------------------------------------------------------
1 | class AbstractItem < ActiveRecord::Base
2 | self.abstract_class = true
3 | has_one :tagging, :as => :taggable
4 | end
5 |
6 | class Item < AbstractItem
7 | end
8 |
--------------------------------------------------------------------------------
/vendor/rails/activeresource/test/fixtures/street_address.rb:
--------------------------------------------------------------------------------
1 | class StreetAddress < ActiveResource::Base
2 | self.site = "http://37s.sunrise.i:3000/people/:person_id/"
3 | self.element_name = 'address'
4 | end
5 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/core_ext/float.rb:
--------------------------------------------------------------------------------
1 | require 'active_support/core_ext/float/rounding'
2 |
3 | class Float #:nodoc:
4 | include ActiveSupport::CoreExtensions::Float::Rounding
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/dependencies/raises_exception.rb:
--------------------------------------------------------------------------------
1 | $raises_exception_load_count += 1
2 | raise Exception, 'Loading me failed, so do not add to loaded or history.'
3 | $raises_exception_load_count += 1
4 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/commands/update.rb:
--------------------------------------------------------------------------------
1 | require "#{RAILS_ROOT}/config/environment"
2 | require 'rails_generator'
3 | require 'rails_generator/scripts/update'
4 | Rails::Generator::Scripts::Update.new.run(ARGV)
5 |
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_indexed/test/fixtures/post.rb:
--------------------------------------------------------------------------------
1 | class Post < ActiveRecord::Base
2 | acts_as_indexed :fields => [:title, :body], :self_test => true
3 |
4 | validates_presence_of :title, :body
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/stories/all.rb:
--------------------------------------------------------------------------------
1 | require File.join(File.dirname(__FILE__), *%w[helper])
2 |
3 | ["example_groups","interop"].each do |dir|
4 | require File.join(File.dirname(__FILE__), "#{dir}/stories")
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/assets/images/textile-editor/strikethrough.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/queso/signal-wiki/HEAD/vendor/plugins/textile_editor_helper/assets/images/textile-editor/strikethrough.png
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.2/tmail/main.rb:
--------------------------------------------------------------------------------
1 | #:stopdoc:
2 | require 'tmail/version'
3 | require 'tmail/mail'
4 | require 'tmail/mailbox'
5 | require 'tmail/core_extensions'
6 | #:startdoc:
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/funny_jokes.yml:
--------------------------------------------------------------------------------
1 | a_joke:
2 | id: 1
3 | name: Knock knock
4 |
5 | another_joke:
6 | id: 2
7 | name: |
8 | The \n Aristocrats
9 | Ate the candy
10 |
11 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/sponsor.rb:
--------------------------------------------------------------------------------
1 | class Sponsor < ActiveRecord::Base
2 | belongs_to :sponsor_club, :class_name => "Club", :foreign_key => "club_id"
3 | belongs_to :sponsorable, :polymorphic => true
4 | end
--------------------------------------------------------------------------------
/spec/fixtures/flags.yml:
--------------------------------------------------------------------------------
1 | one:
2 | flaggable_type: ReplaceMe # replace with your content model name
3 | flaggable_id: 1
4 | user_id: 1
5 |
6 | two:
7 | flaggable_type: ReplaceMe
8 | flaggable_id: 2
9 | user_id: 2
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_versioned/test/fixtures/landmark_versions.yml:
--------------------------------------------------------------------------------
1 | washington:
2 | id: 1
3 | landmark_id: 1
4 | version: 1
5 | name: Washington, D.C.
6 | latitude: 38.895
7 | longitude: -77.036667
8 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec/rails_suite.rb:
--------------------------------------------------------------------------------
1 | dir = File.dirname(__FILE__)
2 | Dir["#{dir}/**/*_example.rb"].each do |file|
3 | require file
4 | end
5 | Dir["#{dir}/**/*_spec.rb"].each do |file|
6 | require file
7 | end
8 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/stories.rb:
--------------------------------------------------------------------------------
1 | require File.join(File.dirname(__FILE__), *%w[helper])
2 | require 'behaviour/stories/create_a_cell'
3 | require 'behaviour/stories/kill_a_cell'
4 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/story/extensions/string.rb:
--------------------------------------------------------------------------------
1 | class String
2 | def step_name
3 | self
4 | end
5 |
6 | def arg_regexp
7 | ::Spec::Story::Step::PARAM_OR_GROUP_PATTERN
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/rspec_suite.rb:
--------------------------------------------------------------------------------
1 | if __FILE__ == $0
2 | dir = File.dirname(__FILE__)
3 | Dir["#{dir}/**/*_spec.rb"].reverse.each do |file|
4 | # puts "require '#{file}'"
5 | require file
6 | end
7 | end
8 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.erb:
--------------------------------------------------------------------------------
1 | Hello there,
2 |
3 | Mr. <%= @recipient %>. Please see our greeting at <%= @welcome_url %> <%= welcome_url %>
4 |
5 | <%= image_tag "somelogo.png" %>
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/categories_ordered.yml:
--------------------------------------------------------------------------------
1 | --- !!omap
2 | <% 100.times do |i| %>
3 | - fixture_no_<%= i %>:
4 | id: <%= i %>
5 | name: <%= "Category #{i}" %>
6 | type: Category
7 | <% end %>
8 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/core_ext.rb:
--------------------------------------------------------------------------------
1 | Dir[File.dirname(__FILE__) + "/core_ext/*.rb"].sort.each do |path|
2 | filename = File.basename(path)
3 | require "active_support/core_ext/#{filename}"
4 | end
5 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails/version.rb:
--------------------------------------------------------------------------------
1 | module Rails
2 | module VERSION #:nodoc:
3 | MAJOR = 2
4 | MINOR = 0
5 | TINY = 2
6 |
7 | STRING = [MAJOR, MINOR, TINY].join('.')
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/app/views/attachments/show.html.erb:
--------------------------------------------------------------------------------
1 | <%= render :partial => @attachment %>
2 |
3 |
4 | <%= link_to "Delete this attachment", attachment_url(@attachment), :method => :delete %>
5 | <%= link_to 'Back', attachments_path %>
6 |
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_indexed/test/schema.rb:
--------------------------------------------------------------------------------
1 | ActiveRecord::Schema.define :version => 0 do
2 | create_table :posts, :force => true do |t|
3 | t.column :title, :string
4 | t.column :body, :text
5 | end
6 | end
7 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/treasures.yml:
--------------------------------------------------------------------------------
1 | diamond:
2 | name: $LABEL
3 |
4 | sapphire:
5 | name: $LABEL
6 | looter: redbeard (Pirate)
7 |
8 | ruby:
9 | name: $LABEL
10 | looter: louis (Parrot)
11 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/schema/firebird2.sql:
--------------------------------------------------------------------------------
1 | CREATE TABLE courses (
2 | id BIGINT NOT NULL PRIMARY KEY,
3 | name VARCHAR(255) NOT NULL
4 | );
5 | CREATE GENERATOR courses_seq;
6 | SET GENERATOR courses_seq TO 10000;
7 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/helpers/more_explicit_helper.rb:
--------------------------------------------------------------------------------
1 | module MoreExplicitHelper
2 | def method_in_more_explicit_helper
3 | "This is text from a method in the MoreExplicitHelper
"
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/template_with_partial_using_collection.rhtml:
--------------------------------------------------------------------------------
1 | <%= render :partial => 'partial',
2 | :collection => ['Alice', 'Bob'],
3 | :spacer_template => 'spacer' %>
4 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/rake_tasks/examples.rake:
--------------------------------------------------------------------------------
1 | require 'rake'
2 | require 'spec/rake/spectask'
3 |
4 | desc "Run all examples"
5 | Spec::Rake::SpecTask.new('examples') do |t|
6 | t.spec_files = FileList['examples/**/*.rb']
7 | end
8 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/book.rb:
--------------------------------------------------------------------------------
1 | class Book < ActiveRecord::Base
2 | has_many :citations, :foreign_key => 'book1_id'
3 | has_many :references, :through => :citations, :source => :reference_of, :uniq => true
4 | end
5 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/core_ext/cgi.rb:
--------------------------------------------------------------------------------
1 | require 'active_support/core_ext/cgi/escape_skipping_slashes'
2 |
3 | class CGI #:nodoc:
4 | extend ActiveSupport::CoreExtensions::CGI::EscapeSkippingSlashes
5 | end
6 |
--------------------------------------------------------------------------------
/app/views/pages/show.html.erb:
--------------------------------------------------------------------------------
1 | <%= render :partial => "page", :locals => {:page => @version} %>
2 |
3 |
4 | <% content_for :right do -%>
5 | <%= render :partial => "right", :locals => {:page => @page, :version => @version}%>
6 | <% end -%>
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/stories/helper.rb:
--------------------------------------------------------------------------------
1 | dir = File.dirname(__FILE__)
2 | $LOAD_PATH.unshift File.expand_path("#{dir}/../lib")
3 | require File.expand_path("#{dir}/../../../../spec/spec_helper")
4 |
5 | require 'spec/rails/story_adapter'
--------------------------------------------------------------------------------
/vendor/plugins/rspec/UPGRADE:
--------------------------------------------------------------------------------
1 | == Spec::Rails
2 |
3 | script/generate rspec
4 |
5 | Or modify spec_helper.rb based on the template, which can be found at:
6 |
7 | vendor/plugins/rspec_on_rails/generators/rspec/templates/spec_helper.rb
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/lib/action_mailer/version.rb:
--------------------------------------------------------------------------------
1 | module ActionMailer
2 | module VERSION #:nodoc:
3 | MAJOR = 2
4 | MINOR = 0
5 | TINY = 2
6 |
7 | STRING = [MAJOR, MINOR, TINY].join('.')
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/lib/active_record/version.rb:
--------------------------------------------------------------------------------
1 | module ActiveRecord
2 | module VERSION #:nodoc:
3 | MAJOR = 2
4 | MINOR = 0
5 | TINY = 2
6 |
7 | STRING = [MAJOR, MINOR, TINY].join('.')
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/treasure.rb:
--------------------------------------------------------------------------------
1 | class Treasure < ActiveRecord::Base
2 | has_and_belongs_to_many :parrots
3 | belongs_to :looter, :polymorphic => true
4 |
5 | has_many :price_estimates, :as => :estimate_of
6 | end
7 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/core_ext/base64.rb:
--------------------------------------------------------------------------------
1 | require 'active_support/base64'
2 | require 'active_support/core_ext/base64/encoding'
3 |
4 | ActiveSupport::Base64.extend ActiveSupport::CoreExtensions::Base64::Encoding
5 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/commands/performance/request.rb:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | require 'config/environment'
3 | require 'application'
4 | require 'action_controller/request_profiler'
5 |
6 | ActionController::RequestProfiler.run(ARGV)
7 |
--------------------------------------------------------------------------------
/db/migrate/005_add_versions_to_pages.rb:
--------------------------------------------------------------------------------
1 | class AddVersionsToPages < ActiveRecord::Migration
2 | def self.up
3 | Page.create_versioned_table
4 | end
5 |
6 | def self.down
7 | Page.drop_versioned_table
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/spec/fixtures/page_versions.yml:
--------------------------------------------------------------------------------
1 | one_old:
2 | id: 1
3 | title: hai
4 | permalink: hai
5 | body: there, i fixed ur ram
6 | site_id: 1
7 | version: 1
8 | created_at: <%= 1.day.ago.to_s :db %>
9 | page_id: <%= Fixtures.identify :one %>
--------------------------------------------------------------------------------
/spec/fixtures/sites.yml:
--------------------------------------------------------------------------------
1 | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2 | first:
3 | id: 1
4 | title: RoR
5 | require_login_to_post: 1
6 | created_at: 2008-03-15 10:28:00
7 | updated_at: 2008-03-15 10:28:00
8 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/stories/steps/people.rb:
--------------------------------------------------------------------------------
1 | steps_for :people do
2 | When "I add a Person" do
3 | Person.create!(:name => "Foo")
4 | end
5 | Then "there should be one person" do
6 | Person.count.should == 1
7 | end
8 | end
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/example/errors.rb:
--------------------------------------------------------------------------------
1 | module Spec
2 | module Example
3 | class ExamplePendingError < StandardError
4 | end
5 |
6 | class PendingExampleFixedError < StandardError
7 | end
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/story/extensions/regexp.rb:
--------------------------------------------------------------------------------
1 | class Regexp
2 | def step_name
3 | self.source.gsub '\\$', '$$'
4 | end
5 |
6 | def arg_regexp
7 | ::Spec::Story::Step::PARAM_OR_GROUP_PATTERN
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/runner/output_one_time_fixture.rb:
--------------------------------------------------------------------------------
1 | require File.dirname(__FILE__) + '/../../spec_helper.rb'
2 |
3 | describe "Running an Example" do
4 | it "should not output twice" do
5 | true.should be_true
6 | end
7 | end
--------------------------------------------------------------------------------
/vendor/rails/actionpack/lib/action_pack/version.rb:
--------------------------------------------------------------------------------
1 | module ActionPack #:nodoc:
2 | module VERSION #:nodoc:
3 | MAJOR = 2
4 | MINOR = 0
5 | TINY = 2
6 |
7 | STRING = [MAJOR, MINOR, TINY].join('.')
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/version.rb:
--------------------------------------------------------------------------------
1 | module ActiveSupport
2 | module VERSION #:nodoc:
3 | MAJOR = 2
4 | MINOR = 0
5 | TINY = 2
6 |
7 | STRING = [MAJOR, MINOR, TINY].join('.')
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/scripts/generate.rb:
--------------------------------------------------------------------------------
1 | require File.dirname(__FILE__) + '/../scripts'
2 |
3 | module Rails::Generator::Scripts
4 | class Generate < Base
5 | mandatory_options :command => :create
6 | end
7 | end
8 |
--------------------------------------------------------------------------------
/app/views/users/_user.html.erb:
--------------------------------------------------------------------------------
1 | <%= image_tag(gravatar_url(user.email), :class => "gravatar") if user.email %>
2 | <%= link_to_unless_current author(user), user_path(user) %><%= " has created/edited " + user.pages.count.to_s + " wiki pages." %>
3 |
--------------------------------------------------------------------------------
/db/migrate/009_add_admin_to_users.rb:
--------------------------------------------------------------------------------
1 | class AddAdminToUsers < ActiveRecord::Migration
2 | def self.up
3 | add_column :users, :admin, :boolean
4 | end
5 |
6 | def self.down
7 | remove_column :users, :admin
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/stories/game-of-life/.loadpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/failing_examples/failure_in_setup.rb:
--------------------------------------------------------------------------------
1 | describe "This example" do
2 |
3 | before(:each) do
4 | NonExistentClass.new
5 | end
6 |
7 | it "should be listed as failing in setup" do
8 | end
9 |
10 | end
11 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/mocks/errors.rb:
--------------------------------------------------------------------------------
1 | module Spec
2 | module Mocks
3 | class MockExpectationError < StandardError
4 | end
5 |
6 | class AmbiguousReturnError < StandardError
7 | end
8 | end
9 | end
10 |
11 |
--------------------------------------------------------------------------------
/vendor/rails/activeresource/lib/active_resource/version.rb:
--------------------------------------------------------------------------------
1 | module ActiveResource
2 | module VERSION #:nodoc:
3 | MAJOR = 2
4 | MINOR = 0
5 | TINY = 2
6 |
7 | STRING = [MAJOR, MINOR, TINY].join('.')
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/app/views/pages/index.html.erb:
--------------------------------------------------------------------------------
1 | Search results
2 |
3 |
4 |
5 | <% for page in @pages %>
6 | - <%= link_to page.title, page %>
7 | <% end %>
8 |
9 |
10 |
11 |
12 | <%= link_to 'New page', new_page_path %>
13 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/failing_examples/failure_in_teardown.rb:
--------------------------------------------------------------------------------
1 | describe "This example" do
2 |
3 | it "should be listed as failing in teardown" do
4 | end
5 |
6 | after(:each) do
7 | NonExistentClass.new
8 | end
9 |
10 | end
11 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/autotest_helper.rb:
--------------------------------------------------------------------------------
1 | require "rubygems"
2 | require 'autotest'
3 | dir = File.dirname(__FILE__)
4 | require "#{dir}/spec_helper"
5 | require File.expand_path("#{dir}/../lib/autotest/rspec")
6 | require "#{dir}/autotest_matchers"
7 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/lib/action_mailer/utils.rb:
--------------------------------------------------------------------------------
1 | module ActionMailer
2 | module Utils #:nodoc:
3 | def normalize_new_lines(text)
4 | text.to_s.gsub(/\r\n?/, "\n")
5 | end
6 | module_function :normalize_new_lines
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/controller/fake_models.rb:
--------------------------------------------------------------------------------
1 | class Customer < Struct.new(:name, :id)
2 | def to_param
3 | id.to_s
4 | end
5 | end
6 |
7 | class BadCustomer < Customer
8 | end
9 |
10 | class GoodCustomer < Customer
11 | end
12 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb:
--------------------------------------------------------------------------------
1 | class <%= class_name %>Controller < ApplicationController
2 | <% for action in actions -%>
3 | def <%= action %>
4 | end
5 |
6 | <% end -%>
7 | end
8 |
--------------------------------------------------------------------------------
/db/migrate/003_add_private_to_pages.rb:
--------------------------------------------------------------------------------
1 | class AddPrivateToPages < ActiveRecord::Migration
2 | def self.up
3 | add_column :pages, :private_page, :boolean
4 | end
5 |
6 | def self.down
7 | remove_column :pages, :private
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_indexed/test/database.yml:
--------------------------------------------------------------------------------
1 | mysql:
2 | :adapter: mysql
3 | :host: localhost
4 | :username: root
5 | :password:
6 | :database: rails_plugin_test
7 |
8 | sqlite3:
9 | :adapter: sqlite3
10 | :database: ':memory:'
11 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/stories/resources/spec/simple_spec.rb:
--------------------------------------------------------------------------------
1 | $:.push File.join(File.dirname(__FILE__), *%w[.. .. .. lib])
2 | require 'spec'
3 |
4 | describe "Running an Example" do
5 | it "should not output twice" do
6 | true.should be_true
7 | end
8 | end
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/hello_xml_world.builder:
--------------------------------------------------------------------------------
1 | xml.html do
2 | xml.head do
3 | xml.title "Hello World"
4 | end
5 |
6 | xml.body do
7 | xml.p "abes"
8 | xml.p "monks"
9 | xml.p "wiseguys"
10 | end
11 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/pets.yml:
--------------------------------------------------------------------------------
1 | parrot:
2 | pet_id: 1
3 | name: parrot
4 | owner_id: 1
5 |
6 | chew:
7 | pet_id: 2
8 | name: chew
9 | owner_id: 2
10 |
11 | mochi:
12 | pet_id: 3
13 | name: mochi
14 | owner_id: 2
15 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/reserved_words/group.yml:
--------------------------------------------------------------------------------
1 | group1:
2 | id: 1
3 | select_id: 1
4 | order: x
5 |
6 | group2:
7 | id: 2
8 | select_id: 2
9 | order: y
10 |
11 | group3:
12 | id: 3
13 | select_id: 2
14 | order: z
15 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/membership.rb:
--------------------------------------------------------------------------------
1 | class Membership < ActiveRecord::Base
2 | belongs_to :member
3 | belongs_to :club
4 | end
5 |
6 | class CurrentMembership < Membership
7 | belongs_to :member
8 | belongs_to :club
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/core_ext/pathname.rb:
--------------------------------------------------------------------------------
1 | require 'pathname'
2 | require 'active_support/core_ext/pathname/clean_within'
3 |
4 | class Pathname#:nodoc:
5 | extend ActiveSupport::CoreExtensions::Pathname::CleanWithin
6 | end
7 |
8 |
--------------------------------------------------------------------------------
/vendor/rails/railties/doc/README_FOR_APP:
--------------------------------------------------------------------------------
1 | Use this README file to introduce your application and point to useful places in the API for learning more.
2 | Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
3 |
--------------------------------------------------------------------------------
/vendor/rails/railties/html/robots.txt:
--------------------------------------------------------------------------------
1 | # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2 | #
3 | # To ban all spiders from the entire site uncomment the next two lines:
4 | # User-Agent: *
5 | # Disallow: /
6 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/USAGE:
--------------------------------------------------------------------------------
1 | Description:
2 | Explain the generator
3 |
4 | Example:
5 | ./script/generate <%= file_name %> Thing
6 |
7 | This will create:
8 | what/will/it/create
9 |
--------------------------------------------------------------------------------
/db/migrate/013_add_locking_to_pages.rb:
--------------------------------------------------------------------------------
1 | class AddLockingToPages < ActiveRecord::Migration
2 | def self.up
3 | add_column :pages, :locked_at, :datetime
4 | end
5 |
6 | def self.down
7 | remove_column :pages, :locked_at
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/plugins/can_flag/generators/can_flag/templates/fixtures.yml:
--------------------------------------------------------------------------------
1 | one:
2 | flaggable_type: ReplaceMe # replace with your content model name
3 | flaggable_id: 1
4 | user_id: 1
5 |
6 | two:
7 | flaggable_type: ReplaceMe
8 | flaggable_id: 2
9 | user_id: 2
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/pure/legacy_spec.rb:
--------------------------------------------------------------------------------
1 | require File.dirname(__FILE__) + '/spec_helper'
2 | context "A legacy spec" do
3 | setup do
4 | end
5 |
6 | specify "should work fine" do
7 | end
8 |
9 | teardown do
10 | end
11 | end
12 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/failing_examples/timeout_behaviour.rb:
--------------------------------------------------------------------------------
1 | require File.dirname(__FILE__) + '/spec_helper'
2 |
3 | describe "Something really slow" do
4 | it "should be failed by RSpec when it takes longer than --timeout" do
5 | sleep(2)
6 | end
7 | end
8 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal.rb:
--------------------------------------------------------------------------------
1 | require 'bigdecimal'
2 | require 'active_support/core_ext/bigdecimal/conversions'
3 |
4 | class BigDecimal#:nodoc:
5 | include ActiveSupport::CoreExtensions::BigDecimal::Conversions
6 | end
7 |
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_textiled/about.yml:
--------------------------------------------------------------------------------
1 | author: Chris Wanstrath (chris[at]ozmm[dot]org)
2 | summary:
3 | homepage: http://errtheblog.com/post/14
4 | plugin: http://require.errtheblog.com/svn/acts_as_textiled
5 | license: MIT
6 | version: 0.3
7 | rails_version: 1.1+
8 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/test/enum_rjs_test.rjs:
--------------------------------------------------------------------------------
1 | page.select('.product').each do |value|
2 | page.visual_effect :highlight
3 | page.visual_effect :highlight, value
4 | page.sortable(value, :url => { :action => "order" })
5 | page.draggable(value)
6 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/tasks.yml:
--------------------------------------------------------------------------------
1 | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2 | first_task:
3 | id: 1
4 | starting: 2005-03-30t06:30:00.00+01:00
5 | ending: 2005-03-30t08:30:00.00+01:00
6 | another_task:
7 | id: 2
8 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | log/*.log
2 | log/*.pid
3 | coverage
4 | config/database.yml
5 | tmp/**/*
6 | .DS_Store
7 | doc/api
8 | doc/app
9 | db/*.db
10 | db/*.sqlite3
11 | index/*
12 | public/javascripts/signal.js
13 | public/stylesheets/signal.css
14 | .project
15 | .loadpath
16 |
--------------------------------------------------------------------------------
/db/migrate/007_add_identity_url_to_users.rb:
--------------------------------------------------------------------------------
1 | class AddIdentityUrlToUsers < ActiveRecord::Migration
2 | def self.up
3 | add_column :users, :identity_url, :string
4 | end
5 |
6 | def self.down
7 | remove_column :users, :identity_url
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_textiled/test/fixtures/authors.yml:
--------------------------------------------------------------------------------
1 | why:
2 | id: 1
3 | name: why the lucky stiff
4 | blog: '"RedHanded":http://redhanded.hobix.com'
5 | defunkt:
6 | id: 2
7 | name: Chris Wanstrath
8 | blog: '"ones zeros majors and minors":http://ozmm.org'
9 |
--------------------------------------------------------------------------------
/vendor/plugins/annotate_models/tasks/annotate_models_tasks.rake:
--------------------------------------------------------------------------------
1 | desc "Add schema information (as comments) to model files"
2 |
3 | task :annotate_models do
4 | require File.join(File.dirname(__FILE__), "../lib/annotate_models.rb")
5 | AnnotateModels.do_annotations
6 | end
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/template_with_partial.rhtml:
--------------------------------------------------------------------------------
1 | <%= method_in_template_with_partial %>
2 | <%= render :partial => 'partial' %>
3 |
4 | <%= render :partial => 'partial_used_twice' %>
5 | <%= render :partial => 'partial_used_twice' %>
6 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/entrants.yml:
--------------------------------------------------------------------------------
1 | first:
2 | id: 1
3 | course_id: 1
4 | name: Ruby Developer
5 |
6 | second:
7 | id: 2
8 | course_id: 1
9 | name: Ruby Guru
10 |
11 | third:
12 | id: 3
13 | course_id: 2
14 | name: Java Lover
15 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/order.rb:
--------------------------------------------------------------------------------
1 | class Order < ActiveRecord::Base
2 | belongs_to :billing, :class_name => 'Customer', :foreign_key => 'billing_customer_id'
3 | belongs_to :shipping, :class_name => 'Customer', :foreign_key => 'shipping_customer_id'
4 | end
5 |
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_versioned/test/fixtures/widget.rb:
--------------------------------------------------------------------------------
1 | class Widget < ActiveRecord::Base
2 | acts_as_versioned :sequence_name => 'widgets_seq', :association_options => {
3 | :dependent => :nullify, :order => 'version desc'
4 | }
5 | non_versioned_columns << 'foo'
6 | end
--------------------------------------------------------------------------------
/vendor/plugins/rspec/stories/interop/stories.rb:
--------------------------------------------------------------------------------
1 | require File.join(File.dirname(__FILE__), *%w[.. helper])
2 |
3 | with_steps_for :running_rspec do
4 | Dir["#{File.dirname(__FILE__)}/*"].each do |file|
5 | run file if File.file?(file) && !(file =~ /\.rb$/)
6 | end
7 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/tag.rb:
--------------------------------------------------------------------------------
1 | class Tag < ActiveRecord::Base
2 | has_many :taggings
3 | has_many :taggables, :through => :taggings
4 | has_one :tagging
5 |
6 | has_many :tagged_posts, :through => :taggings, :source => :taggable, :source_type => 'Post'
7 | end
--------------------------------------------------------------------------------
/vendor/rails/railties/configs/initializers/mime_types.rb:
--------------------------------------------------------------------------------
1 | # Be sure to restart your server when you modify this file.
2 |
3 | # Add new mime types for use in respond_to blocks:
4 | # Mime::Type.register "text/richtext", :rtf
5 | # Mime::Type.register_alias "text/html", :iphone
6 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/commands/destroy.rb:
--------------------------------------------------------------------------------
1 | require "#{RAILS_ROOT}/config/environment"
2 | require 'rails_generator'
3 | require 'rails_generator/scripts/destroy'
4 |
5 | ARGV.shift if ['--help', '-h'].include?(ARGV[0])
6 | Rails::Generator::Scripts::Destroy.new.run(ARGV)
7 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/commands/generate.rb:
--------------------------------------------------------------------------------
1 | require "#{RAILS_ROOT}/config/environment"
2 | require 'rails_generator'
3 | require 'rails_generator/scripts/generate'
4 |
5 | ARGV.shift if ['--help', '-h'].include?(ARGV[0])
6 | Rails::Generator::Scripts::Generate.new.run(ARGV)
7 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb:
--------------------------------------------------------------------------------
1 | require 'test_helper'
2 |
3 | class <%= class_name %>Test < ActiveSupport::TestCase
4 | # Replace this with your real tests.
5 | def test_truth
6 | assert true
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb:
--------------------------------------------------------------------------------
1 | require 'test/unit'
2 |
3 | class <%= class_name %>Test < Test::Unit::TestCase
4 | # Replace this with your real tests.
5 | def test_this_plugin
6 | flunk
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/app/views/pages/diff.html.erb:
--------------------------------------------------------------------------------
1 | Comparing
2 | version <%= @v1.version %>
3 | and
4 | version <%= @v2.version %>
5 |
6 | <%= @diff %>
7 |
--------------------------------------------------------------------------------
/vendor/plugins/cacheable_flash/CHANGES:
--------------------------------------------------------------------------------
1 | 0.1.3
2 | - Require json in init.rb
3 |
4 | 0.1.2
5 | - Flash on the Rails side is cleared when written to the cookie
6 | - Uses existing cookie flash value
7 | - Using Scriptaculous cookie.js library
8 |
9 | 0.1.1
10 | - Added cookies.js
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/pure/io_processor.rb:
--------------------------------------------------------------------------------
1 | class DataTooShort < StandardError; end
2 |
3 | class IoProcessor
4 | # Does some fancy stuff unless the length of +io+ is shorter than 32
5 | def process(io)
6 | raise DataTooShort if io.read.length < 32
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/stories/adder.rb:
--------------------------------------------------------------------------------
1 | class Adder
2 | def initialize
3 | @addends = []
4 | end
5 |
6 | def <<(val)
7 | @addends << val
8 | end
9 |
10 | def sum
11 | @addends.inject(0) { |sum_so_far, val| sum_so_far + val }
12 | end
13 | end
--------------------------------------------------------------------------------
/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/version.rb:
--------------------------------------------------------------------------------
1 | module HTML #:nodoc:
2 | module Version #:nodoc:
3 |
4 | MAJOR = 0
5 | MINOR = 5
6 | TINY = 3
7 |
8 | STRING = [ MAJOR, MINOR, TINY ].join(".")
9 |
10 | end
11 | end
12 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/config.rb:
--------------------------------------------------------------------------------
1 | TEST_ROOT = File.expand_path(File.dirname(__FILE__))
2 | ASSETS_ROOT = TEST_ROOT + "/assets"
3 | FIXTURES_ROOT = TEST_ROOT + "/fixtures"
4 | MIGRATIONS_ROOT = TEST_ROOT + "/migrations"
5 | SCHEMA_ROOT = TEST_ROOT + "/schema"
6 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/pirates.yml:
--------------------------------------------------------------------------------
1 | blackbeard:
2 | catchphrase: "Yar."
3 | parrot: george
4 |
5 | redbeard:
6 | catchphrase: "Avast!"
7 | parrot: louis
8 | created_on: <%= 2.weeks.ago.to_s(:db) %>
9 | updated_on: <%= 2.weeks.ago.to_s(:db) %>
10 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:
--------------------------------------------------------------------------------
1 | require 'benchmark'
2 |
3 | class << Benchmark
4 | remove_method :realtime
5 |
6 | def realtime
7 | r0 = Time.now
8 | yield
9 | r1 = Time.now
10 | r1.to_f - r0.to_f
11 | end
12 | end
13 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/json/encoders/object.rb:
--------------------------------------------------------------------------------
1 | class Object
2 | # Dumps object in JSON (JavaScript Object Notation). See www.json.org for more info.
3 | def to_json(options = {})
4 | ActiveSupport::JSON.encode(instance_values, options)
5 | end
6 | end
7 |
--------------------------------------------------------------------------------
/vendor/plugins/acts_as_versioned/test/fixtures/locked_pages.yml:
--------------------------------------------------------------------------------
1 | welcome:
2 | id: 1
3 | title: Welcome to the weblog
4 | lock_version: 24
5 | type: LockedPage
6 | thinking:
7 | id: 2
8 | title: So I was thinking
9 | lock_version: 24
10 | type: SpecialLockedPage
11 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/reserved_words/distincts_selects.yml:
--------------------------------------------------------------------------------
1 | distincts_selects1:
2 | distinct_id: 1
3 | select_id: 1
4 |
5 | distincts_selects2:
6 | distinct_id: 1
7 | select_id: 2
8 |
9 | distincts_selects3:
10 | distinct_id: 2
11 | select_id: 3
12 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/migrations/missing/1_people_have_last_names.rb:
--------------------------------------------------------------------------------
1 | class PeopleHaveLastNames < ActiveRecord::Migration
2 | def self.up
3 | add_column "people", "last_name", :string
4 | end
5 |
6 | def self.down
7 | remove_column "people", "last_name"
8 | end
9 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/migrations/valid/1_people_have_last_names.rb:
--------------------------------------------------------------------------------
1 | class PeopleHaveLastNames < ActiveRecord::Migration
2 | def self.up
3 | add_column "people", "last_name", :string
4 | end
5 |
6 | def self.down
7 | remove_column "people", "last_name"
8 | end
9 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/pirate.rb:
--------------------------------------------------------------------------------
1 | class Pirate < ActiveRecord::Base
2 | belongs_to :parrot
3 | has_and_belongs_to_many :parrots
4 | has_many :treasures, :as => :looter
5 |
6 | has_many :treasure_estimates, :through => :treasures, :source => :price_estimates
7 | end
8 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/core_ext/object.rb:
--------------------------------------------------------------------------------
1 | require 'active_support/core_ext/object/conversions'
2 | require 'active_support/core_ext/object/extending'
3 | require 'active_support/core_ext/object/instance_variables'
4 | require 'active_support/core_ext/object/misc'
5 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/unit_test.rb:
--------------------------------------------------------------------------------
1 | require 'test_helper'
2 |
3 | class <%= class_name %>ObserverTest < Test::Unit::TestCase
4 | # Replace this with your real tests.
5 | def test_truth
6 | assert true
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/tasks/log.rake:
--------------------------------------------------------------------------------
1 | namespace :log do
2 | desc "Truncates all *.log files in log/ to zero bytes"
3 | task :clear do
4 | FileList["log/*.log"].each do |log_file|
5 | f = File.open(log_file, "w")
6 | f.close
7 | end
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/plugins/cacheable_flash/test/test_suite.rb:
--------------------------------------------------------------------------------
1 | class TestSuite
2 | def run
3 | dir = File.dirname(__FILE__)
4 | Dir["#{dir}/**/*_test.rb"].each do |file|
5 | require file
6 | end
7 | end
8 | end
9 |
10 | if $0 == __FILE__
11 | TestSuite.new.run
12 | end
13 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/pure/dynamic_spec.rb:
--------------------------------------------------------------------------------
1 | require File.dirname(__FILE__) + '/spec_helper'
2 |
3 | describe "Some integers" do
4 | (1..10).each do |n|
5 | it "The root of #{n} square should be #{n}" do
6 | Math.sqrt(n*n).should == n
7 | end
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/rake_tasks/verify_rcov.rake:
--------------------------------------------------------------------------------
1 | require 'rake'
2 | require 'spec/rake/verify_rcov'
3 |
4 | RCov::VerifyTask.new(:verify_rcov => :spec) do |t|
5 | t.threshold = 100.0 # Make sure you have rcov 0.7 or higher!
6 | t.index_html = '../doc/output/coverage/index.html'
7 | end
8 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/multipart/text_file:
--------------------------------------------------------------------------------
1 | --AaB03x
2 | Content-Disposition: form-data; name="foo"
3 |
4 | bar
5 | --AaB03x
6 | Content-Disposition: form-data; name="file"; filename="file.txt"
7 | Content-Type: text/plain
8 |
9 | contents
10 | --AaB03x--
11 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/categories/special_categories.yml:
--------------------------------------------------------------------------------
1 | sub_special_1:
2 | id: 100
3 | name: A special category in a subdir file
4 | type: SpecialCategory
5 |
6 | sub_special_2:
7 | id: 101
8 | name: Another special category
9 | type: SpecialCategory
10 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/migrations/duplicate/1_people_have_last_names.rb:
--------------------------------------------------------------------------------
1 | class PeopleHaveLastNames < ActiveRecord::Migration
2 | def self.up
3 | add_column "people", "last_name", :string
4 | end
5 |
6 | def self.down
7 | remove_column "people", "last_name"
8 | end
9 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/edge.rb:
--------------------------------------------------------------------------------
1 | # This class models an edge in a directed graph.
2 | class Edge < ActiveRecord::Base
3 | belongs_to :source, :class_name => 'Vertex', :foreign_key => 'source_id'
4 | belongs_to :sink, :class_name => 'Vertex', :foreign_key => 'sink_id'
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/testing/default.rb:
--------------------------------------------------------------------------------
1 | module ActiveSupport
2 | module Testing
3 | module Default #:nodoc:
4 | # Placeholder so test/unit ignores test cases without any tests.
5 | def default_test
6 | end
7 | end
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/console_sandbox.rb:
--------------------------------------------------------------------------------
1 | ActiveRecord::Base.send :increment_open_transactions
2 | ActiveRecord::Base.connection.begin_db_transaction
3 | at_exit do
4 | ActiveRecord::Base.connection.rollback_db_transaction
5 | ActiveRecord::Base.send :decrement_open_transactions
6 | end
7 |
--------------------------------------------------------------------------------
/vendor/plugins/attachment_fu/install.rb:
--------------------------------------------------------------------------------
1 | require 'fileutils'
2 |
3 | s3_config = File.dirname(__FILE__) + '/../../../config/amazon_s3.yml'
4 | FileUtils.cp File.dirname(__FILE__) + '/amazon_s3.yml.tpl', s3_config unless File.exist?(s3_config)
5 | puts IO.read(File.join(File.dirname(__FILE__), 'README'))
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec/rails/mocks/ar_classes.rb:
--------------------------------------------------------------------------------
1 | class MockableModel < ActiveRecord::Base
2 | has_one :associated_model
3 | end
4 |
5 | class SubMockableModel < MockableModel
6 | end
7 |
8 | class AssociatedModel < ActiveRecord::Base
9 | belongs_to :mockable_model
10 | end
11 |
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.2/tmail/index.rb:
--------------------------------------------------------------------------------
1 | #:stopdoc:
2 | # This is here for Rolls.
3 | # Rolls uses this instead of lib/tmail.rb.
4 |
5 | require 'tmail/version'
6 | require 'tmail/mail'
7 | require 'tmail/mailbox'
8 | require 'tmail/core_extensions'
9 | #:startdoc:
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/categories.yml:
--------------------------------------------------------------------------------
1 | general:
2 | id: 1
3 | name: General
4 | type: Category
5 |
6 | technology:
7 | id: 2
8 | name: Technology
9 | type: Category
10 |
11 | sti_test:
12 | id: 3
13 | name: Special category
14 | type: SpecialCategory
15 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/person.rb:
--------------------------------------------------------------------------------
1 | class Person < ActiveRecord::Base
2 | has_many :readers
3 | has_many :posts, :through => :readers
4 | has_many :posts_with_no_comments, :through => :readers, :source => :post, :include => :comments, :conditions => 'comments.id is null'
5 | end
6 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/generator.rb:
--------------------------------------------------------------------------------
1 | class <%= class_name %>Generator < Rails::Generator::NamedBase
2 | def manifest
3 | record do |m|
4 | # m.directory "lib"
5 | # m.template 'README', "README"
6 | end
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/vendor/plugins/restful_authentication/generators/authenticated/templates/signup_notification.rhtml:
--------------------------------------------------------------------------------
1 | Your account has been created.
2 |
3 | Username: <%%= @<%= file_name %>.login %>
4 | Password: <%%= @<%= file_name %>.password %>
5 |
6 | Visit this url to activate your account:
7 |
8 | <%%= @url %>
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/generators/rspec/templates/script/spec:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../vendor/plugins/rspec/lib"))
3 | require 'spec'
4 | exit ::Spec::Runner::CommandLine.run(::Spec::Runner::OptionParser.parse(ARGV, STDERR, STDOUT))
5 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/company.rb:
--------------------------------------------------------------------------------
1 | class Company < ActiveRecord::Base
2 | attr_protected :rating
3 | set_sequence_name :companies_nonstd_seq
4 |
5 | validates_presence_of :name
6 | def validate
7 | errors.add('rating', 'rating should not be 2') if rating == 2
8 | end
9 | end
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/developer.rb:
--------------------------------------------------------------------------------
1 | class Developer < ActiveRecord::Base
2 | has_and_belongs_to_many :projects
3 | has_many :replies
4 | has_many :topics, :through => :replies
5 | end
6 |
7 | class DeVeLoPeR < ActiveRecord::Base
8 | set_table_name "developers"
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/migrations/interleaved/pass_2/1_people_have_last_names.rb:
--------------------------------------------------------------------------------
1 | class PeopleHaveLastNames < ActiveRecord::Migration
2 | def self.up
3 | add_column "people", "last_name", :string
4 | end
5 |
6 | def self.down
7 | remove_column "people", "last_name"
8 | end
9 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/migrations/interleaved/pass_3/1_people_have_last_names.rb:
--------------------------------------------------------------------------------
1 | class PeopleHaveLastNames < ActiveRecord::Migration
2 | def self.up
3 | add_column "people", "last_name", :string
4 | end
5 |
6 | def self.down
7 | remove_column "people", "last_name"
8 | end
9 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/migrations/missing/1000_people_have_middle_names.rb:
--------------------------------------------------------------------------------
1 | class PeopleHaveMiddleNames < ActiveRecord::Migration
2 | def self.up
3 | add_column "people", "middle_name", :string
4 | end
5 |
6 | def self.down
7 | remove_column "people", "middle_name"
8 | end
9 | end
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/functional_test.rb:
--------------------------------------------------------------------------------
1 | require 'test_helper'
2 |
3 | class <%= class_name %>ControllerTest < ActionController::TestCase
4 | # Replace this with your real tests.
5 | def test_truth
6 | assert true
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/vendor/plugins/sweeper/generators/sweeper/templates/sweeper.rb:
--------------------------------------------------------------------------------
1 | class <%= class_name %>Sweeper < ActionController::Caching::Sweeper
2 |
3 | observe <%= class_name %>
4 |
5 | <% actions.each do |action| -%>
6 | def <%= action %>(record)
7 |
8 | end
9 |
10 | <% end -%>
11 |
12 | end
13 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/core_ext/class.rb:
--------------------------------------------------------------------------------
1 | require 'active_support/core_ext/class/attribute_accessors'
2 | require 'active_support/core_ext/class/inheritable_attributes'
3 | require 'active_support/core_ext/class/removal'
4 | require 'active_support/core_ext/class/delegating_attributes'
5 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/json/variable.rb:
--------------------------------------------------------------------------------
1 | module ActiveSupport
2 | module JSON
3 | # A string that returns itself as its JSON-encoded form.
4 | class Variable < String
5 | def to_json(options=nil)
6 | self
7 | end
8 | end
9 | end
10 | end
11 |
--------------------------------------------------------------------------------
/spec/models/link_spec.rb:
--------------------------------------------------------------------------------
1 | require File.dirname(__FILE__) + '/../spec_helper'
2 |
3 | describe Link do
4 | before(:each) do
5 | @link = Link.new :from_page_id => 1, :to_page_id => 2
6 | end
7 |
8 | it "should be valid" do
9 | @link.save!
10 | @link.should be_valid
11 | end
12 | end
13 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/everything.rb:
--------------------------------------------------------------------------------
1 | $:.unshift File.join(File.dirname(__FILE__), '..', '..', '..', '..', 'lib')
2 | $:.unshift File.join(File.dirname(__FILE__), '..')
3 |
4 | require 'spec'
5 | require 'behaviour/examples/examples'
6 | require 'behaviour/stories/stories'
7 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/failing_examples/syntax_error_example.rb:
--------------------------------------------------------------------------------
1 | describe "when passing a block to a matcher" do
2 | it "you should use {} instead of do/end" do
3 | Object.new.should satisfy do
4 | "this block is being passed to #should instead of #satisfy - use {} instead"
5 | end
6 | end
7 | end
8 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/multibyte.rb:
--------------------------------------------------------------------------------
1 | module ActiveSupport
2 | module Multibyte #:nodoc:
3 | DEFAULT_NORMALIZATION_FORM = :kc
4 | NORMALIZATIONS_FORMS = [:c, :kc, :d, :kd]
5 | UNICODE_VERSION = '5.0.0'
6 | end
7 | end
8 |
9 | require 'active_support/multibyte/chars'
10 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb:
--------------------------------------------------------------------------------
1 | require 'test_helper'
2 |
3 | class <%= controller_class_name %>ControllerTest < ActionController::TestCase
4 | # Replace this with your real tests.
5 | def test_truth
6 | assert true
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/views/view_spec/accessor.rhtml:
--------------------------------------------------------------------------------
1 | <%= session[:key] %>
2 | <%= params[:key] %>
3 | <%= flash[:key] %>
4 | <%= params[:controller] %>
5 | <%= params[:action] %>
6 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/parrots_pirates.yml:
--------------------------------------------------------------------------------
1 | george_blackbeard:
2 | parrot_id: <%= Fixtures.identify(:george) %>
3 | pirate_id: <%= Fixtures.identify(:blackbeard) %>
4 |
5 | louis_blackbeard:
6 | parrot_id: <%= Fixtures.identify(:louis) %>
7 | pirate_id: <%= Fixtures.identify(:blackbeard) %>
8 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/rake_tasks/examples_with_rcov.rake:
--------------------------------------------------------------------------------
1 | require 'rake'
2 | require 'spec/rake/spectask'
3 |
4 | desc "Run all examples with RCov"
5 | Spec::Rake::SpecTask.new('examples_with_rcov') do |t|
6 | t.spec_files = FileList['examples/**/*.rb']
7 | t.rcov = true
8 | t.rcov_opts = ['--exclude', 'examples']
9 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/club.rb:
--------------------------------------------------------------------------------
1 | class Club < ActiveRecord::Base
2 | has_many :memberships
3 | has_many :members, :through => :memberships
4 | has_many :current_memberships
5 | has_one :sponsor
6 | has_one :sponsored_member, :through => :sponsor, :source => :sponsorable, :source_type => "Member"
7 | end
--------------------------------------------------------------------------------
/config/amazon_s3.yml:
--------------------------------------------------------------------------------
1 | development:
2 | bucket_name: appname_development
3 | access_key_id:
4 | secret_access_key:
5 |
6 | test:
7 | bucket_name: appname_test
8 | access_key_id:
9 | secret_access_key:
10 |
11 | production:
12 | bucket_name: appname
13 | access_key_id:
14 | secret_access_key:
15 |
--------------------------------------------------------------------------------
/db/migrate/011_create_links.rb:
--------------------------------------------------------------------------------
1 | class CreateLinks < ActiveRecord::Migration
2 | def self.up
3 | create_table :links do |t|
4 | t.integer :from_page_id
5 | t.integer :to_page_id
6 |
7 | t.timestamps
8 | end
9 | end
10 |
11 | def self.down
12 | drop_table :links
13 | end
14 | end
15 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/models/citation.rb:
--------------------------------------------------------------------------------
1 | class Citation < ActiveRecord::Base
2 | belongs_to :reference_of, :class_name => "Book", :foreign_key => :book2_id
3 |
4 | belongs_to :book1, :class_name => "Book", :foreign_key => :book1_id
5 | belongs_to :book2, :class_name => "Book", :foreign_key => :book2_id
6 | end
7 |
--------------------------------------------------------------------------------
/app/views/pages/new.html.erb:
--------------------------------------------------------------------------------
1 | Adding <%= @page.title || "a new page" %>
2 |
3 | <%= error_messages_for :page %>
4 |
5 | <% form_for(@page) do |f| %>
6 | <%= render :partial => "form", :locals => {:f => f} %>
7 | <% end %>
8 |
9 | <%= link_to 'Back', :back %>
10 |
11 | <%= render :partial => @attachments %>
12 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/spec_resources/helpers/plugin_application_helper.rb:
--------------------------------------------------------------------------------
1 | # Methods added to this helper will be available to all templates in the application.
2 | module ApplicationHelper
3 | def method_in_plugin_application_helper
4 | "This is text from a method in the ApplicationHelper
"
5 | end
6 | end
7 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layouts/partial_with_layout.erb:
--------------------------------------------------------------------------------
1 | <%= render( :layout => "layout_for_partial", :partial => "partial_for_use_in_layout", :locals => {:name => 'Anthony' } ) %>
2 | <%= yield %>
3 | <%= render( :layout => "layout_for_partial", :partial => "partial_for_use_in_layout", :locals => {:name => 'Ramm' } ) %>
--------------------------------------------------------------------------------
/vendor/plugins/open_id_authentication/init.rb:
--------------------------------------------------------------------------------
1 | begin
2 | require 'openid'
3 | rescue LoadError
4 | begin
5 | gem 'ruby-openid', '>=2.0.4'
6 | rescue Gem::LoadError
7 | puts "Install the ruby-openid gem to enable OpenID support"
8 | end
9 | end
10 |
11 | ActionController::Base.send :include, OpenIdAuthentication
12 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/bin/spec_translator:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | raise "\n\nUsage: spec_translator from_dir to_dir\n\n" if ARGV.size != 2
3 | $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../lib"))
4 | require 'spec/translator'
5 | t = ::Spec::Translator.new
6 | from = ARGV[0]
7 | to = ARGV[1]
8 | t.translate(from, to)
9 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/mocks/bug_report_10260_spec.rb:
--------------------------------------------------------------------------------
1 | require File.dirname(__FILE__) + '/../../spec_helper.rb'
2 |
3 | describe "An RSpec Mock" do
4 | it "should hide internals in its inspect representation" do
5 | m = mock('cup')
6 | m.inspect.should =~ /#/
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/developers_projects.yml:
--------------------------------------------------------------------------------
1 | david_action_controller:
2 | developer_id: 1
3 | project_id: 2
4 | joined_on: 2004-10-10
5 |
6 | david_active_record:
7 | developer_id: 1
8 | project_id: 1
9 | joined_on: 2004-10-10
10 |
11 | jamis_active_record:
12 | developer_id: 2
13 | project_id: 1
--------------------------------------------------------------------------------
/vendor/rails/actionpack/test/fixtures/layouts/block_with_layout.erb:
--------------------------------------------------------------------------------
1 | <% render(:layout => "layout_for_partial", :locals => { :name => "Anthony" }) do %>Inside from first block in layout<% end %>
2 | <%= yield %>
3 | <% render(:layout => "layout_for_partial", :locals => { :name => "Ramm" }) do %>Inside from second block in layout<% end %>
4 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/core_ext/kernel.rb:
--------------------------------------------------------------------------------
1 | require 'active_support/core_ext/kernel/daemonizing'
2 | require 'active_support/core_ext/kernel/reporting'
3 | require 'active_support/core_ext/kernel/agnostics'
4 | require 'active_support/core_ext/kernel/requires'
5 | require 'active_support/core_ext/kernel/debugger'
6 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/story/scenario.rb:
--------------------------------------------------------------------------------
1 |
2 | module Spec
3 | module Story
4 | class Scenario
5 | attr_accessor :name, :body, :story
6 |
7 | def initialize(story, name, &body)
8 | @story = story
9 | @name = name
10 | @body = body
11 | end
12 | end
13 | end
14 | end
15 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/stories/example_groups/stories.rb:
--------------------------------------------------------------------------------
1 | require File.join(File.dirname(__FILE__), *%w[.. helper])
2 |
3 | with_steps_for :running_rspec do
4 | run File.dirname(__FILE__) + "/nested_groups"
5 | # Dir["#{File.dirname(__FILE__)}/*"].each do |file|
6 | # run file if File.file?(file) && !(file =~ /\.rb$/)
7 | # end
8 | end
--------------------------------------------------------------------------------
/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb:
--------------------------------------------------------------------------------
1 |
2 |
3 | HTML formatted message to <%= @recipient %>.
4 |
5 |
6 |
7 |
8 | HTML formatted message to <%= @recipient %>.
9 |
10 |
11 |
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/core_ext/integer.rb:
--------------------------------------------------------------------------------
1 | require 'active_support/core_ext/integer/even_odd'
2 | require 'active_support/core_ext/integer/inflections'
3 |
4 | class Integer #:nodoc:
5 | include ActiveSupport::CoreExtensions::Integer::EvenOdd
6 | include ActiveSupport::CoreExtensions::Integer::Inflections
7 | end
8 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/helper.rb:
--------------------------------------------------------------------------------
1 | dir = File.dirname(__FILE__)
2 | $LOAD_PATH.unshift(File.expand_path("#{dir}/../../../../../../rspec/lib"))
3 | require 'spec'
4 | $LOAD_PATH.unshift(File.expand_path("#{dir}/../../"))
5 | require "#{dir}/../../life"
6 | require File.join(File.dirname(__FILE__), *%w[steps])
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/runner/output_one_time_fixture_runner.rb:
--------------------------------------------------------------------------------
1 | dir = File.dirname(__FILE__)
2 | require "#{dir}/../../spec_helper"
3 |
4 | triggering_double_output = rspec_options
5 | options = Spec::Runner::OptionParser.parse(
6 | ["#{dir}/output_one_time_fixture.rb"], $stderr, $stdout
7 | )
8 | Spec::Runner::CommandLine.run(options)
9 |
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/cases/connection_test_firebird.rb:
--------------------------------------------------------------------------------
1 | require "cases/helper"
2 |
3 | class FirebirdConnectionTest < ActiveRecord::TestCase
4 | def test_charset_properly_set
5 | fb_conn = ActiveRecord::Base.connection.instance_variable_get(:@connection)
6 | assert_equal 'UTF8', fb_conn.database.character_set
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/vendor/plugins/attachment_fu/amazon_s3.yml.tpl:
--------------------------------------------------------------------------------
1 | development:
2 | bucket_name: appname_development
3 | access_key_id:
4 | secret_access_key:
5 |
6 | test:
7 | bucket_name: appname_test
8 | access_key_id:
9 | secret_access_key:
10 |
11 | production:
12 | bucket_name: appname
13 | access_key_id:
14 | secret_access_key:
15 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/stories/resources/spec/example_group_with_should_methods.rb:
--------------------------------------------------------------------------------
1 | $:.push File.join(File.dirname(__FILE__), *%w[.. .. .. lib])
2 | require 'spec'
3 |
4 | class MySpec < Spec::ExampleGroup
5 | def should_pass_with_should
6 | 1.should == 1
7 | end
8 |
9 | def should_fail_with_should
10 | 1.should == 2
11 | end
12 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/migrations/missing/3_we_need_reminders.rb:
--------------------------------------------------------------------------------
1 | class WeNeedReminders < ActiveRecord::Migration
2 | def self.up
3 | create_table("reminders") do |t|
4 | t.column :content, :text
5 | t.column :remind_at, :datetime
6 | end
7 | end
8 |
9 | def self.down
10 | drop_table "reminders"
11 | end
12 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/migrations/valid/2_we_need_reminders.rb:
--------------------------------------------------------------------------------
1 | class WeNeedReminders < ActiveRecord::Migration
2 | def self.up
3 | create_table("reminders") do |t|
4 | t.column :content, :text
5 | t.column :remind_at, :datetime
6 | end
7 | end
8 |
9 | def self.down
10 | drop_table "reminders"
11 | end
12 | end
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb:
--------------------------------------------------------------------------------
1 | require 'test_helper'
2 |
3 | class <%= class_name %>Test < ActionController::IntegrationTest
4 | # fixtures :your, :models
5 |
6 | # Replace this with your real tests.
7 | def test_truth
8 | assert true
9 | end
10 | end
11 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/README:
--------------------------------------------------------------------------------
1 | <%= class_name %>
2 | <%= "=" * class_name.size %>
3 |
4 | Introduction goes here.
5 |
6 |
7 | Example
8 | =======
9 |
10 | Example goes here.
11 |
12 |
13 | Copyright (c) <%= Date.today.year %> [name of plugin creator], released under the MIT license
14 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/rails_generator/scripts/update.rb:
--------------------------------------------------------------------------------
1 | require File.dirname(__FILE__) + '/../scripts'
2 |
3 | module Rails::Generator::Scripts
4 | class Update < Base
5 | mandatory_options :command => :update
6 |
7 | protected
8 | def banner
9 | "Usage: #{$0} [options] scaffold"
10 | end
11 | end
12 | end
13 |
--------------------------------------------------------------------------------
/Rakefile:
--------------------------------------------------------------------------------
1 | # Add your own tasks in files placed in lib/tasks ending in .rake,
2 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3 |
4 | require(File.join(File.dirname(__FILE__), 'config', 'boot'))
5 |
6 | require 'rake'
7 | require 'rake/testtask'
8 | require 'rake/rdoctask'
9 |
10 | require 'tasks/rails'
11 |
--------------------------------------------------------------------------------
/app/views/attachments/new.html.erb:
--------------------------------------------------------------------------------
1 | New attachment
2 |
3 | <%= error_messages_for :attachment %>
4 |
5 | <% form_for(@attachment, :html => { :multipart => true }) do |f| %>
6 |
7 | <%= f.file_field :uploaded_data %>
8 |
9 |
10 | <%= f.submit "Create" %>
11 |
12 | <% end %>
13 |
14 | <%= link_to 'Back', attachments_path %>
15 |
--------------------------------------------------------------------------------
/config/initializers/inflections.rb:
--------------------------------------------------------------------------------
1 | # Add new inflection rules using the following format
2 | # (all these examples are active by default):
3 | # Inflector.inflections do |inflect|
4 | # inflect.plural /^(ox)$/i, '\1en'
5 | # inflect.singular /^(ox)en/i, '\1'
6 | # inflect.irregular 'person', 'people'
7 | # inflect.uncountable %w( fish sheep )
8 | # end
9 |
--------------------------------------------------------------------------------
/vendor/plugins/open_id_authentication/lib/open_id_authentication/association.rb:
--------------------------------------------------------------------------------
1 | module OpenIdAuthentication
2 | class Association < ActiveRecord::Base
3 | set_table_name :open_id_authentication_associations
4 |
5 | def from_record
6 | OpenID::Association.new(handle, secret, issued, lifetime, assoc_type)
7 | end
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_controller/test_response.rb:
--------------------------------------------------------------------------------
1 | module ActionController #:nodoc:
2 | class TestResponse #:nodoc:
3 | attr_writer :controller_path
4 |
5 | def capture(name)
6 | template.instance_variable_get "@content_for_#{name.to_s}"
7 | end
8 | alias [] capture
9 |
10 | end
11 | end
12 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/runner/heckle_runner_unsupported.rb:
--------------------------------------------------------------------------------
1 | module Spec
2 | module Runner
3 | # Dummy implementation for Windows that just fails (Heckle is not supported on Windows)
4 | class HeckleRunner
5 | def initialize(filter)
6 | raise "Heckle not supported on Windows"
7 | end
8 | end
9 | end
10 | end
11 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec.rb:
--------------------------------------------------------------------------------
1 | require File.dirname(__FILE__) + '/test_unit_spec_helper'
2 |
3 | describe "TestSuiteAdapter" do
4 | include TestUnitSpecHelper
5 | it "should pass" do
6 | dir = File.dirname(__FILE__)
7 | run_script "#{dir}/resources/testsuite_adapter_spec_with_test_unit.rb"
8 | end
9 | end
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/runner_spec.rb:
--------------------------------------------------------------------------------
1 | require File.dirname(__FILE__) + '/../spec_helper.rb'
2 |
3 | module Spec
4 | describe Runner, ".configure" do
5 | it "should yield global configuration" do
6 | Spec::Runner.configure do |config|
7 | config.should equal(Spec::Runner.configuration)
8 | end
9 | end
10 | end
11 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/migrations/duplicate/2_we_need_reminders.rb:
--------------------------------------------------------------------------------
1 | class WeNeedReminders < ActiveRecord::Migration
2 | def self.up
3 | create_table("reminders") do |t|
4 | t.column :content, :text
5 | t.column :remind_at, :datetime
6 | end
7 | end
8 |
9 | def self.down
10 | drop_table "reminders"
11 | end
12 | end
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_fails.rb:
--------------------------------------------------------------------------------
1 | rspec_lib = File.dirname(__FILE__) + "/../../../../../../lib"
2 | $:.unshift rspec_lib unless $:.include?(rspec_lib)
3 | require 'test/unit'
4 | require 'spec'
5 |
6 | describe "example group with failures" do
7 | it "should fail" do
8 | false.should be_true
9 | end
10 | end
--------------------------------------------------------------------------------
/vendor/plugins/rspec/stories/resources/helpers/cmdline.rb:
--------------------------------------------------------------------------------
1 | $:.push File.join(File.dirname(__FILE__), *%w[.. .. .. lib])
2 | require 'spec'
3 |
4 | # Uncommenting next line will break the output story (no output!!)
5 | # rspec_options
6 | options = Spec::Runner::OptionParser.parse(
7 | ARGV, $stderr, $stdout
8 | )
9 | Spec::Runner::CommandLine.run(options)
10 |
--------------------------------------------------------------------------------
/vendor/plugins/textile_editor_helper/CHANGELOG:
--------------------------------------------------------------------------------
1 | == v0.2.1 ==
2 | * Added support for using textile_editor_initialize from an AJAX request
3 |
4 | == v0.2 ==
5 | * Refactored all the Javascript methods into a more OOP-style architecture
6 | * Added ability to add custom buttons to the toolbar via new helper: textile_editor_button
7 |
8 | == v0.1 ==
9 | * Initial Release
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/categorizations.yml:
--------------------------------------------------------------------------------
1 | david_welcome_general:
2 | id: 1
3 | author_id: 1
4 | post_id: 1
5 | category_id: 1
6 |
7 | mary_thinking_sti:
8 | id: 2
9 | author_id: 2
10 | post_id: 2
11 | category_id: 3
12 |
13 | mary_thinking_general:
14 | id: 3
15 | author_id: 2
16 | post_id: 2
17 | category_id: 1
18 |
--------------------------------------------------------------------------------
/db/migrate/001_create_pages.rb:
--------------------------------------------------------------------------------
1 | class CreatePages < ActiveRecord::Migration
2 | def self.up
3 | create_table :pages do |t|
4 | t.string :title
5 | t.text :body
6 | t.integer :user_id
7 | t.string :permalink
8 |
9 | t.timestamps
10 | end
11 | end
12 |
13 | def self.down
14 | drop_table :pages
15 | end
16 | end
17 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/lib/spec/story.rb:
--------------------------------------------------------------------------------
1 | require 'spec'
2 | require 'spec/story/extensions'
3 | require 'spec/story/given_scenario'
4 | require 'spec/story/runner'
5 | require 'spec/story/scenario'
6 | require 'spec/story/step'
7 | require 'spec/story/step_group'
8 | require 'spec/story/step_mother'
9 | require 'spec/story/story'
10 | require 'spec/story/world'
11 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_passes.rb:
--------------------------------------------------------------------------------
1 | rspec_lib = File.dirname(__FILE__) + "/../../../../../../lib"
2 | $:.unshift rspec_lib unless $:.include?(rspec_lib)
3 | require 'test/unit'
4 | require 'spec'
5 |
6 | describe "example group with passing examples" do
7 | it "should pass" do
8 | true.should be_true
9 | end
10 | end
--------------------------------------------------------------------------------
/vendor/rails/activeresource/test/abstract_unit.rb:
--------------------------------------------------------------------------------
1 | require 'test/unit'
2 |
3 | $:.unshift "#{File.dirname(__FILE__)}/../lib"
4 | require 'active_resource'
5 | require 'active_resource/http_mock'
6 |
7 | $:.unshift "#{File.dirname(__FILE__)}/../test"
8 | require 'setter_trap'
9 |
10 | ActiveResource::Base.logger = Logger.new("#{File.dirname(__FILE__)}/debug.log")
--------------------------------------------------------------------------------
/vendor/rails/activesupport/test/core_ext/symbol_test.rb:
--------------------------------------------------------------------------------
1 | require 'abstract_unit'
2 |
3 | class SymbolTests < Test::Unit::TestCase
4 | def test_to_proc
5 | assert_equal %w(one two three), [:one, :two, :three].map(&:to_s)
6 | assert_equal(%w(one two three),
7 | {1 => "one", 2 => "two", 3 => "three"}.sort_by(&:first).map(&:last))
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/db/migrate/012_page_site_fk.rb:
--------------------------------------------------------------------------------
1 | class PageSiteFk < ActiveRecord::Migration
2 | def self.up
3 | add_column :pages, :site_id, :integer
4 | add_column :page_versions, :site_id, :integer
5 | Page.update_all 'site_id=1'
6 | end
7 |
8 | def self.down
9 | remove_column :pages, :site_id
10 | remove_column :page_versions, :site_id
11 | end
12 | end
13 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_fails.rb:
--------------------------------------------------------------------------------
1 | rspec_lib = File.dirname(__FILE__) + "/../../../../../../lib"
2 | $:.unshift rspec_lib unless $:.include?(rspec_lib)
3 | require 'test/unit'
4 | require 'spec'
5 |
6 | class TestCaseThatFails < Test::Unit::TestCase
7 | def test_that_fails
8 | false.should be_true
9 | end
10 | end
--------------------------------------------------------------------------------
/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_passes.rb:
--------------------------------------------------------------------------------
1 | rspec_lib = File.dirname(__FILE__) + "/../../../../../../lib"
2 | $:.unshift rspec_lib unless $:.include?(rspec_lib)
3 | require 'test/unit'
4 | require 'spec'
5 |
6 | class TestCaseThatPasses < Test::Unit::TestCase
7 | def test_that_passes
8 | true.should be_true
9 | end
10 | end
--------------------------------------------------------------------------------
/vendor/rails/activerecord/test/fixtures/sponsors.yml:
--------------------------------------------------------------------------------
1 | moustache_club_sponsor_for_groucho:
2 | sponsor_club: moustache_club
3 | sponsorable: groucho (Member)
4 | boring_club_sponsor_for_groucho:
5 | sponsor_club: boring_club
6 | sponsorable: some_other_guy (Member)
7 | crazy_club_sponsor_for_groucho:
8 | sponsor_club: crazy_club
9 | sponsorable: some_other_guy (Member)
--------------------------------------------------------------------------------
/vendor/rails/activesupport/lib/active_support/core_ext/string/xchar.rb:
--------------------------------------------------------------------------------
1 | begin
2 | # See http://bogomips.org/fast_xs/ by Eric Wong
3 | require 'fast_xs'
4 |
5 | class String
6 | alias_method :original_xs, :to_xs if method_defined?(:to_xs)
7 | alias_method :to_xs, :fast_xs
8 | end
9 | rescue LoadError
10 | # fast_xs extension unavailable.
11 | end
12 |
--------------------------------------------------------------------------------
/vendor/rails/railties/lib/tasks/rails.rb:
--------------------------------------------------------------------------------
1 | $VERBOSE = nil
2 |
3 | # Load Rails rakefile extensions
4 | Dir["#{File.dirname(__FILE__)}/*.rake"].each { |ext| load ext }
5 |
6 | # Load any custom rakefile extensions
7 | Dir["#{RAILS_ROOT}/lib/tasks/**/*.rake"].sort.each { |ext| load ext }
8 | Dir["#{RAILS_ROOT}/vendor/plugins/*/**/tasks/**/*.rake"].sort.each { |ext| load ext }
9 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec/examples/stories/addition.rb:
--------------------------------------------------------------------------------
1 | require File.join(File.dirname(__FILE__), "helper")
2 | require File.join(File.dirname(__FILE__), "adder")
3 |
4 | # with_steps_for :addition, :more_addition do
5 | with_steps_for :addition, :more_addition do
6 | # Then("the corks should be popped") { }
7 | run File.expand_path(__FILE__).gsub(".rb","")
8 | end
9 |
10 |
--------------------------------------------------------------------------------
/spec/fixtures/links.yml:
--------------------------------------------------------------------------------
1 | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2 | one:
3 | id: 1
4 | from_page_id: 1
5 | to_page_id: 1
6 | created_at: 2008-03-15 10:28:00
7 | updated_at: 2008-03-15 10:28:00
8 | two:
9 | id: 2
10 | from_page_id: 1
11 | to_page_id: 1
12 | created_at: 2008-03-15 10:28:00
13 | updated_at: 2008-03-15 10:28:00
14 |
--------------------------------------------------------------------------------
/vendor/plugins/rspec-rails/generators/rspec_model/templates/model_spec.rb:
--------------------------------------------------------------------------------
1 | require File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../spec_helper'
2 |
3 | describe <%= class_name %> do
4 | before(:each) do
5 | @<%= file_name %> = <%= class_name %>.new
6 | end
7 |
8 | it "should be valid" do
9 | @<%= file_name %>.should be_valid
10 | end
11 | end
12 |
--------------------------------------------------------------------------------