Skip to content

Commit a903c38

Browse files
committed
build using rails_apps_composer 2.6.2
1 parent 498259d commit a903c38

File tree

9 files changed

+9
-36
lines changed

9 files changed

+9
-36
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ db/*.sqlite3
2525
**.war
2626
*.rbc
2727
*.sassc
28-
.rspec
2928
.redcar/
3029
.sass-cache
3130
/config/config.yml

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ gem 'foundation-rails'
1414
gem 'high_voltage'
1515
group :development do
1616
gem 'better_errors'
17-
gem 'binding_of_caller', :platforms=>[:mri_19, :mri_20, :mri_21, :rbx]
17+
gem 'binding_of_caller', :platforms=>[:mri_21]
1818
gem 'quiet_assets'
1919
gem 'rails_layout'
2020
end

Gemfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ GEM
2727
minitest (~> 5.1)
2828
thread_safe (~> 0.1)
2929
tzinfo (~> 1.1)
30-
arel (5.0.0)
30+
arel (5.0.1.20140414130214)
3131
better_errors (1.1.0)
3232
coderay (>= 1.0.0)
3333
erubis (>= 2.6.6)
@@ -51,7 +51,7 @@ GEM
5151
high_voltage (2.1.0)
5252
hike (1.2.3)
5353
i18n (0.6.9)
54-
jbuilder (2.0.6)
54+
jbuilder (2.0.7)
5555
activesupport (>= 3.0.0, < 5)
5656
multi_json (~> 1.2)
5757
jquery-rails (3.1.0)
@@ -62,8 +62,8 @@ GEM
6262
mime-types (~> 1.16)
6363
treetop (~> 1.4.8)
6464
mime-types (1.25.1)
65-
minitest (5.3.2)
66-
multi_json (1.9.2)
65+
minitest (5.3.3)
66+
multi_json (1.9.3)
6767
polyglot (0.3.4)
6868
quiet_assets (1.0.2)
6969
railties (>= 3.1, < 5.0)
@@ -80,13 +80,13 @@ GEM
8080
bundler (>= 1.3.0, < 2.0)
8181
railties (= 4.1.0)
8282
sprockets-rails (~> 2.0)
83-
rails_layout (1.0.14)
83+
rails_layout (1.0.15)
8484
railties (4.1.0)
8585
actionpack (= 4.1.0)
8686
activesupport (= 4.1.0)
8787
rake (>= 0.8.7)
8888
thor (>= 0.18.1, < 2.0)
89-
rake (10.2.2)
89+
rake (10.3.1)
9090
rdoc (4.1.1)
9191
json (~> 1.4)
9292
sass (3.2.19)
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
11
class VisitorsController < ApplicationController
2-
3-
def new
4-
end
5-
62
end

app/views/visitors/index.html.erb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<h3>Welcome</h3>

app/views/visitors/new.html.erb

Lines changed: 0 additions & 1 deletion
This file was deleted.

config/application.example.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

config/application.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

config/routes.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
RailsFoundation::Application.routes.draw do
2-
root :to => 'visitors#new'
2+
root :to => "visitors#index"
33
end

0 commit comments

Comments
 (0)