bcms_news 1.2.3 → 1.2.4
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.
- data/README.markdown +6 -0
- data/lib/bcms_news/version.rb +1 -1
- data/lib/tasks/install.rake +8 -0
- metadata +6 -5
data/README.markdown
CHANGED
@@ -30,6 +30,12 @@ The News Module defines a new content type, "News Article" which comes with the
|
|
30
30
|
|
31
31
|
The news module uses the standard BrowserCMS module instructions as detailed here: http://guides.browsercms.org/installing_modules.html
|
32
32
|
|
33
|
+
Note: If you have already run `rake db:seed` on your local database, you should run the following task to add the News specific seed data.
|
34
|
+
|
35
|
+
```
|
36
|
+
$ rake db:seed:bcms_news
|
37
|
+
```
|
38
|
+
|
33
39
|
### 2. Configure RSS Feeds
|
34
40
|
|
35
41
|
To have autodiscovery links to the News RSS feed, add the following to your project page templates in the <head> element.
|
data/lib/bcms_news/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bcms_news
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2012-01-13 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: browsercms
|
16
|
-
requirement: &
|
16
|
+
requirement: &70336228228100 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: 3.3.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70336228228100
|
25
25
|
description: The News Module for BrowserCMS
|
26
26
|
email: github@browsermedia.com
|
27
27
|
executables: []
|
@@ -56,6 +56,7 @@ files:
|
|
56
56
|
- lib/bcms_news.rb
|
57
57
|
- lib/generators/bcms_news/install/install_generator.rb
|
58
58
|
- lib/generators/bcms_news/install/USAGE
|
59
|
+
- lib/tasks/install.rake
|
59
60
|
- Gemfile
|
60
61
|
- COPYRIGHT.txt
|
61
62
|
- GPL.txt
|
@@ -77,7 +78,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
77
78
|
version: '0'
|
78
79
|
segments:
|
79
80
|
- 0
|
80
|
-
hash:
|
81
|
+
hash: -4242334688394424183
|
81
82
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
83
|
none: false
|
83
84
|
requirements:
|
@@ -86,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
86
87
|
version: '0'
|
87
88
|
segments:
|
88
89
|
- 0
|
89
|
-
hash:
|
90
|
+
hash: -4242334688394424183
|
90
91
|
requirements: []
|
91
92
|
rubyforge_project: bcms_news
|
92
93
|
rubygems_version: 1.8.10
|