Skip to content

Commit

Permalink
allows rake assets:precompile on dummy_app
Browse files Browse the repository at this point in the history
  • Loading branch information
bbenezech committed Sep 1, 2011
1 parent c458f14 commit ee58f84
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** Stylesheet for the tooltips (jquery.tipsy) */

.tipsy { padding: 5px; font-size: 12px; opacity: 0.8; filter: alpha(opacity=80); background-repeat: no-repeat; background-image: url(<%= image_path('rails_admin/tipsy.gif') %>); }
.tipsy { padding: 5px; font-size: 12px; opacity: 0.8; filter: alpha(opacity=80); background-repeat: no-repeat; background-image: url("<%= image_path('rails_admin/tipsy.gif') %>"); }
.tipsy-inner { padding: 5px 8px 4px 8px; background-color: black; color: white; max-width: 200px; text-align: center; }
.tipsy-inner { -moz-border-radius:3px; -webkit-border-radius:3px; -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.6); -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.6); }
.tipsy-north { background-position: top center; }
Expand Down
12 changes: 11 additions & 1 deletion spec/dummy_app/Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
source 'http://rubygems.org'

gem 'rails', '~> 3.1.0'
gem 'rails', '~>3.1.0'
gem 'json'

# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.1.0.rc'
gem 'coffee-rails', '~> 3.1.0.rc'
gem 'uglifier'
end

gem 'rails_admin', :path => '../../'
gem 'devise', '~> 1.4'
gem 'mlb', '~> 0.5.5'
Expand Down

0 comments on commit ee58f84

Please sign in to comment.