cmor 0.0.1.pre

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,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: fd3546571c273ff03ce9421964765162f5b7219c7e890cf31798889e7d30274b
4
+ data.tar.gz: 9abb35aa41f04beae82f1b3c0d2387c5a784a1c6d2bc84c1c7aa1feb2bbd15c5
5
+ SHA512:
6
+ metadata.gz: 886c1b00c89ae1e979d6e5c8beec9566bde55a27d4a32bf50bf0709c9b5abd354514db43173e3e868eb29560585026032f3be1e81e9b172f777dc51a3a76a743
7
+ data.tar.gz: b43794c7fa1377bf09e619066bc60e004437eb893e8057cef8795f3a494662a1518c9fa303f9477a0d833de1eccb96d703bff603c222a3710f1b1849e0006b82
@@ -0,0 +1,20 @@
1
+ Copyright 2018 Roberto Vasquez Angel
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,37 @@
1
+ [![Travis CI](https://travis-ci.org/content-management-on-rails/cmor.svg?branch=master)](https://travis-ci.org/content-management-on-rails/cmor)
2
+ [![Coverage Status](https://coveralls.io/repos/github/content-management-on-rails/cmor/badge.svg?branch=master)](https://coveralls.io/github/content-management-on-rails/cmor?branch=master)
3
+ [![Maintainability](https://api.codeclimate.com/v1/badges/a71fdca73c85a22125dc/maintainability)](https://codeclimate.com/github/content-management-on-rails/cmor/maintainability)
4
+
5
+ # (C)ontent (m)anagement (o)n (r)ails a.k.a Seymore - Let's you see more and makes your content²!
6
+ Short description and motivation.
7
+
8
+ ## Usage
9
+ How to use my plugin.
10
+
11
+ ## Installation
12
+ Add this line to your application's Gemfile:
13
+
14
+ ```ruby
15
+ gem 'cmor'
16
+ ```
17
+
18
+ And then execute:
19
+ ```bash
20
+ $ bundle
21
+ ```
22
+
23
+ Or install it yourself as:
24
+ ```bash
25
+ $ gem install cmor
26
+ ```
27
+
28
+ ## Running all specs
29
+ ```bash
30
+ $ bundle && ./rspec-all.sh
31
+ ```
32
+
33
+ ## Contributing
34
+ Contribution directions go here.
35
+
36
+ ## License
37
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1,17 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'Easy Content Management'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.md')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ require 'bundler/gem_tasks'
@@ -0,0 +1,6 @@
1
+ require 'cmor/configuration'
2
+ require 'cmor/engine'
3
+
4
+ module Cmor
5
+ extend Configuration
6
+ end
@@ -0,0 +1,29 @@
1
+ require "cmor"
2
+
3
+ %w(
4
+ cmor_blog
5
+ cmor_blog_backend
6
+ cmor_carousels
7
+ cmor_carousels_backend
8
+ cmor_cms2
9
+ cmor_cms2_backend
10
+ cmor_contact2
11
+ cmor_contact2_backend
12
+ cmor_files
13
+ cmor_files_backend
14
+ cmor_galleries
15
+ cmor_galleries_backend
16
+ cmor_links2
17
+ cmor_links2_backend
18
+ cmor_rbac
19
+ cmor_rbac_backend
20
+ cmor_tags
21
+ cmor_tags_backend
22
+ cmor_user_area2
23
+ cmor_user_area2_backend
24
+ ).each do |engine|
25
+ begin
26
+ require engine
27
+ rescue LoadError
28
+ end
29
+ end
@@ -0,0 +1,19 @@
1
+ module Cmor
2
+ module Configuration
3
+ def configure
4
+ yield self
5
+ end
6
+
7
+ def register_configuration(name, configuration)
8
+ (@@configuration ||= {})[name.to_sym] = configuration
9
+ end
10
+
11
+ def method_missing(m, *args, &block)
12
+ if @@configuration.has_key?(m.to_sym)
13
+ return @@configuration[m.to_sym]
14
+ else
15
+ super
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,5 @@
1
+ module Cmor
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace Cmor
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module Cmor
2
+ VERSION = '0.0.1.pre' unless const_defined?(:VERSION)
3
+ end
metadata ADDED
@@ -0,0 +1,122 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cmor
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.pre
5
+ platform: ruby
6
+ authors:
7
+ - Roberto Vasquez Angel
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-03-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: guard-rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: guard-bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: git_log_generator
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: wwtd
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: "(C)ontent (m)anagement (o)n (r)ails a.k.a Seymore - Let's you see more
84
+ and makes your content²!"
85
+ email:
86
+ - roberto@vasquez-angel.de
87
+ executables: []
88
+ extensions: []
89
+ extra_rdoc_files: []
90
+ files:
91
+ - MIT-LICENSE
92
+ - README.md
93
+ - Rakefile
94
+ - lib/cmor.rb
95
+ - lib/cmor/all.rb
96
+ - lib/cmor/configuration.rb
97
+ - lib/cmor/engine.rb
98
+ - lib/cmor/version.rb
99
+ homepage:
100
+ licenses:
101
+ - MIT
102
+ metadata: {}
103
+ post_install_message:
104
+ rdoc_options: []
105
+ require_paths:
106
+ - lib
107
+ required_ruby_version: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
112
+ required_rubygems_version: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">"
115
+ - !ruby/object:Gem::Version
116
+ version: 1.3.1
117
+ requirements: []
118
+ rubygems_version: 3.0.3
119
+ signing_key:
120
+ specification_version: 4
121
+ summary: Content management on rails
122
+ test_files: []