roroacms 0.0.1 → 0.0.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.
- data/README.md +62 -0
- data/db/seeds.rb +1 -1
- metadata +7 -4
data/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# ROROACMS
|
|
2
|
+
|
|
3
|
+
Roroacms is an Rails-based content management system which allows you to easily introduce a page and article management to your Rails 4 applications. Roroacms has come far over the years it started out as a project to learn more about the ins & outs of Ruby on Rails and seemlessly evolved to grow into a fully grown CMS. In this second release I have moved the CMS into an engine and given the system a complete make over visually and technically.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Documentation & Demo
|
|
7
|
+
|
|
8
|
+
I am currently working relentlessly on creating a good demo and documentation for Roroacms but I do not want to release them both until I am completely satified with them. For now however you are able to install the engine and check the admin panel out!
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Installing into a new Rails application
|
|
12
|
+
|
|
13
|
+
To get up and running with Roroacms in a new Rails application is simple. Just follow the
|
|
14
|
+
instructions below and you'll be up and running in minutes.
|
|
15
|
+
|
|
16
|
+
Roroacms works with Rails 4 onwards. You can add it to your Gemfile with:
|
|
17
|
+
|
|
18
|
+
```ruby
|
|
19
|
+
gem 'roroacms'
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Run the bundle command to install it.
|
|
23
|
+
|
|
24
|
+
After you install Roroacms and add it to your Gemfile, you need to run the generator:
|
|
25
|
+
|
|
26
|
+
```console
|
|
27
|
+
rails generate roroacms:install
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
After you have installed Roroacms start the server
|
|
31
|
+
|
|
32
|
+
```console
|
|
33
|
+
rails server
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Once you start the server and visit the URL you will be presented with a installtion page which will walk you through setting the engine up fully.
|
|
37
|
+
|
|
38
|
+
### File Management
|
|
39
|
+
|
|
40
|
+
One thing to note about Roroacms is that it's media area is fully integrated with Amazon S3 at the moment so before you start head over to [http://aws.amazon.com/s3/](http://aws.amazon.com/s3/ "Amazon S3") and create a Amazon s3 account (Please make sure that the folder is open to the public).
|
|
41
|
+
|
|
42
|
+
alternatively if you are not interested in using the file manager you can leave the Amazon S3 config settings blank.
|
|
43
|
+
|
|
44
|
+
### Contribution
|
|
45
|
+
|
|
46
|
+
If you'd like to help with this project, please get in touch with me. The best place is on Twitter (@roroacms) or by e-mail to roroacms@gmail.com.
|
|
47
|
+
|
|
48
|
+
### License
|
|
49
|
+
|
|
50
|
+
Licensed under the [MIT License](http://creativecommons.org/licenses/MIT/)
|
|
51
|
+
|
|
52
|
+
Copyright 2012 [Simon Fletcher](https://github.com/fletcher890)
|
|
53
|
+
|
|
54
|
+
Icons from [Font Awesome](http://fortawesome.github.io/Font-Awesome/)
|
|
55
|
+
|
|
56
|
+
### Other Information
|
|
57
|
+
|
|
58
|
+
Project homepage: http://roroacms.co.uk
|
|
59
|
+
|
|
60
|
+
Wiki : https://github.com/fletcher890/roroacms/wiki
|
|
61
|
+
|
|
62
|
+
Version: 2.0
|
data/db/seeds.rb
CHANGED
|
@@ -43,7 +43,7 @@ Roroacms::Setting.create(:setting_name => 'smtp_username', :type_of_setting => '
|
|
|
43
43
|
Roroacms::Setting.create(:setting_name => 'smtp_password', :type_of_setting => 'EMAIL')
|
|
44
44
|
Roroacms::Setting.create(:setting_name => 'smtp_authentication', :type_of_setting => 'EMAIL')
|
|
45
45
|
Roroacms::Setting.create(:setting_name => 'setup_complete', :type_of_setting => 'G')
|
|
46
|
-
Roroacms::Setting.create(:setting_name => 'tour_taken', :type_of_setting => 'G', 'N')
|
|
46
|
+
Roroacms::Setting.create(:setting_name => 'tour_taken', :type_of_setting => 'G', :setting => 'N')
|
|
47
47
|
Roroacms::Setting.create(:setting_name => 'url_prefix', :type_of_setting => 'G', :setting => 'http://')
|
|
48
48
|
Roroacms::Setting.create(:setting_name => 'breadcrumb_seperator', :type_of_setting => 'G', :setting => '/')
|
|
49
49
|
Roroacms::Setting.create(:setting_name => 'user_groups', :type_of_setting => 'G', :setting => '{"admin":["posts","banners","terms","comments","media","menus","pages","revisions","settings","themes","trash","administrators","articles","banners","terms","comments","media","menus","pages","revisions","themes","trash","markdown"]}')
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: roroacms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -283,7 +283,8 @@ dependencies:
|
|
|
283
283
|
- - ! '>='
|
|
284
284
|
- !ruby/object:Gem::Version
|
|
285
285
|
version: '0'
|
|
286
|
-
description:
|
|
286
|
+
description: A full Rails engine providing content management functionality for any
|
|
287
|
+
Rails 4 application that is fully extendable and is completely boundless
|
|
287
288
|
email:
|
|
288
289
|
- simonfletcher0@gmail.com
|
|
289
290
|
executables: []
|
|
@@ -505,6 +506,7 @@ files:
|
|
|
505
506
|
- lib/tasks/roroacms_tasks.rake
|
|
506
507
|
- MIT-LICENSE
|
|
507
508
|
- Rakefile
|
|
509
|
+
- README.md
|
|
508
510
|
- spec/controllers/roroacms/admin/administrators_controller_spec.rb
|
|
509
511
|
- spec/controllers/roroacms/admin/articles_controller_spec.rb
|
|
510
512
|
- spec/controllers/roroacms/admin/comments_controller_spec.rb
|
|
@@ -1040,7 +1042,8 @@ files:
|
|
|
1040
1042
|
- spec/support/selectors.rb
|
|
1041
1043
|
- spec/support/utilities.rb
|
|
1042
1044
|
homepage: http://roroacms.co.uk
|
|
1043
|
-
licenses:
|
|
1045
|
+
licenses:
|
|
1046
|
+
- MIT
|
|
1044
1047
|
post_install_message:
|
|
1045
1048
|
rdoc_options: []
|
|
1046
1049
|
require_paths:
|
|
@@ -1062,7 +1065,7 @@ rubyforge_project:
|
|
|
1062
1065
|
rubygems_version: 1.8.25
|
|
1063
1066
|
signing_key:
|
|
1064
1067
|
specification_version: 3
|
|
1065
|
-
summary:
|
|
1068
|
+
summary: Not Just another rails CMS platform.
|
|
1066
1069
|
test_files:
|
|
1067
1070
|
- spec/controllers/roroacms/admin/administrators_controller_spec.rb
|
|
1068
1071
|
- spec/controllers/roroacms/admin/articles_controller_spec.rb
|