scrivito 0.30.0 → 0.40.0.rc1
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 +4 -4
- data/README.md +12 -1
- data/app/assets/javascripts/scrivito.js +1 -0
- data/app/assets/javascripts/scrivito_ui_extensions.js +1 -0
- data/app/assets/stylesheets/scrivito.css +1 -0
- data/app/assets/stylesheets/scrivito_ui_extensions.css +4 -0
- data/lib/scrivito.rb +8 -1
- metadata +39 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 75a659cf4714d27416a1ec9ae40fe06bf992e5ab
|
|
4
|
+
data.tar.gz: 57c4e1a079988288ba9fb5ef9d8909f2dba0a628
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b36754d8d9156a9eb35977027ee066f0663a023e54d50a79be22525d01a3a359b9eb7804a9ec96377ba1cc2f5508b8716f164c08df3262be4e333d1d253cb2d
|
|
7
|
+
data.tar.gz: e62c79f2b7bd63254c982c6ae467c38583f4c172c4021f5bd0c74d5165ace6dac4f5f36f508c7117d4c396fa2e6ad08ce49c8dbf8a03620886809f3ca7595932
|
data/README.md
CHANGED
|
@@ -2,7 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
The Scrivito makes CMS objects maintained by means of the cloud-based Scrivito CMS available
|
|
4
4
|
to your Rails application. It offers easy-to-use functionality for rendering CMS content, doing
|
|
5
|
-
searches, etc. For more information about Scrivito, please visit https://scrivito.com
|
|
5
|
+
searches, etc. For more information about Scrivito, please visit https://scrivito.com.
|
|
6
|
+
|
|
7
|
+
## Documentation
|
|
8
|
+
|
|
9
|
+
This gem embeds the `scrivito_sdk`, the `scrivito_content_browser` and the `scrivito_editors` gems:
|
|
10
|
+
|
|
11
|
+
* http://www.rubydoc.info/gems/scrivito_sdk
|
|
12
|
+
* http://www.rubydoc.info/gems/scrivito_content_browser
|
|
13
|
+
* http://www.rubydoc.info/gems/scrivito_editors
|
|
14
|
+
|
|
15
|
+
Please visit https://scrivito.com/documentation for more detailed explanations of concepts, APIs,
|
|
16
|
+
tutorials and release notes.
|
|
6
17
|
|
|
7
18
|
## License
|
|
8
19
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//= require scrivito_content_browser
|
data/lib/scrivito.rb
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
require 'scrivito_sdk'
|
|
2
|
+
require 'scrivito_editors'
|
|
3
|
+
require 'scrivito_content_browser'
|
|
2
4
|
|
|
3
5
|
module Scrivito
|
|
4
6
|
class Engine < ::Rails::Engine
|
|
5
7
|
initializer 'scrivito.add_assets' do |app|
|
|
6
|
-
app.config.assets.precompile += %w[
|
|
8
|
+
app.config.assets.precompile += %w[
|
|
9
|
+
scrivito.js
|
|
10
|
+
scrivito.css
|
|
11
|
+
scrivito_ui_extensions.js
|
|
12
|
+
scrivito_ui_extensions.css
|
|
13
|
+
]
|
|
7
14
|
end
|
|
8
15
|
end
|
|
9
16
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: scrivito
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.40.0.rc1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Infopark AG
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -30,18 +30,44 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.
|
|
33
|
+
version: 0.40.0.rc1
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - '='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
40
|
+
version: 0.40.0.rc1
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: scrivito_editors
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - '='
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 0.40.0.rc1
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - '='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 0.40.0.rc1
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: scrivito_content_browser
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - '='
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 0.40.0.rc1
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - '='
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: 0.40.0.rc1
|
|
69
|
+
description: "\n Scrivito is a professional Cloud CMS built for Ruby on Rails.\n
|
|
70
|
+
\ For more information about Scrivito, please visit https://scrivito.com/.\n "
|
|
45
71
|
email:
|
|
46
72
|
- info@scrivito.com
|
|
47
73
|
executables: []
|
|
@@ -51,7 +77,9 @@ files:
|
|
|
51
77
|
- README.md
|
|
52
78
|
- Rakefile
|
|
53
79
|
- app/assets/javascripts/scrivito.js
|
|
80
|
+
- app/assets/javascripts/scrivito_ui_extensions.js
|
|
54
81
|
- app/assets/stylesheets/scrivito.css
|
|
82
|
+
- app/assets/stylesheets/scrivito_ui_extensions.css
|
|
55
83
|
- lib/scrivito.rb
|
|
56
84
|
homepage: https://scrivito.com
|
|
57
85
|
licenses:
|
|
@@ -68,12 +96,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
68
96
|
version: '0'
|
|
69
97
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
98
|
requirements:
|
|
71
|
-
- - '
|
|
99
|
+
- - '>'
|
|
72
100
|
- !ruby/object:Gem::Version
|
|
73
|
-
version:
|
|
101
|
+
version: 1.3.1
|
|
74
102
|
requirements: []
|
|
75
103
|
rubyforge_project:
|
|
76
|
-
rubygems_version: 2.
|
|
104
|
+
rubygems_version: 2.4.5
|
|
77
105
|
signing_key:
|
|
78
106
|
specification_version: 4
|
|
79
107
|
summary: 'Scrivito: A professional Cloud CMS built for Ruby on Rails.'
|