Skip to content

Commit

Permalink
Merge pull request #21 from adityashedge/master
Browse files Browse the repository at this point in the history
fix for seeds and bootstrap css
  • Loading branch information
spatil committed Apr 4, 2014
2 parents f94896a + 38b77ff commit b94ddd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/assets/stylesheets/framework_and_overrides.css.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// import the CSS framework
@import "bootstrap";
//@import "bootstrap";

// make all images responsive by default
img {
Expand Down
2 changes: 1 addition & 1 deletion db/seeds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

User.destroy_all

user = User.create(email: 'gerson@example.com', password: 'josh1234', roles: 'admin')
user = User.create(email: 'gerson@example.com', password: 'josh1234', roles: ['admin'])
user.profile = Profile.create(name: "gerson", birthdate: "19/07/1989", gender: "male", address: "kdjasldjaskjd", country: "Brazil" )
user.save!

Expand Down

0 comments on commit b94ddd3

Please sign in to comment.