cmsable 0.0.8 → 0.0.9
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.
- checksums.yaml +8 -8
- data/README.rdoc +15 -16
- data/app/assets/stylesheets/cmsable/cmsable.css +1 -1
- data/lib/cmsable/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
Nzc0ZDhiMTI0NjI3NzRmZDNhOTY1YWM3YzM4Yjc2OWYyYjM4NDVhNw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NTc4ZmM3ZDQ1NzY2Njc0MTYxOWNiOGVjYzRjMGQ4YjM4MDA2NjI4NQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YjhiYzQ0NWIyZGYzOWM4OWQzN2UyZTIxZjQ3MmYyMWM1MzMwYTA3NzBlMjI3
|
|
10
|
+
N2I3OTY2NDNiODlmNGVmM2Q5MjMwYWNmNDA2Mjk1NDY5YTk0MDFkOTY0NjBh
|
|
11
|
+
OTI2MjYxODhhMTY3MjU2MzI4NDNlY2Y5ODZlZGIyNzQxYWNmYjc=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YjkxZjFlNmViYjMzMTU2MzNjOGNlMTBjY2EyNDZkOTY5MWEzYTk5MjI3Yjhh
|
|
14
|
+
OTFhYjQ1YzlhODc4MTVkNzg4MGVhOTg4NTk5NzZkZDUwZTg5NDEwM2M4MWVk
|
|
15
|
+
YTA0ZjkzZmIyMWE4ZTNiYTJiMjI1OTcyNmU4M2I5YTMyZGNmZDY=
|
data/README.rdoc
CHANGED
|
@@ -1,23 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
# Cmsable
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Add inline editable content to pages.
|
|
4
4
|
|
|
5
5
|
Installation:
|
|
6
6
|
|
|
7
7
|
Add to your Gemfile
|
|
8
8
|
gem 'cmsable'
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
Get Dependencies
|
|
11
11
|
bundle install
|
|
12
|
-
If that doesn't work
|
|
13
|
-
bundle update ckeditor
|
|
14
12
|
|
|
15
13
|
Add to your routes
|
|
16
14
|
mount Cmsable::Engine => '/cmsable'
|
|
17
15
|
|
|
18
16
|
Install and run the migrations if you want to use the built in model
|
|
19
17
|
rake cmsable:install:migrations
|
|
20
|
-
rake
|
|
18
|
+
rake db:migrate
|
|
21
19
|
|
|
22
20
|
Cmsable uses CanCan so make sure this is setup in your necessary controller(s)
|
|
23
21
|
If your users aren't called users then you'll get something like:
|
|
@@ -46,13 +44,14 @@ To use existing models
|
|
|
46
44
|
Then in your views
|
|
47
45
|
<%= cmsable @model_instance %>
|
|
48
46
|
|
|
49
|
-
TODO
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
Add
|
|
58
|
-
|
|
47
|
+
## TODO
|
|
48
|
+
- Handle saving errors
|
|
49
|
+
- Remove CanCan dependancy
|
|
50
|
+
- Decouple ckeditor
|
|
51
|
+
- Support different editors
|
|
52
|
+
- Setup config initializer for added customizability
|
|
53
|
+
- Add plain text mode
|
|
54
|
+
- Add file mode
|
|
55
|
+
- Add image mode
|
|
56
|
+
- Add video mode (youtube/vimeo/etc)
|
|
57
|
+
- Fix highlight so empty areas are still visible
|
data/lib/cmsable/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cmsable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Butler
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-06-
|
|
11
|
+
date: 2014-06-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -127,7 +127,7 @@ files:
|
|
|
127
127
|
- test/integration/navigation_test.rb
|
|
128
128
|
- test/test_helper.rb
|
|
129
129
|
- test/unit/helpers/cmsable/cmsable_helper_test.rb
|
|
130
|
-
homepage:
|
|
130
|
+
homepage: https://github.com/codeindulgence/cmsable
|
|
131
131
|
licenses:
|
|
132
132
|
- MIT
|
|
133
133
|
metadata: {}
|