coplan-engine 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2ea64116961d118862ba30a1b170bbfbc9ccbc78705764741eab7432e951e12f
4
- data.tar.gz: b00c04bf52745d7f8b4d8ab573fc038e4ea8fd7f08a6c557da849429825fb211
3
+ metadata.gz: 7978a493f24f0424cd5a4170890ff0e41e27dc10e9b7dfff2de3e456df2a5c56
4
+ data.tar.gz: 541671d9b00b2d10ddae7269c78074db1eb025a75b94d05654a529a1809668c7
5
5
  SHA512:
6
- metadata.gz: 158e16571dd1c8688beb609ec4ca1e4ae6d817f03cee00d7468d47ffb0dd10fbd3a579532a36660517310d0b01da6c9f7ca9034f5db909602ec5f9e03bf1ceeb
7
- data.tar.gz: 304da6941f7ed2f28c937273ca5ccd33c56ff7acfad69833199e5dc8e7fe3a7149cc9b79f22dd2675a5ae66e2484526c299097f33a56601e0642a122284517f5
6
+ metadata.gz: 5b670e1689fc107975f40915ae5cd3b9ee509863a7b3f690b399710d3220308834d5043af9e1dec61f993bbc5759e134f5364aa43c9b3e66503612fb9d7138d0
7
+ data.tar.gz: 8cf385dcdbf1309395113203c186f7813e0ec51518e49ea0f7a3120075ce7b4b07453555cfd576db3c279fe415e7157e7cc756407d6297467018ffd52d199cae
@@ -13,7 +13,7 @@
13
13
  <nav class="site-nav">
14
14
  <div class="site-nav__inner">
15
15
  <%= link_to coplan.root_path, class: "site-nav__brand" do %>
16
- <%= image_tag "/coplan-logo-sm.png", alt: "CoPlan", class: "site-nav__logo" %>
16
+ <%= image_tag "coplan/coplan-logo-sm.png", alt: "CoPlan", class: "site-nav__logo" %>
17
17
  CoPlan
18
18
  <% end %>
19
19
  <ul class="site-nav__links">
data/lib/coplan/engine.rb CHANGED
@@ -15,6 +15,7 @@ module CoPlan
15
15
 
16
16
  initializer "coplan.assets" do |app|
17
17
  app.config.assets.paths << Engine.root.join("app/assets/stylesheets")
18
+ app.config.assets.paths << Engine.root.join("app/assets/images")
18
19
  app.config.assets.paths << Engine.root.join("app/javascript")
19
20
  end
20
21
 
@@ -1,3 +1,3 @@
1
1
  module CoPlan
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coplan-engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Block
@@ -140,6 +140,7 @@ executables: []
140
140
  extensions: []
141
141
  extra_rdoc_files: []
142
142
  files:
143
+ - app/assets/images/coplan/coplan-logo-sm.png
143
144
  - app/assets/stylesheets/coplan/application.css
144
145
  - app/controllers/coplan/api/v1/base_controller.rb
145
146
  - app/controllers/coplan/api/v1/comments_controller.rb