Skip to content

Commit

Permalink
Upgrade ruby to 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nihonjinrxs committed Jan 8, 2019
1 parent 6aea660 commit 06d106c
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.1
2.6.0
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source 'https://rubygems.org'

ruby '2.4.1'
ruby '2.6.0'

git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ DEPENDENCIES
webmock (~> 3.0)

RUBY VERSION
ruby 2.4.1p111
ruby 2.5.3p105

BUNDLED WITH
1.17.3
2 changes: 1 addition & 1 deletion app/views/distribution_points/archived.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%= content_for :page { render @page } %>
<%= content_for :page do render @page end %>

<script type="text/javascript">
App.updatedDistributionPoints.subscribe( function(distribution_points){
Expand Down
2 changes: 1 addition & 1 deletion app/views/distribution_points/drafts.html.erb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<%= content_for :page { render @page } %>
<%= content_for :page do render @page end %>

<%= render "shared/drafts_table", rows: @drafts, columns: @columns, headers: @headers %>
2 changes: 1 addition & 1 deletion app/views/distribution_points/index.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%= content_for :page { render @page } %>
<%= content_for :page do render @page end %>

<script type="text/javascript">
App.updatedDistributionPoints.subscribe( function(distribution_points){
Expand Down
2 changes: 1 addition & 1 deletion app/views/distribution_points/new.html.erb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<%= content_for :page { render @page } %>
<%= content_for :page do render @page end %>

<%= render 'form', distribution_point: @distribution_point %>
2 changes: 1 addition & 1 deletion app/views/distribution_points/outdated.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%= content_for :page { render @page } %>
<%= content_for :page do render @page end %>

<%
extra_commands = []
Expand Down
2 changes: 1 addition & 1 deletion app/views/shelters/archived.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%= content_for :page { render @page } %>
<%= content_for :page do render @page end %>

<script type="text/javascript">
App.updatedShelters.subscribe( function(shelters){
Expand Down
2 changes: 1 addition & 1 deletion app/views/shelters/drafts.html.erb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<%= content_for :page { render @page } %>
<%= content_for :page do render @page end %>

<%= render "shared/drafts_table", rows: @drafts, columns: @columns, headers: @headers %>
2 changes: 1 addition & 1 deletion app/views/shelters/index.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%= content_for :page { render @page } %>
<%= content_for :page do render @page end %>

<script type="text/javascript">
App.updatedShelters.subscribe( function(shelters){
Expand Down
2 changes: 1 addition & 1 deletion app/views/shelters/new.html.erb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<%= content_for :page { render @page } %>
<%= content_for :page do render @page end %>

<%= render 'form', shelter: @shelter %>
2 changes: 1 addition & 1 deletion app/views/shelters/outdated.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%= content_for :page { render @page } %>
<%= content_for :page do render @page end %>

<%
extra_commands = []
Expand Down

0 comments on commit 06d106c

Please sign in to comment.