whitecms_news 0.0.2 → 0.0.3

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.
@@ -0,0 +1,5 @@
1
+ class WhiteNewsController < ApplicationController
2
+ def index
3
+ @news = "My news"
4
+ end
5
+ end
@@ -0,0 +1 @@
1
+ %h1= @news
@@ -1,3 +1,3 @@
1
1
  module WhitecmsNews
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
data/lib/whitecms_news.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  require "whitecms_news/version"
2
+ require "app"
2
3
 
3
4
  module WhitecmsNews
4
5
  def self.lorem
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: whitecms_news
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -26,7 +26,9 @@ files:
26
26
  - app/assets/javascripts/components/news/news.js.coffee
27
27
  - app/assets/stylesheets/components/news/news.css.scss
28
28
  - app/components/news_component.rb
29
+ - app/controllers/white_news_controller.rb
29
30
  - app/views/components/news/_index.haml
31
+ - app/views/white_news/index.html.haml
30
32
  - lib/whitecms_news.rb
31
33
  - lib/whitecms_news/version.rb
32
34
  - whitecms_news.gemspec