ish_manager 0.1.8.195 → 0.1.8.196

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 14f3f0aec42a9f826c52630038efb86c1687967bb49ca5323143d9074b592b60
4
- data.tar.gz: 8ce930134c6a8440244a35c052aedb84daee437d70c2e7d0a196afb0634411b1
3
+ metadata.gz: 19bd1d5de6481ff14893ff864ccb83eb9eb47291911ca87a63c4775d016c6dce
4
+ data.tar.gz: 1e4c589097e66df70d6e4804662f069d01d81f9f2a5ef029a58b31ebb7622585
5
5
  SHA512:
6
- metadata.gz: 7bfef4d84c41d779d3523d22b079f11e7eb2e8b6d0648c76e3ed8ca355673153d6126700f49a9cfdfc0fe0497ded0e2e7c722fda8271349d7913fcc567ff7224
7
- data.tar.gz: 117ae3b83ec06bb818f7227c7e0bfab94186ab08e0efadd6efddc34ff879feccaf428813674717f4cc52b0777c58d3fc2ebb3e0af8a0f75f9ea1cfa5a5c476b0
6
+ metadata.gz: d774b17584c085eb85a32a7a6c1d20cf88af85fa8989a3824281770336d5b5a6df0a5bcf7edd6245bac159044e5ba295b26a60a8d3684ba4b26023c8ffe40015
7
+ data.tar.gz: f116d48742e7a731eab160dd3b17ce8138a4e38f7767814b0257de73b963ddf4ad6a7553b7f9c0398f2ef7d54cdab6368e9f93a387de00dc44df23fc10f181b3
@@ -6,7 +6,7 @@
6
6
  %i.fa.fa-compress.collapse-expand#collapseHeader
7
7
  .content
8
8
  %ul.nav.nav-pills
9
- %li{ :class => params[:controller] == 'ish_manager/maps' ? 'active' : '' }= link_to 'GameUi::Maps', gameui_maps_path
9
+ %li{ :class => params[:controller] == 'ish_manager/maps' ? 'active' : '' }= link_to 'GameUi::Maps', maps_path
10
10
  %li{ :class => params[:controller] == 'ish_manager/cities' ? 'active' : '' }= link_to 'Cities', cities_path
11
11
  %li{ :class => params[:controller] == 'ish_manager/events' ? 'active' : '' }= link_to 'Events', events_path
12
12
  %li{ :class => params[:controller] == 'ish_manager/venues' ? 'active' : '' }= link_to 'Venues', venues_path
@@ -1,8 +1,8 @@
1
1
 
2
2
  .flat-row
3
- .a= link_to map.slug, map
4
- .a= button_to '~', edit_gameui_map_path(map), method: :get
3
+ .a= link_to map.slug, map_path(map)
4
+ .a= button_to '~', edit_map_path(map), method: :get
5
5
  .a <b>#{map.w}x#{map.h}_#{map.slug}</b>
6
- .a= button_to '+marker', new_gameui_map_marker_path(map), method: :get
6
+ .a= button_to '+marker', new_map_marker_path(map), method: :get
7
7
  .a= link_to '[api]', api_map_path(map)
8
- .a= button_to 'x', map, method: :delete, data: { confirm: 'Are you sure?' }
8
+ .a= button_to 'x', map_path(map), method: :delete, data: { confirm: 'Are you sure?' }
@@ -1,6 +1,6 @@
1
1
 
2
2
  .maps-index
3
- %h1 Maps #{link_to '[+]', new_gameui_map_path}
3
+ %h1 Maps #{link_to '[+]', new_map_path}
4
4
  - @maps.each do |map|
5
5
  .item
6
6
  .col
@@ -10,10 +10,10 @@
10
10
  .col
11
11
  .row
12
12
  .a Markers (#{map.markers.length})
13
- .a #{button_to '+', new_gameui_map_marker_path(map), method: :get}
13
+ .a #{button_to '+', new_map_marker_path(map), method: :get}
14
14
  %ul.markers
15
15
  - map.markers.each do |marker|
16
16
  %li
17
17
  = marker.slug
18
- = link_to '[~]', edit_gameui_marker_path(marker)
18
+ = link_to '[~]', edit_marker_path(marker)
19
19
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ish_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8.195
4
+ version: 0.1.8.196
5
5
  platform: ruby
6
6
  authors:
7
7
  - piousbox