Created
January 26, 2012 23:02
-
-
Save mattbrictson/1685685 to your computer and use it in GitHub Desktop.
Revisions
-
mattbrictson revised this gist
Dec 12, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ // Include some nice mixins @import "compass/css3"; @import "sassy-buttons"; // Example: import partial stylesheet named "_users.scss" @import "users"; -
mattbrictson revised this gist
Feb 3, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,2 +1,2 @@ # Precompile *all* assets, except those that start with underscore config.assets.precompile << /(^[^_\/]|\/[^_])[^\/]*$/ -
mattbrictson revised this gist
Feb 3, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,5 +3,5 @@ group :assets do gem 'compass-colors' gem 'sassy-buttons' gem 'sass-rails', '~> 3.2.3' # non-compass gems omitted for brevity end -
mattbrictson revised this gist
Feb 3, 2012 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ group :assets do gem 'compass-rails','~> 1.0.0.rc.2' gem 'compass-colors' gem 'sassy-buttons' gem 'sass-rails', '~> 3.2.3' # non-compass gems omitted for clarity end -
mattbrictson revised this gist
Feb 3, 2012 . 2 changed files with 5 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,7 @@ group :assets do gem 'compass', '>= 0.12.alpha.1' gem 'compass-colors' gem 'sass-rails', '~> 3.2.3' gem 'sassy-buttons' # non-compass gems omitted for clarity end This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ A ActionView::Template::Error occurred in sessions#new: 1024.css isn't precompiled .bundle/bundle/gems/actionpack-3.2.0/lib/sprockets/helpers/rails_helper.rb:142:in `digest_for' -
mattbrictson revised this gist
Jan 26, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,4 +11,4 @@ │ └── application.scss └── config ├── application.rb └── compass.rb -
mattbrictson revised this gist
Jan 26, 2012 . 1 changed file with 14 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ . ├── Gemfile ├── app │ └── assets │ ├── images │ │ └── logo-small.png │ ├── javascripts │ │ └── application.js │ └── stylesheets │ ├── _users.scss │ └── application.scss └── config ├── application.rb └── compass.rb -
mattbrictson revised this gist
Jan 26, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ $ bundle exec rake assets:precompile /Users/mbrictson/.rbenv/versions/1.9.3-p0/bin/ruby script/rake assets:precompile:all RAILS_ENV=production RAILS_GROUPS=assets rake aborted! Undefined variable: "$body-text-line-height". (in /Users/mbrictson/Work/rails-project/app/assets/stylesheets/basics/_grid.scss) Tasks: TOP => assets:precompile:primary (See full trace by running task with --trace) -
mattbrictson created this gist
Jan 26, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ group :assets do gem 'compass', '>= 0.12.alpha.1' gem 'compass-colors' gem 'sassy-buttons' # non-compass gems omitted for clarity end This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ # Specify this within the application class of config/application.rb config.assets.precompile << /(^[^_\/]|\/[^_])[^\/]*$/ This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ /* * application.scss * * Important! Do *not* use Sprockets "require" syntax. * Use @import to include other stylesheets and Compass mixins. */ // Include some nice mixins @import "compass/css3"; @import "sassybuttons"; // Example: import partial stylesheet named "_users.scss" @import "users"; This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ # config/compass.rb additional_import_paths = ["app/assets/stylesheets/basics", "app/assets/stylesheets/shared"] This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ .logo { background: image-url("logo-small.png") no-repeat; } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ $ bundle exec rake assets:precompile /Users/mbrictson/.rbenv/versions/1.9.3-p0/bin/ruby script/rake assets:precompile:all RAILS_ENV=production RAILS_GROUPS=assets rake aborted! Undefined variable: "$body-text-line-height". (in /Users/mbrictson/Work/devicescout/app/app/assets/stylesheets/basics/_grid.scss) Tasks: TOP => assets:precompile:primary (See full trace by running task with --trace) rake aborted! Command failed with status (1): [/Users/mbrictson/.rbenv/versions/1.9.3-p0/...] Tasks: TOP => assets:precompile (See full trace by running task with --trace)