bcms_event 1.1.0 → 1.1.1
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 +5 -2
- data/lib/bcms_event/version.rb +1 -1
- data/lib/tasks/install.rake +8 -0
- metadata +7 -6
data/README.markdown
CHANGED
@@ -12,12 +12,15 @@ An Event Module for BrowserCMS. Allows contributors to create and post new upcom
|
|
12
12
|
|
13
13
|
## Installation
|
14
14
|
|
15
|
-
The Event module installs like other BrowserCMS modules.
|
15
|
+
The Event module installs like other [BrowserCMS modules](http://guides.browsercms.org/installing_modules.html).
|
16
16
|
|
17
17
|
gem install bcms_event
|
18
18
|
rails g cms:install bcms_event
|
19
19
|
|
20
|
-
|
20
|
+
If you are adding bcms_event to a project with an existing database, you will very likely need to manually seed the database like so:
|
21
|
+
|
22
|
+
rake db:seed:bcms_event
|
23
|
+
|
21
24
|
|
22
25
|
### What's installed
|
23
26
|
|
data/lib/bcms_event/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bcms_event
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-01-
|
12
|
+
date: 2012-01-16 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: browsercms
|
16
|
-
requirement: &
|
16
|
+
requirement: &70351329570240 !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: *70351329570240
|
25
25
|
description:
|
26
26
|
email: github@browsermedia.com
|
27
27
|
executables: []
|
@@ -48,6 +48,7 @@ files:
|
|
48
48
|
- lib/bcms_event.rb
|
49
49
|
- lib/generators/bcms_event/install/install_generator.rb
|
50
50
|
- lib/generators/bcms_event/install/USAGE
|
51
|
+
- lib/tasks/install.rake
|
51
52
|
- Gemfile
|
52
53
|
- LICENSE.txt
|
53
54
|
- COPYRIGHT.txt
|
@@ -67,7 +68,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
67
68
|
version: '0'
|
68
69
|
segments:
|
69
70
|
- 0
|
70
|
-
hash: -
|
71
|
+
hash: -1306585856627122521
|
71
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
73
|
none: false
|
73
74
|
requirements:
|
@@ -76,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
77
|
version: '0'
|
77
78
|
segments:
|
78
79
|
- 0
|
79
|
-
hash: -
|
80
|
+
hash: -1306585856627122521
|
80
81
|
requirements: []
|
81
82
|
rubyforge_project: bcms_event
|
82
83
|
rubygems_version: 1.8.10
|