ricogen 0.2 → 0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. data/Rakefile +0 -3
  2. data/VERSION +1 -1
  3. data/templates/Gemfile +28 -19
  4. data/test/hamgen_test.rb +1 -1
  5. data/test_app/Gemfile +68 -0
  6. data/test_app/Rakefile +7 -0
  7. data/test_app/app/controllers/application_controller.rb +3 -0
  8. data/test_app/app/helpers/application_helper.rb +2 -0
  9. data/test_app/app/stylesheets/_setup.sass +12 -0
  10. data/test_app/app/stylesheets/application.sass +15 -0
  11. data/test_app/app/stylesheets/lib/_extend.sass +87 -0
  12. data/test_app/app/stylesheets/lib/_mixins.sass +78 -0
  13. data/test_app/app/stylesheets/lib/_reset.sass +150 -0
  14. data/test_app/app/stylesheets/lib/_variables.sass +26 -0
  15. data/test_app/app/stylesheets/styles/_common.sass +1 -0
  16. data/test_app/app/stylesheets/styles/_extend.sass +1 -0
  17. data/test_app/app/stylesheets/styles/_mixins.sass +1 -0
  18. data/test_app/app/stylesheets/styles/_template.sass +1 -0
  19. data/test_app/app/stylesheets/styles/_variables.sass +1 -0
  20. data/test_app/app/views/layouts/application.html.haml +28 -0
  21. data/test_app/config/app.yml +5 -0
  22. data/test_app/config/application.rb +52 -0
  23. data/test_app/config/auth_providers.yml +55 -0
  24. data/test_app/config/boot.rb +6 -0
  25. data/test_app/config/compass.config +15 -0
  26. data/test_app/config/database.yml +22 -0
  27. data/test_app/config/environment.rb +18 -0
  28. data/test_app/config/environments/development.rb +26 -0
  29. data/test_app/config/environments/production.rb +49 -0
  30. data/test_app/config/environments/test.rb +35 -0
  31. data/test_app/config/initializers/_config.rb +49 -0
  32. data/test_app/config/initializers/backtrace_silencers.rb +7 -0
  33. data/test_app/config/initializers/compass.rb +5 -0
  34. data/test_app/config/initializers/inflections.rb +10 -0
  35. data/test_app/config/initializers/mime_types.rb +5 -0
  36. data/test_app/config/initializers/mongo.rb +10 -0
  37. data/test_app/config/locales/en.yml +5 -0
  38. data/test_app/config/magent.yml +13 -0
  39. data/test_app/config/mongoid.yml +23 -0
  40. data/test_app/config/routes.rb +58 -0
  41. data/test_app/config.ru +4 -0
  42. data/test_app/db/seeds.rb +7 -0
  43. data/test_app/doc/README_FOR_APP +2 -0
  44. data/test_app/log/development.log +0 -0
  45. data/test_app/log/production.log +0 -0
  46. data/test_app/log/server.log +0 -0
  47. data/test_app/log/test.log +0 -0
  48. data/test_app/public/404.html +26 -0
  49. data/test_app/public/422.html +26 -0
  50. data/test_app/public/500.html +26 -0
  51. data/test_app/public/javascripts/application.js +7 -0
  52. data/test_app/public/javascripts/rails.js +1 -0
  53. data/test_app/script/rails +6 -0
  54. data/test_app/test/performance/browsing_test.rb +9 -0
  55. data/test_app/test/test_helper.rb +13 -0
  56. metadata +54 -3
