remove extra sass rule, add db:seed
This commit is contained in:
parent
7b3a2b07ee
commit
7409cd8a27
2 changed files with 16 additions and 2 deletions
13
db/seeds.rb
13
db/seeds.rb
|
|
@ -11,4 +11,17 @@
|
|||
# Mayor.create(:name => 'Daley', :city => citie
|
||||
|
||||
require File.join(File.dirname(__FILE__), "..", "config", "environment")
|
||||
require 'factory_girl_rails'
|
||||
require 'spec/helper_methods'
|
||||
include HelperMethods
|
||||
|
||||
alice = Factory(:user_with_aspect, :username => "alice", :password => 'evankorth')
|
||||
bob = Factory(:user_with_aspect, :username => "bob", :password => 'evankorth')
|
||||
eve = Factory(:user_with_aspect, :username => "eve", :password => 'evankorth')
|
||||
|
||||
alice.person.profile.update_attributes(:first_name => "Alice", :last_name => "Smith")
|
||||
bob.person.profile.update_attributes(:first_name => "Bob", :last_name => "Grimm")
|
||||
eve.person.profile.update_attributes(:first_name => "Eve", :last_name => "Doe")
|
||||
|
||||
connect_users(bob, bob.aspects.first, alice, alice.aspects.first)
|
||||
connect_users(bob, bob.aspects.first, eve, eve.aspects.first)
|
||||
|
|
|
|||
|
|
@ -1964,8 +1964,6 @@ ul#landing_nav
|
|||
:background -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(0,136,209)), color-stop(1, rgb(113,204,255)))
|
||||
:background -moz-linear-gradient( center bottom, rgb(0,136,209) 0%, rgb(113,204,255) 100%)
|
||||
|
||||
&:active
|
||||
|
||||
#diaspora_description
|
||||
:background
|
||||
:image url('../images/ball.png')
|
||||
|
|
@ -2428,3 +2426,6 @@ ul.show_comments
|
|||
.right
|
||||
:right 1em
|
||||
|
||||
.mention
|
||||
:font
|
||||
:weight bold
|
||||
|
|
|
|||
Loading…
Reference in a new issue