Skip to content

Commit

Permalink
Merge pull request #210 from cre-ne-jp/library-verUP-20200530
Browse files Browse the repository at this point in the history
ライブラリの更新
  • Loading branch information
koi-chan authored May 30, 2020
2 parents 141e837 + 92cac11 commit 8c7cf71
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 23 deletions.
31 changes: 17 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -131,26 +131,26 @@ GEM
jquery-ui-rails (6.0.1)
railties (>= 3.2.16)
jwt (2.2.1)
kaminari (1.2.0)
kaminari (1.2.1)
activesupport (>= 4.1.0)
kaminari-actionview (= 1.2.0)
kaminari-activerecord (= 1.2.0)
kaminari-core (= 1.2.0)
kaminari-actionview (1.2.0)
kaminari-actionview (= 1.2.1)
kaminari-activerecord (= 1.2.1)
kaminari-core (= 1.2.1)
kaminari-actionview (1.2.1)
actionview
kaminari-core (= 1.2.0)
kaminari-activerecord (1.2.0)
kaminari-core (= 1.2.1)
kaminari-activerecord (1.2.1)
activerecord
kaminari-core (= 1.2.0)
kaminari-core (1.2.0)
kaminari-core (= 1.2.1)
kaminari-core (1.2.1)
kgio (2.11.3)
listen (3.2.1)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
loofah (2.5.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
lumberjack (1.2.4)
lumberjack (1.2.5)
mail (2.7.1)
mini_mime (>= 0.1.1)
marcel (0.3.3)
Expand Down Expand Up @@ -189,7 +189,7 @@ GEM
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
parallel (1.19.1)
parser (2.7.1.2)
parser (2.7.1.3)
ast (~> 2.4.0)
pry (0.13.1)
coderay (~> 1.1)
Expand Down Expand Up @@ -240,13 +240,16 @@ GEM
rdoc (6.2.1)
redcarpet (3.5.0)
rexml (3.2.4)
rubocop (0.83.0)
rubocop (0.84.0)
parallel (~> 1.10)
parser (>= 2.7.0.1)
rainbow (>= 2.2.2, < 4.0)
rexml
rubocop-ast (>= 0.0.3)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 2.0)
rubocop-ast (0.0.3)
parser (>= 2.7.0.1)
rubocop-rails (2.5.2)
activesupport
rack (>= 1.1)
Expand All @@ -265,7 +268,7 @@ GEM
shellany (0.0.1)
simple-navigation (4.1.0)
activesupport (>= 2.3.2)
simple_calendar (2.3.0)
simple_calendar (2.4.0)
rails (>= 3.0)
simple_enum (2.3.2)
activesupport (>= 4.0.0)
Expand Down Expand Up @@ -305,7 +308,7 @@ GEM
activemodel (>= 6.0.0)
bindex (>= 0.4.0)
railties (>= 6.0.0)
websocket-driver (0.7.1)
websocket-driver (0.7.2)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.4)
xmlrpc (0.3.0)
Expand Down
6 changes: 3 additions & 3 deletions app/views/simple_calendar/_calendar.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
<tr>
<% week.each do |day| %>
<%= content_tag :td, class: calendar.td_classes_for(day) do %>
<% if defined?(Haml) && respond_to?(:block_is_haml?) && block_is_haml?(block) %>
<% capture_haml(day, sorted_events.fetch(day, []), &block) %>
<% if defined?(Haml) && respond_to?(:block_is_haml?) && block_is_haml?(passed_block) %>
<% capture_haml(day, sorted_events.fetch(day, []), &passed_block) %>
<% else %>
<% block.call day, sorted_events.fetch(day, []) %>
<% passed_block.call day, sorted_events.fetch(day, []) %>
<% end %>
<% end %>
<% end %>
Expand Down
6 changes: 3 additions & 3 deletions app/views/simple_calendar/_month_calendar.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
<tr>
<% week.each do |day| %>
<%= content_tag :td, class: calendar.td_classes_for(day) do %>
<% if defined?(Haml) && respond_to?(:block_is_haml?) && block_is_haml?(block) %>
<% capture_haml(day, sorted_events.fetch(day, []), &block) %>
<% if defined?(Haml) && respond_to?(:block_is_haml?) && block_is_haml?(passed_block) %>
<% capture_haml(day, sorted_events.fetch(day, []), &passed_block) %>
<% else %>
<% block.call day, sorted_events.fetch(day, []) %>
<% passed_block.call day, sorted_events.fetch(day, []) %>
<% end %>
<% end %>
<% end %>
Expand Down
6 changes: 3 additions & 3 deletions app/views/simple_calendar/_week_calendar.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
<tr>
<% week.each do |day| %>
<%= content_tag :td, class: calendar.td_classes_for(day) do %>
<% if defined?(Haml) && respond_to?(:block_is_haml?) && block_is_haml?(block) %>
<% capture_haml(day, sorted_events.fetch(day, []), &block) %>
<% if defined?(Haml) && respond_to?(:block_is_haml?) && block_is_haml?(passed_block) %>
<% capture_haml(day, sorted_events.fetch(day, []), &passed_block) %>
<% else %>
<% block.call day, sorted_events.fetch(day, []) %>
<% passed_block.call day, sorted_events.fetch(day, []) %>
<% end %>
<% end %>
<% end %>
Expand Down

0 comments on commit 8c7cf71

Please sign in to comment.