Skip to content

Commit 3952918

Browse files
committed
build using rails_apps_composer 2.2.10
1 parent 07771a0 commit 3952918

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ gem "email_spec", ">= 1.2.1", :group => :test
1313
gem "cucumber-rails", ">= 1.3.0", :group => :test, :require => false
1414
gem "database_cleaner", ">= 0.8.0", :group => :test
1515
gem "launchy", ">= 2.1.2", :group => :test
16-
gem "factory_girl_rails", ">= 4.0.0", :group => [:development, :test]
16+
gem "factory_girl_rails", ">= 4.1.0", :group => [:development, :test]
1717
gem "devise", ">= 2.1.2"

Gemfile.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ GEM
3131
addressable (2.3.2)
3232
arel (3.0.2)
3333
bcrypt-ruby (3.0.1)
34-
builder (3.0.2)
34+
builder (3.0.3)
3535
capybara (1.1.2)
3636
mime-types (>= 1.16)
3737
nokogiri (>= 1.3.3)
@@ -70,18 +70,18 @@ GEM
7070
erubis (2.7.0)
7171
execjs (1.4.0)
7272
multi_json (~> 1.0)
73-
factory_girl (4.0.0)
73+
factory_girl (4.1.0)
7474
activesupport (>= 3.0.0)
75-
factory_girl_rails (4.0.0)
76-
factory_girl (~> 4.0.0)
75+
factory_girl_rails (4.1.0)
76+
factory_girl (~> 4.1.0)
7777
railties (>= 3.0.0)
7878
ffi (1.1.5)
7979
gherkin (2.11.2)
8080
json (>= 1.4.6)
8181
hike (1.2.1)
8282
i18n (0.6.1)
8383
journey (1.0.4)
84-
jquery-rails (2.1.2)
84+
jquery-rails (2.1.3)
8585
railties (>= 3.1.0, < 5.0)
8686
thor (~> 0.14)
8787
json (1.7.5)
@@ -103,7 +103,7 @@ GEM
103103
rack (>= 0.4)
104104
rack-ssl (1.3.2)
105105
rack
106-
rack-test (0.6.1)
106+
rack-test (0.6.2)
107107
rack (>= 1.0)
108108
rails (3.2.8)
109109
actionmailer (= 3.2.8)
@@ -130,7 +130,7 @@ GEM
130130
rspec-core (2.11.1)
131131
rspec-expectations (2.11.3)
132132
diff-lcs (~> 1.1.3)
133-
rspec-mocks (2.11.2)
133+
rspec-mocks (2.11.3)
134134
rspec-rails (2.11.0)
135135
actionpack (>= 3.0)
136136
activesupport (>= 3.0)
@@ -176,7 +176,7 @@ DEPENDENCIES
176176
database_cleaner (>= 0.8.0)
177177
devise (>= 2.1.2)
178178
email_spec (>= 1.2.1)
179-
factory_girl_rails (>= 4.0.0)
179+
factory_girl_rails (>= 4.1.0)
180180
jquery-rails
181181
launchy (>= 2.1.2)
182182
rails (= 3.2.8)

app/views/layouts/application.html.erb

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta charset="utf-8"/>
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6-
<title>Rails3 Devise Rspec Cucumber</title>
7-
<meta name="description" content=""/>
8-
<meta name="author" content=""/>
9-
<%= stylesheet_link_tag "application", :media => "all" %>
4+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
5+
<title><%= content_for?(:title) ? yield(:title) : "Rails3 Devise Rspec Cucumber" %></title>
6+
<meta name="description" content="<%= content_for?(:description) ? yield(:description) : "Rails3 Devise Rspec Cucumber" %>">
7+
<%= stylesheet_link_tag "application", :media => "all" %>
108
<%= javascript_include_tag "application" %>
119
<%= csrf_meta_tags %>
10+
<%= yield(:head) %>
1211
</head>
1312
<body>
1413
<div id="container" class="container">

0 commit comments

Comments
 (0)