Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. ActionView::Template::Error (uninitialized constant Sass::Engine
  2. (in /Users/sergiotapia/Documents/Work/foobar/app/assets/stylesheets/application.css.scss)):
  3. 2: <html>
  4. 3: <head>
  5. 4: <title>Foobar</title>
  6. 5: <%= stylesheet_link_tag "application", :media => "all" %>
  7. 6: <%= javascript_include_tag "application" %>
  8. 7: <%= csrf_meta_tags %>
  9. 8: <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
  10. app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__1845727542545946075_70110608859600'
  11. ]
  12.  
  13. Rendered vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
  14. Rendered vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
  15. Rendered vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.3ms)
  16.  
  17. source 'https://rubygems.org'
  18.  
  19. gem 'rails', '3.2.8'
  20. gem 'sqlite3'
  21.  
  22. # Gems used only for assets and not required
  23. # in production environments by default.
  24. group :assets do
  25. gem 'coffee-rails', '~> 3.2.1'
  26. gem 'uglifier', '>= 1.0.3'
  27. gem 'sass-rails', '~> 3.2.3'
  28.  
  29. # Used by Twitter Bootstrap and/or Font Awesome
  30. gem 'therubyracer'
  31.  
  32. gem 'bootstrap-sass', '~> 2.2.2.0'
  33. gem 'font-awesome-sass-rails'
  34. end
  35.  
  36. gem 'jquery-rails'
  37.  
  38. gem 'devise' # Devise must be required before RailsAdmin
  39. gem 'rails_admin', '0.4.3'
  40. gem "cancan" # Allows us to disable Create and Delete actions for SiteSettings
  41. gem "paperclip", "3.3.0" # Used for file uploads for ad Creatives
  42. gem 'mysql2'
  43. gem 'ruby-mysql'
  44. gem 'useragent' # Allwos for easy detection of iOS devices
  45. gem 'rmagick' # Dynamic e-carrd image generation
  46.  
  47. gem 'sass-rails', '~> 3.2.3'
  48.  
  49. group :assets do
  50. gem 'coffee-rails', '~> 3.2.1'
  51. gem 'uglifier', '>= 1.0.3'
  52.  
  53. # Used by Twitter Bootstrap and/or Font Awesome
  54. gem 'therubyracer'
  55.  
  56. gem 'bootstrap-sass', '~> 2.2.2.0'
  57. gem 'font-awesome-sass-rails'
  58. end
  59.  
  60. # Other gems
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement