wysihtml5n-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. data/LICENSE +20 -0
  2. data/README.md +57 -0
  3. data/lib/wysihtml5n-rails.rb +6 -0
  4. data/lib/wysihtml5n/rails.rb +2 -0
  5. data/lib/wysihtml5n/rails/engine.rb +10 -0
  6. data/lib/wysihtml5n/rails/version.rb +5 -0
  7. data/test/cases/usage_css_spec.rb +57 -0
  8. data/test/cases/usage_js_spec.rb +33 -0
  9. data/test/dummy/README.rdoc +261 -0
  10. data/test/dummy/Rakefile +7 -0
  11. data/test/dummy/app/assets/javascripts/application.js +3 -0
  12. data/test/dummy/app/assets/javascripts/individual.js +3 -0
  13. data/test/dummy/app/assets/stylesheets/application.css.scss +3 -0
  14. data/test/dummy/app/assets/stylesheets/individual.css.scss +3 -0
  15. data/test/dummy/app/assets/stylesheets/sprockets.css +3 -0
  16. data/test/dummy/app/controllers/application_controller.rb +3 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  19. data/test/dummy/config.ru +4 -0
  20. data/test/dummy/config/application.rb +69 -0
  21. data/test/dummy/config/boot.rb +10 -0
  22. data/test/dummy/config/environment.rb +5 -0
  23. data/test/dummy/config/environments/development.rb +31 -0
  24. data/test/dummy/config/environments/production.rb +64 -0
  25. data/test/dummy/config/environments/test.rb +35 -0
  26. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  27. data/test/dummy/config/initializers/inflections.rb +15 -0
  28. data/test/dummy/config/initializers/mime_types.rb +5 -0
  29. data/test/dummy/config/initializers/secret_token.rb +7 -0
  30. data/test/dummy/config/initializers/session_store.rb +8 -0
  31. data/test/dummy/config/initializers/wrap_parameters.rb +10 -0
  32. data/test/dummy/config/locales/en.yml +5 -0
  33. data/test/dummy/config/routes.rb +58 -0
  34. data/test/dummy/log/test.log +224 -0
  35. data/test/dummy/public/404.html +26 -0
  36. data/test/dummy/public/422.html +26 -0
  37. data/test/dummy/public/500.html +25 -0
  38. data/test/dummy/public/favicon.ico +0 -0
  39. data/test/dummy/script/rails +6 -0
  40. data/test/dummy/tmp/cache/sass/5338c0058b360de616e31cc6c7da71b4f9557c8f/application.css.scssc +0 -0
  41. data/test/dummy/tmp/cache/sass/5338c0058b360de616e31cc6c7da71b4f9557c8f/individual.css.scssc +0 -0
  42. data/test/dummy/tmp/cache/sass/960125ced7e54163fe33c2547bbd2af7f2929975/wysihtml5n.css.scssc +0 -0
  43. data/test/dummy/tmp/cache/sass/e2cd63e71b626fbbfe6aeea51f81580fd02e0076/_bootstrap.scssc +0 -0
  44. data/test/dummy/tmp/cache/sass/e2cd63e71b626fbbfe6aeea51f81580fd02e0076/_editor.scssc +0 -0
  45. data/test/dummy/tmp/cache/sass/e2cd63e71b626fbbfe6aeea51f81580fd02e0076/_font-awesome.scssc +0 -0
  46. data/test/dummy/tmp/cache/sass/e2cd63e71b626fbbfe6aeea51f81580fd02e0076/bootstrap.scssc +0 -0
  47. data/test/dummy/tmp/cache/sass/e2cd63e71b626fbbfe6aeea51f81580fd02e0076/editor.scssc +0 -0
  48. data/test/dummy/tmp/cache/sass/e2cd63e71b626fbbfe6aeea51f81580fd02e0076/font-awesome.scssc +0 -0
  49. data/test/spec_helper.rb +12 -0
  50. data/test/support/helpers.rb +33 -0
  51. data/vendor/assets/fonts/wysihtml5n/fontawesome-webfont.eot +0 -0
  52. data/vendor/assets/fonts/wysihtml5n/fontawesome-webfont.svg +255 -0
  53. data/vendor/assets/fonts/wysihtml5n/fontawesome-webfont.ttf +0 -0
  54. data/vendor/assets/fonts/wysihtml5n/fontawesome-webfont.woff +0 -0
  55. data/vendor/assets/images/wysihtml5n/Jcrop.gif +0 -0
  56. data/vendor/assets/javascripts/wysihtml5n.js +3 -0
  57. data/vendor/assets/javascripts/wysihtml5n/jcrop.js +1695 -0
  58. data/vendor/assets/javascripts/wysihtml5n/wysihtml5-0.3.0.js +9531 -0
  59. data/vendor/assets/javascripts/wysihtml5n/wysihtml5-enhanced.js +783 -0
  60. data/vendor/assets/stylesheets/wysihtml5n.css.scss +3 -0
  61. data/vendor/assets/stylesheets/wysihtml5n/_bootstrap.scss +1692 -0
  62. data/vendor/assets/stylesheets/wysihtml5n/_editor.scss +115 -0
  63. data/vendor/assets/stylesheets/wysihtml5n/_font-awesome.scss +303 -0
  64. metadata +223 -0
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env rake
2
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
3
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
+
5
+ require File.expand_path('../config/application', __FILE__)
6
+
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,3 @@
1
+ //= require wysihtml5n
2
+
3
+ $(document).ready(function(){});
@@ -0,0 +1,3 @@
1
+ //= require wysihtml5n/jcrop
2
+ //= require wysihtml5n/wysihtml5-0.3.0
3
+ //= require wysihtml5n/wysihtml5-enhanced
@@ -0,0 +1,3 @@
1
+ @import "wysihtml5n";
2
+
3
+ #other-css { color: red; }
@@ -0,0 +1,3 @@
1
+ @import 'wysihtml5n/bootstrap';
2
+ @import 'wysihtml5n/editor';
3
+ @import 'wysihtml5n/font-awesome';
@@ -0,0 +1,3 @@
1
+ //= require wysihtml5n
2
+
3
+ #other-css { color: red; }
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application", :media => "all" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -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 Dummy::Application
@@ -0,0 +1,69 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ # Pick the frameworks you want:
4
+ # require "active_record/railtie"
5
+ require "action_controller/railtie"
6
+ require "action_mailer/railtie"
7
+ require "active_resource/railtie"
8
+ require "sprockets/railtie"
9
+ require "rails/test_unit/railtie"
10
+
11
+ Bundler.require
12
+ require "wysihtml5n-rails"
13
+ require "sass-rails"
14
+
15
+ module Dummy
16
+ class Application < Rails::Application
17
+ # Settings in config/environments/* take precedence over those specified here.
18
+ # Application configuration should go into files in config/initializers
19
+ # -- all .rb files in that directory are automatically loaded.
20
+
21
+ # Custom directories with classes and modules you want to be autoloadable.
22
+ # config.autoload_paths += %W(#{config.root}/extras)
23
+
24
+ # Only load the plugins named here, in the order given (default is alphabetical).
25
+ # :all can be used as a placeholder for all plugins not explicitly named.
26
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
27
+
28
+ # Activate observers that should always be running.
29
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
30
+
31
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
32
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
33
+ # config.time_zone = 'Central Time (US & Canada)'
34
+
35
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
36
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
37
+ # config.i18n.default_locale = :de
38
+
39
+ # Configure the default encoding used in templates for Ruby 1.9.
40
+ config.encoding = "utf-8"
41
+
42
+ # Configure sensitive parameters which will be filtered from the log file.
43
+ config.filter_parameters += [:password]
44
+
45
+ # Enable escaping HTML in JSON.
46
+ config.active_support.escape_html_entities_in_json = true
47
+
48
+ # Use SQL instead of Active Record's schema dumper when creating the database.
49
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
50
+ # like if you have constraints or database-specific column types
51
+ # config.active_record.schema_format = :sql
52
+
53
+ # Enforce whitelist mode for mass assignment.
54
+ # This will create an empty whitelist of attributes available for mass-assignment for all models
55
+ # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
56
+ # parameters by using an attr_accessible or attr_protected declaration.
57
+ # config.active_record.whitelist_attributes = true
58
+
59
+ # Enable the asset pipeline
60
+ config.assets.enabled = true
61
+
62
+ # Version of your assets, change this if you want to expire all your assets
63
+ config.assets.version = '1.0'
64
+
65
+ # Set an easier to test css style
66
+ config.sass.style = :compact
67
+ end
68
+ end
69
+
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,31 @@
1
+ Dummy::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 web server 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_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+
26
+ # Do not compress assets
27
+ config.assets.compress = false
28
+
29
+ # Expands the lines which load the assets
30
+ config.assets.debug = true
31
+ end
@@ -0,0 +1,64 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to nil and saved in location specified by config.assets.prefix
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ end
@@ -0,0 +1,35 @@
1
+ Dummy::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
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+
33
+ # Print deprecation notices to the stderr
34
+ config.active_support.deprecation = :stderr
35
+ 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,15 @@
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
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # 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,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 'e6efef03726ba7d3dd7e35f801398bcb970b49add5ee7d3c66d375e217f397091043b981b40106acb187afa3fe1d9d290e5432f33565b8143da6866cb2cec2b0'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,58 @@
1
+ Dummy::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,224 @@
1
+ Compiled application.css (465ms) (pid 37695)
2
+ Compiled application.css (194ms) (pid 37722)
3
+ Compiled application.css (179ms) (pid 37722)
4
+ Compiled application.css (192ms) (pid 37751)
5
+ Compiled application.css (177ms) (pid 37751)
6
+ Compiled application.css (41ms) (pid 37781)
7
+ Compiled application.css (21ms) (pid 37781)
8
+ Compiled application.css (30ms) (pid 37803)
9
+ Compiled application.css (20ms) (pid 37803)
10
+ Compiled application.css (160ms) (pid 37824)
11
+ Compiled application.css (131ms) (pid 37824)
12
+ Compiled application.css (342ms) (pid 37846)
13
+ Compiled application.css (354ms) (pid 37846)
14
+ Compiled application.css (323ms) (pid 37867)
15
+ Compiled application.css (332ms) (pid 37867)
16
+ Compiled application.css (334ms) (pid 37867)
17
+ Compiled application.css (325ms) (pid 37888)
18
+ Compiled application.css (333ms) (pid 37888)
19
+ Compiled application.css (332ms) (pid 37888)
20
+ Compiled application.css (327ms) (pid 37974)
21
+ Compiled application.css (336ms) (pid 37974)
22
+ Compiled application.css (107ms) (pid 38000)
23
+ Compiled application.css (104ms) (pid 38026)
24
+ Compiled application.css (102ms) (pid 38047)
25
+ Compiled application.css (98ms) (pid 38047)
26
+ Compiled application.css (107ms) (pid 38068)
27
+ Compiled application.css (96ms) (pid 38068)
28
+ Compiled application.css (340ms) (pid 38099)
29
+ Compiled application.css (355ms) (pid 38099)
30
+ Compiled application.css (365ms) (pid 38099)
31
+ Compiled application.css (333ms) (pid 38270)
32
+ Compiled application.css (332ms) (pid 38270)
33
+ Compiled application.css (344ms) (pid 38270)
34
+ Compiled application.css (623ms) (pid 38300)
35
+ Compiled application.css (333ms) (pid 38300)
36
+ Compiled application.css (329ms) (pid 38300)
37
+ Compiled application.css (357ms) (pid 38323)
38
+ Compiled application.css (352ms) (pid 38323)
39
+ Compiled application.css (376ms) (pid 38323)
40
+ Compiled application.css (337ms) (pid 38359)
41
+ Compiled application.css (354ms) (pid 38359)
42
+ Compiled application.css (336ms) (pid 38359)
43
+ Compiled application.css (400ms) (pid 38384)
44
+ Compiled application.css (376ms) (pid 38384)
45
+ Compiled application.css (338ms) (pid 38384)
46
+ Compiled application.css (338ms) (pid 38406)
47
+ Compiled application.css (355ms) (pid 38406)
48
+ Compiled application.css (338ms) (pid 38406)
49
+ Compiled individual.css (333ms) (pid 38406)
50
+ Compiled application.css (352ms) (pid 38453)
51
+ Compiled application.css (354ms) (pid 38453)
52
+ Compiled application.css (338ms) (pid 38453)
53
+ Compiled individual.css (329ms) (pid 38453)
54
+ Compiled application.css (331ms) (pid 38475)
55
+ Compiled application.css (351ms) (pid 38475)
56
+ Compiled application.css (338ms) (pid 38475)
57
+ Compiled individual.css (337ms) (pid 38475)
58
+ Compiled wysihtml5n.css (359ms) (pid 38475)
59
+ Compiled sprockets.css (368ms) (pid 38475)
60
+ Compiled application.css (326ms) (pid 38499)
61
+ Compiled application.css (322ms) (pid 38499)
62
+ Compiled application.css (320ms) (pid 38499)
63
+ Compiled individual.css (313ms) (pid 38499)
64
+ Compiled wysihtml5n.css (343ms) (pid 38499)
65
+ Compiled sprockets.css (353ms) (pid 38499)
66
+ Compiled wysihtml5n.css (324ms) (pid 38499)
67
+ Compiled sprockets.css (331ms) (pid 38499)
68
+ Compiled application.css (327ms) (pid 38520)
69
+ Compiled application.css (318ms) (pid 38520)
70
+ Compiled application.css (317ms) (pid 38520)
71
+ Compiled individual.css (318ms) (pid 38520)
72
+ Compiled wysihtml5n.css (338ms) (pid 38520)
73
+ Compiled sprockets.css (345ms) (pid 38520)
74
+ Compiled wysihtml5n.css (323ms) (pid 38520)
75
+ Compiled sprockets.css (330ms) (pid 38520)
76
+ Compiled wysihtml5n.css (342ms) (pid 38520)
77
+ Compiled sprockets.css (366ms) (pid 38520)
78
+ Compiled application.css (356ms) (pid 38726)
79
+ Compiled application.css (322ms) (pid 38726)
80
+ Compiled application.css (321ms) (pid 38726)
81
+ Compiled individual.css (322ms) (pid 38726)
82
+ Compiled wysihtml5n.css (340ms) (pid 38726)
83
+ Compiled sprockets.css (347ms) (pid 38726)
84
+ Compiled wysihtml5n.css (296ms) (pid 38726)
85
+ Compiled sprockets.css (323ms) (pid 38726)
86
+ Compiled wysihtml5n.css (327ms) (pid 38726)
87
+ Compiled sprockets.css (374ms) (pid 38726)
88
+ Compiled application.css (326ms) (pid 38863)
89
+ Compiled application.css (316ms) (pid 38863)
90
+ Compiled application.css (333ms) (pid 38863)
91
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 38863)
92
+ Compiled wysihtml5n/wysihtml5-0.3.0.js (2ms) (pid 38863)
93
+ Compiled wysihtml5n/wysihtml5-enhanced.js (0ms) (pid 38863)
94
+ Compiled wysihtml5n.js (52ms) (pid 38863)
95
+ Compiled application.js (60ms) (pid 38863)
96
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 38863)
97
+ Compiled wysihtml5n/wysihtml5-0.3.0.js (2ms) (pid 38863)
98
+ Compiled wysihtml5n/wysihtml5-enhanced.js (0ms) (pid 38863)
99
+ Compiled wysihtml5n.js (26ms) (pid 38863)
100
+ Compiled application.js (33ms) (pid 38863)
101
+ Compiled individual.css (301ms) (pid 38863)
102
+ Compiled wysihtml5n.css (349ms) (pid 38863)
103
+ Compiled sprockets.css (371ms) (pid 38863)
104
+ Compiled wysihtml5n.css (325ms) (pid 38863)
105
+ Compiled sprockets.css (332ms) (pid 38863)
106
+ Compiled wysihtml5n.css (297ms) (pid 38863)
107
+ Compiled sprockets.css (305ms) (pid 38863)
108
+ Compiled application.css (328ms) (pid 38884)
109
+ Compiled application.css (321ms) (pid 38884)
110
+ Compiled application.css (338ms) (pid 38884)
111
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 38884)
112
+ Compiled wysihtml5n/wysihtml5-0.3.0.js (2ms) (pid 38884)
113
+ Compiled wysihtml5n/wysihtml5-enhanced.js (0ms) (pid 38884)
114
+ Compiled wysihtml5n.js (53ms) (pid 38884)
115
+ Compiled application.js (62ms) (pid 38884)
116
+ Compiled individual.css (317ms) (pid 38884)
117
+ Compiled wysihtml5n.css (322ms) (pid 38884)
118
+ Compiled sprockets.css (331ms) (pid 38884)
119
+ Compiled wysihtml5n.css (364ms) (pid 38884)
120
+ Compiled sprockets.css (374ms) (pid 38884)
121
+ Compiled wysihtml5n.css (322ms) (pid 38884)
122
+ Compiled sprockets.css (356ms) (pid 38884)
123
+ Compiled application.css (333ms) (pid 38910)
124
+ Compiled application.css (319ms) (pid 38910)
125
+ Compiled application.css (338ms) (pid 38910)
126
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 38910)
127
+ Compiled wysihtml5n.js (7ms) (pid 38910)
128
+ Compiled application.js (13ms) (pid 38910)
129
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 38910)
130
+ Compiled wysihtml5n.js (8ms) (pid 38910)
131
+ Compiled application.js (15ms) (pid 38910)
132
+ Compiled individual.css (294ms) (pid 38910)
133
+ Compiled wysihtml5n.css (335ms) (pid 38910)
134
+ Compiled sprockets.css (343ms) (pid 38910)
135
+ Compiled wysihtml5n.css (314ms) (pid 38910)
136
+ Compiled sprockets.css (321ms) (pid 38910)
137
+ Compiled wysihtml5n.css (300ms) (pid 38910)
138
+ Compiled sprockets.css (308ms) (pid 38910)
139
+ Compiled application.css (325ms) (pid 38931)
140
+ Compiled application.css (319ms) (pid 38931)
141
+ Compiled application.css (339ms) (pid 38931)
142
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 38931)
143
+ Compiled wysihtml5n.js (6ms) (pid 38931)
144
+ Compiled application.js (13ms) (pid 38931)
145
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 38931)
146
+ Compiled wysihtml5n.js (8ms) (pid 38931)
147
+ Compiled application.js (18ms) (pid 38931)
148
+ Compiled individual.css (301ms) (pid 38931)
149
+ Compiled wysihtml5n.css (348ms) (pid 38931)
150
+ Compiled sprockets.css (356ms) (pid 38931)
151
+ Compiled wysihtml5n.css (327ms) (pid 38931)
152
+ Compiled sprockets.css (336ms) (pid 38931)
153
+ Compiled wysihtml5n.css (328ms) (pid 38931)
154
+ Compiled sprockets.css (335ms) (pid 38931)
155
+ Compiled application.css (323ms) (pid 38967)
156
+ Compiled application.css (320ms) (pid 38967)
157
+ Compiled application.css (342ms) (pid 38967)
158
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 38967)
159
+ Compiled wysihtml5n/wysihtml5-0.3.0.js (2ms) (pid 38967)
160
+ Compiled wysihtml5n/wysihtml5-enhanced.js (0ms) (pid 38967)
161
+ Compiled wysihtml5n.js (54ms) (pid 38967)
162
+ Compiled application.js (89ms) (pid 38967)
163
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 38967)
164
+ Compiled wysihtml5n/wysihtml5-0.3.0.js (35ms) (pid 38967)
165
+ Compiled wysihtml5n/wysihtml5-enhanced.js (0ms) (pid 38967)
166
+ Compiled wysihtml5n.js (74ms) (pid 38967)
167
+ Compiled application.js (82ms) (pid 38967)
168
+ Compiled individual.css (322ms) (pid 38967)
169
+ Compiled wysihtml5n.css (324ms) (pid 38967)
170
+ Compiled sprockets.css (348ms) (pid 38967)
171
+ Compiled wysihtml5n.css (314ms) (pid 38967)
172
+ Compiled sprockets.css (321ms) (pid 38967)
173
+ Compiled wysihtml5n.css (340ms) (pid 38967)
174
+ Compiled sprockets.css (347ms) (pid 38967)
175
+ Compiled application.css (330ms) (pid 39012)
176
+ Compiled application.css (336ms) (pid 39012)
177
+ Compiled application.css (338ms) (pid 39012)
178
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 39012)
179
+ Compiled wysihtml5n/wysihtml5-0.3.0.js (3ms) (pid 39012)
180
+ Compiled wysihtml5n/wysihtml5-enhanced.js (0ms) (pid 39012)
181
+ Compiled wysihtml5n.js (52ms) (pid 39012)
182
+ Compiled application.js (65ms) (pid 39012)
183
+ Compiled wysihtml5n/jcrop.js (1ms) (pid 39012)
184
+ Compiled wysihtml5n/wysihtml5-0.3.0.js (25ms) (pid 39012)
185
+ Compiled wysihtml5n/wysihtml5-enhanced.js (0ms) (pid 39012)
186
+ Compiled wysihtml5n.js (51ms) (pid 39012)
187
+ Compiled application.js (57ms) (pid 39012)
188
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 39012)
189
+ Compiled wysihtml5n/wysihtml5-0.3.0.js (2ms) (pid 39012)
190
+ Compiled wysihtml5n/wysihtml5-enhanced.js (0ms) (pid 39012)
191
+ Compiled individual.js (50ms) (pid 39012)
192
+ Compiled individual.css (302ms) (pid 39012)
193
+ Compiled wysihtml5n.css (327ms) (pid 39012)
194
+ Compiled sprockets.css (335ms) (pid 39012)
195
+ Compiled wysihtml5n.css (336ms) (pid 39012)
196
+ Compiled sprockets.css (343ms) (pid 39012)
197
+ Compiled wysihtml5n.css (319ms) (pid 39012)
198
+ Compiled sprockets.css (328ms) (pid 39012)
199
+ Compiled application.css (341ms) (pid 40422)
200
+ Compiled application.css (343ms) (pid 40422)
201
+ Compiled application.css (329ms) (pid 40422)
202
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 40422)
203
+ Compiled wysihtml5n/wysihtml5-0.3.0.js (3ms) (pid 40422)
204
+ Compiled wysihtml5n/wysihtml5-enhanced.js (0ms) (pid 40422)
205
+ Compiled wysihtml5n.js (57ms) (pid 40422)
206
+ Compiled application.js (67ms) (pid 40422)
207
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 40422)
208
+ Compiled wysihtml5n/wysihtml5-0.3.0.js (25ms) (pid 40422)
209
+ Compiled wysihtml5n/wysihtml5-enhanced.js (0ms) (pid 40422)
210
+ Compiled wysihtml5n.js (50ms) (pid 40422)
211
+ Compiled application.js (57ms) (pid 40422)
212
+ Compiled wysihtml5n/jcrop.js (0ms) (pid 40422)
213
+ Compiled wysihtml5n/wysihtml5-0.3.0.js (2ms) (pid 40422)
214
+ Compiled wysihtml5n/wysihtml5-enhanced.js (0ms) (pid 40422)
215
+ Compiled individual.js (25ms) (pid 40422)
216
+ Compiled individual.css (326ms) (pid 40422)
217
+ Compiled wysihtml5n.css (320ms) (pid 40422)
218
+ Compiled sprockets.css (328ms) (pid 40422)
219
+ Compiled wysihtml5n.css (319ms) (pid 40422)
220
+ Compiled sprockets.css (326ms) (pid 40422)
221
+ Compiled wysihtml5n.css (341ms) (pid 40422)
222
+ Compiled sprockets.css (349ms) (pid 40422)
223
+ Compiled application.css (319ms) (pid 40650)
224
+ Compiled application.css (319ms) (pid 40650)