@@ -0,0 +1,55 @@
1
+ base: &common
2
+ Google:
3
+ openid: https://www.google.com/accounts/o8/id
4
+ Yahoo:
5
+ openid: http://yahoo.com
6
+ AOL:
7
+ openid: 'http://openid.aol.com/{user_name}'
8
+ MySpace:
9
+ openid: 'http://www.myspace.com/{user_name}'
10
+ MyOpenID:
11
+ openid: 'http://{user_name}.myopenid.com/'
12
+ Wordpress:
13
+ openid: 'http://{user_name}.wordpress.com/'
14
+ Blogger:
15
+ openid: 'http://{user_name}.blogspot.com/'
16
+ Flickr:
17
+ openid: 'http://flickr.com/photos/{user_name}/'
18
+ Launchpad:
19
+ openid: 'https://launchpad.net/~{user_name}'
20
+ Vidoop:
21
+ openid: 'http://{user_name}.myvidoop.com/'
22
+ ClaimID:
23
+ openid: 'http://claimid.com/{user_name}'
24
+ Technorati:
25
+ openid: 'http://technorati.com/people/technorati/{user_name}/'
26
+ Verisign:
27
+ openid: 'http://{user_name}.pip.verisignlabs.com/'
28
+ LiveJournal:
29
+ openid: 'http://{user_name}.livejournal.com'
30
+ OpenId:
31
+ openid: '{user_name}'
32
+ Twitter:
33
+ id: 'ID'
34
+ token: 'TOKEN'
35
+ Identica:
36
+ id: 'ID'
37
+ token: 'TOKEN'
38
+ Facebook:
39
+ id: 'ID'
40
+ token: 'TOKEN'
41
+ Github:
42
+ id: 'ID'
43
+ token: 'TOKEN'
44
+ LinkedIn:
45
+ id: "ID"
46
+ token: "TOKEN"
47
+
48
+ development:
49
+ <<: *common
50
+
51
+ production:
52
+ <<: *common
53
+
54
+ test:
55
+ <<: *common
@@ -0,0 +1,6 @@
1
+ require 'rubygems'
2
+
3
+ # Set up gems listed in the Gemfile.
4
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
5
+
6
+ require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
@@ -0,0 +1,15 @@
1
+ # Require any additional compass plugins here.
2
+
3
+ project_type = :rails
4
+ project_path = RAILS_ROOT if defined?(RAILS_ROOT)
5
+ # Set this to the root of your project when deployed:
6
+ http_path = "/"
7
+ css_dir = "public/stylesheets/compiled"
8
+ sass_dir = "app/stylesheets"
9
+ images_dir = "public/images"
10
+ javascripts_dir = "public/javascripts"
11
+ # To enable relative paths to assets via compass helper functions. Uncomment:
12
+ # relative_assets = true
13
+ http_images_path = "/images"
14
+ http_stylesheets_path = "/stylesheets"
15
+ http_javascripts_path = "/javascripts"
@@ -0,0 +1,22 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ development:
4
+ adapter: sqlite3
5
+ database: db/development.sqlite3
6
+ pool: 5
7
+ timeout: 5000
8
+
9
+ # Warning: The database defined as "test" will be erased and
10
+ # re-generated from your development database when you run "rake".
11
+ # Do not set this db to the same as development or production.
12
+ test:
13
+ adapter: sqlite3
14
+ database: db/test.sqlite3
15
+ pool: 5
16
+ timeout: 5000
17
+
18
+ production:
19
+ adapter: sqlite3
20
+ database: db/production.sqlite3
21
+ pool: 5
22
+ timeout: 5000
@@ -0,0 +1,18 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ TestApp::Application.initialize!
6
+ # put rails errors inline on the tags themselves
7
+ ActionView::Base.field_error_proc = (
8
+ Proc.new do |html_tag, instance|
9
+ class_name = "error"
10
+ d = HTML::Document.new(html_tag)
11
+ tag = d.root.children.first
12
+ if tag.attributes.has_key?('class')
13
+ tag.attributes["class"] += " #{class_name}"
14
+ else
15
+ tag.attributes["class"] = class_name
16
+ end
17
+ tag.to_s.html_safe
18
+ end)
@@ -0,0 +1,26 @@
1
+ TestApp::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the webserver when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_view.debug_rjs = true
15
+ config.action_controller.perform_caching = false
16
+
17
+ # Don't care if the mailer can't send
18
+ config.action_mailer.raise_delivery_errors = false
19
+
20
+ # Print deprecation notices to the Rails logger
21
+ config.active_support.deprecation = :log
22
+
23
+ # Only use best-standards-support built into browsers
24
+ config.action_dispatch.best_standards_support = :builtin
25
+ end
26
+
@@ -0,0 +1,49 @@
1
+ TestApp::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The production environment is meant for finished, "live" apps.
5
+ # Code is not reloaded between requests
6
+ config.cache_classes = true
7
+
8
+ # Full error reports are disabled and caching is turned on
9
+ config.consider_all_requests_local = false
10
+ config.action_controller.perform_caching = true
11
+
12
+ # Specifies the header that your server uses for sending files
13
+ config.action_dispatch.x_sendfile_header = "X-Sendfile"
14
+
15
+ # For nginx:
16
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
17
+
18
+ # If you have no front-end server that supports something like X-Sendfile,
19
+ # just comment this out and Rails will serve the files
20
+
21
+ # See everything in the log (default is :info)
22
+ # config.log_level = :debug
23
+
24
+ # Use a different logger for distributed setups
25
+ # config.logger = SyslogLogger.new
26
+
27
+ # Use a different cache store in production
28
+ # config.cache_store = :mem_cache_store
29
+
30
+ # Disable Rails's static asset server
31
+ # In production, Apache or nginx will already do this
32
+ config.serve_static_assets = false
33
+
34
+ # Enable serving of images, stylesheets, and javascripts from an asset server
35
+ # config.action_controller.asset_host = "http://assets.example.com"
36
+
37
+ # Disable delivery errors, bad email addresses will be ignored
38
+ # config.action_mailer.raise_delivery_errors = false
39
+
40
+ # Enable threaded mode
41
+ # config.threadsafe!
42
+
43
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
44
+ # the I18n.default_locale when a translation can not be found)
45
+ config.i18n.fallbacks = true
46
+
47
+ # Send deprecation notices to registered listeners
48
+ config.active_support.deprecation = :notify
49
+ end
@@ -0,0 +1,35 @@
1
+ TestApp::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Log error messages when you accidentally call methods on nil.
11
+ config.whiny_nils = true
12
+
13
+ # Show full error reports and disable caching
14
+ config.consider_all_requests_local = true
15
+ config.action_controller.perform_caching = false
16
+
17
+ # Raise exceptions instead of rendering exception templates
18
+ config.action_dispatch.show_exceptions = false
19
+
20
+ # Disable request forgery protection in test environment
21
+ config.action_controller.allow_forgery_protection = false
22
+
23
+ # Tell Action Mailer not to deliver emails to the real world.
24
+ # The :test delivery method accumulates sent emails in the
25
+ # ActionMailer::Base.deliveries array.
26
+ config.action_mailer.delivery_method = :test
27
+
28
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
29
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
30
+ # like if you have constraints or database-specific column types
31
+ # config.active_record.schema_format = :sql
32
+
33
+ # Print deprecation notices to the stderr
34
+ config.active_support.deprecation = :stderr
35
+ end
@@ -0,0 +1,49 @@
1
+ require 'ostruct'
2
+
3
+ config_file = Rails.root+"config/app.yml"
4
+ options = YAML.load_file(config_file)
5
+ if !options[Rails.env]
6
+ raise "'#{Rails.env}' was not found in #{config_file}"
7
+ end
8
+ AppConfig = OpenStruct.new(options[Rails.env])
9
+
10
+
11
+ SANITIZE_CONFIG = {
12
+ :protocols => {
13
+ "a"=>{"href"=>["ftp", "http", "https", "mailto", :relative]},
14
+ "img"=>{"src"=>["http", "https", :relative]},
15
+ "blockquote"=>{"cite"=>["http", "https", :relative]},
16
+ "q"=>{"cite"=>["http", "https", :relative]}
17
+ },
18
+ :elements => ["a", "b", "blockquote", "br", "caption", "cite", "code", "col",
19
+ "colgroup", "dd", "dl", "dt", "em", "h1", "h2", "h3", "h4", "h5",
20
+ "h6", "i", "img", "li", "ol", "p", "pre", "q", "small", "strike",
21
+ "strong", "sub", "sup", "table", "tbody", "td", "tfoot", "th",
22
+ "thead", "tr", "u", "ul", "font", "s", "hr", "div", "span"],
23
+ :attributes => {
24
+ "div" => ["style"],
25
+ "pre" => ["style"],
26
+ "code" => ["style"],
27
+ "colgroup"=>["span", "width"],
28
+ "col"=>["span", "width"],
29
+ "ul"=>["type"],
30
+ "a"=>["href", "title"],
31
+ "img"=>["align", "alt", "height", "src", "title", "width"],
32
+ "blockquote"=>["cite"],
33
+ "td"=>["abbr", "axis", "colspan", "rowspan", "width"],
34
+ "table"=>["summary", "width"],
35
+ "q"=>["cite"],
36
+ "ol"=>["start", "type"],
37
+ "th"=>["abbr", "axis", "colspan", "rowspan", "scope", "width"]
38
+ }
39
+ }
40
+
41
+
42
+ Rails.application.config.session_store :cookie_store, :key => AppConfig.session_key, :domain => :all
43
+ Rails.application.config.secret_token = AppConfig.session_secret
44
+
45
+ ActionMailer::Base.default_url_options[:host] = AppConfig.domain
46
+
47
+ if File.exist?(Rails.root + "VERSION")
48
+ AppConfig.version = File.read(Rails.root + "VERSION")
49
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,5 @@
1
+ require 'compass'
2
+ # If you have any compass plugins, require them here.
3
+ Compass.add_project_configuration(File.join(RAILS_ROOT, "config", "compass.config"))
4
+ Compass.configuration.environment = RAILS_ENV.to_sym
5
+ Compass.configure_sass_plugin!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
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
@@ -0,0 +1,10 @@
1
+ Magent.setup(YAML.load_file(Rails.root.join('config', 'magent.yml')),
2
+ Rails.env, {})
3
+
4
+
5
+ MongoidExt.init
6
+
7
+ Dir.glob("#{RAILS_ROOT}/app/models/**/*.rb") do |model_path|
8
+ File.basename(model_path, ".rb").classify.constantize
9
+ end
10
+
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,13 @@
1
+ development:
2
+ database: magent-development
3
+ host: localhost
4
+ port: 27017
5
+ websocket_channel: magent.websocket
6
+
7
+ test:
8
+ database: magent-test
9
+
10
+ production:
11
+ database: magent-production
12
+ websocket_channel: magent.websocket
13
+
@@ -0,0 +1,23 @@
1
+ defaults: &defaults
2
+ host: localhost
3
+ autocreate_indexes: false
4
+ allow_dynamic_fields: true
5
+ include_root_in_json: false
6
+ parameterize_keys: true
7
+ persist_in_safe_mode: false
8
+ raise_not_found_error: true
9
+ reconnect_time: 3
10
+
11
+ development:
12
+ <<: *defaults
13
+ database: app-development
14
+ persist_in_safe_mode: true
15
+
16
+ test:
17
+ <<: *defaults
18
+ database: app-test
19
+
20
+ production:
21
+ <<: *defaults
22
+ database: app-production
23
+
@@ -0,0 +1,58 @@
1
+ TestApp::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
+
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
8
+
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
12
+
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ # resources :products
15
+
16
+ # Sample resource route with options:
17
+ # resources :products do
18
+ # member do
19
+ # get 'short'
20
+ # post 'toggle'
21
+ # end
22
+ #
23
+ # collection do
24
+ # get 'sold'
25
+ # end
26
+ # end
27
+
28
+ # Sample resource route with sub-resources:
29
+ # resources :products do
30
+ # resources :comments, :sales
31
+ # resource :seller
32
+ # end
33
+
34
+ # Sample resource route with more complex sub-resources
35
+ # resources :products do
36
+ # resources :comments
37
+ # resources :sales do
38
+ # get 'recent', :on => :collection
39
+ # end
40
+ # end
41
+
42
+ # Sample resource route within a namespace:
43
+ # namespace :admin do
44
+ # # Directs /admin/products/* to Admin::ProductsController
45
+ # # (app/controllers/admin/products_controller.rb)
46
+ # resources :products
47
+ # end
48
+
49
+ # You can have the root of your site routed with "root"
50
+ # just remember to delete public/index.html.
51
+ # root :to => "welcome#index"
52
+
53
+ # See how all your routes lay out with "rake routes"
54
+
55
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
56
+ # Note: This route will make all actions in every controller accessible via GET requests.
57
+ # match ':controller(/:action(/:id(.:format)))'
58
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run TestApp::Application
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }])
7
+ # Mayor.create(:name => 'Daley', :city => cities.first)
@@ -0,0 +1,2 @@
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.
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,7 @@
1
+ // jQuery Browser Plugin | Version 2.3 | http://jquery.thewikies.com/browser
2
+ (function($){$.browserTest=function(a,z){var u='unknown',x='X',m=function(r,h){for(var i=0;i<h.length;i=i+1){r=r.replace(h[i][0],h[i][1]);}return r;},c=function(i,a,b,c){var r={name:m((a.exec(i)||[u,u])[1],b)};r[r.name]=true;r.version=(c.exec(i)||[x,x,x,x])[3];if(r.name.match(/safari/)&&r.version>400){r.version='2.0';}if(r.name==='presto'){r.version=($.browser.version>9.27)?'futhark':'linear_b';}r.versionNumber=parseFloat(r.version,10)||0;r.versionX=(r.version!==x)?(r.version+'').substr(0,1):x;r.className=r.name+r.versionX;return r;};a=(a.match(/Opera|Navigator|Minefield|KHTML|Chrome/)?m(a,[[/(Firefox|MSIE|KHTML,\slike\sGecko|Konqueror)/,''],['Chrome Safari','Chrome'],['KHTML','Konqueror'],['Minefield','Firefox'],['Navigator','Netscape']]):a).toLowerCase();$.browser=$.extend((!z)?$.browser:{},c(a,/(camino|chrome|firefox|netscape|konqueror|lynx|msie|opera|safari)/,[],/(camino|chrome|firefox|netscape|netscape6|opera|version|konqueror|lynx|msie|safari)(\/|\s)([a-z0-9\.\+]*?)(\;|dev|rel|\s|$)/));$.layout=c(a,/(gecko|konqueror|msie|opera|webkit)/,[['konqueror','khtml'],['msie','trident'],['opera','presto']],/(applewebkit|rv|konqueror|msie)(\:|\/|\s)([a-z0-9\.]*?)(\;|\)|\s)/);$.os={name:(/(win|mac|linux|sunos|solaris|iphone)/.exec(navigator.platform.toLowerCase())||[u])[0].replace('sunos','solaris')};if(!z){$('html').addClass([$.os.name,$.browser.name,$.browser.className,$.layout.name,$.layout.className].join(' '));}};$.browserTest(navigator.userAgent);})(jQuery);
3
+
4
+ $(document).ready(function(){
5
+
6
+
7
+ });
@@ -0,0 +1 @@
1
+ jQuery(function($){var csrf_token=$('meta[name=csrf-token]').attr('content'),csrf_param=$('meta[name=csrf-param]').attr('content');$.fn.extend({triggerAndReturn:function(name,data){var event=new $.Event(name);this.trigger(event,data);return event.result!==false},callRemote:function(){var el=this,data=el.is('form')?el.serializeArray():[],method=el.attr('method')||el.attr('data-method')||'GET',url=el.attr('action')||el.attr('href');if(url===undefined){throw"No URL specified for remote call (action or href must be present).";}else{if(el.triggerAndReturn('ajax:before')){$.ajax({url:url,data:data,dataType:'script',type:method.toUpperCase(),beforeSend:function(xhr){el.trigger('ajax:loading',xhr)},success:function(data,status,xhr){el.trigger('ajax:success',[data,status,xhr])},complete:function(xhr){el.trigger('ajax:complete',xhr)},error:function(xhr,status,error){el.trigger('ajax:failure',[xhr,status,error])}})}el.trigger('ajax:after')}}});$('a[data-confirm],input[data-confirm]').live('click',function(){var el=$(this);if(el.triggerAndReturn('confirm')){if(!confirm(el.attr('data-confirm'))){return false}}});$('form[data-remote]').live('submit',function(e){$(this).callRemote();e.preventDefault()});$('a[data-remote],input[data-remote]').live('click',function(e){$(this).callRemote();e.preventDefault()});$('a[data-method]:not([data-remote])').live('click',function(e){var link=$(this),href=link.attr('href'),method=link.attr('data-method'),form=$('<form method="post" action="'+href+'">'),metadata_input='<input name="_method" value="'+method+'" type="hidden" />';if(csrf_param!=null&&csrf_token!=null){metadata_input+='<input name="'+csrf_param+'" value="'+csrf_token+'" type="hidden" />'}form.hide().append(metadata_input).appendTo('body');e.preventDefault();form.submit()});var disable_with_input_selector='input[data-disable-with]';var disable_with_form_selector='form[data-remote]:has('+disable_with_input_selector+')';$(disable_with_form_selector).live('ajax:before',function(){$(this).find(disable_with_input_selector).each(function(){var input=$(this);input.data('enable-with',input.val()).attr('value',input.attr('data-disable-with')).attr('disabled','disabled')})});$(disable_with_form_selector).live('ajax:after',function(){$(this).find(disable_with_input_selector).each(function(){var input=$(this);input.removeAttr('disabled').val(input.data('enable-with'))})})});
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+ require 'rails/performance_test_help'
3
+
4
+ # Profiling results for each test method are written to tmp/performance.
5
+ class BrowsingTest < ActionDispatch::PerformanceTest
6
+ def test_homepage
7
+ get '/'
8
+ end
9
+ end
@@ -0,0 +1,13 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ require File.expand_path('../../config/environment', __FILE__)
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
7
+ #
8
+ # Note: You'll currently still have to declare fixtures explicitly in integration tests
9
+ # -- they do not yet inherit this setting
10
+ fixtures :all
11
+
12
+ # Add more helper methods to be used by all tests here...
13
+ end