Added Seed data for user and some fonts
This commit is contained in:
parent
89989baa25
commit
e83f84b029
1
Gemfile
1
Gemfile
|
@ -21,6 +21,7 @@ gem "font-awesome-rails", github: "bokmann/font-awesome-rails"
|
|||
gem 'rmagick'
|
||||
# Use SCSS for stylesheets
|
||||
gem 'sass-rails', '~> 4.0.0'
|
||||
gem 'apipie-rails'
|
||||
|
||||
# Use Uglifier as compressor for JavaScript assets
|
||||
gem 'uglifier', '>= 1.3.0'
|
||||
|
|
|
@ -67,6 +67,8 @@ GEM
|
|||
multi_json (~> 1.3)
|
||||
thread_safe (~> 0.1)
|
||||
tzinfo (~> 0.3.37)
|
||||
apipie-rails (0.0.24)
|
||||
rails (>= 3.0.10)
|
||||
arel (4.0.1)
|
||||
atomic (1.1.14)
|
||||
bcrypt-ruby (3.1.2)
|
||||
|
@ -180,6 +182,7 @@ PLATFORMS
|
|||
|
||||
DEPENDENCIES
|
||||
anjlab-bootstrap-rails!
|
||||
apipie-rails
|
||||
bson_ext
|
||||
carrierwave
|
||||
carrierwave-mongoid
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
font-family: 'Average Sans', sans-serif;
|
||||
/* The html and body elements cannot have any padding or margin. */
|
||||
}
|
||||
|
||||
}
|
||||
/* Wrapper for page content to push down footer */
|
||||
#wrap {
|
||||
min-height: 100%;
|
||||
|
|
|
@ -5,7 +5,14 @@
|
|||
<title>RulingOrbit - Template & Module Store</title>
|
||||
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
|
||||
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
|
||||
<link href='http://fonts.googleapis.com/css?family=Arvo' rel='stylesheet' type='text/css'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Average+Sans' rel='stylesheet' type='text/css'>
|
||||
<%= csrf_meta_tags %>
|
||||
<style>
|
||||
h1, h2, h3{
|
||||
font-family: 'Arvo', serif;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Wrap all page content here
|
||||
|
|
|
@ -5,3 +5,4 @@
|
|||
#
|
||||
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
|
||||
# Mayor.create(name: 'Emanuel', city: cities.first)
|
||||
user = User.create :email => "orbit@rulingcom.com", :password => "bjo4xjp6", :password_confirmation => "bjo4xjp6"
|
||||
|
|
Loading…
Reference in New Issue