scrivito_content_browser 1.6.0.rc1 → 1.6.0.rc2
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/LICENSE +1 -4
- data/README.md +9 -10
- data/app/assets/javascripts/dist/scrivito_content_browser_pkg.js +4725 -3170
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c8cda3b9991f7db5a72153bee7168e5379b312f8
|
|
4
|
+
data.tar.gz: 9ce473a4551526f21f666cdc414a0bbfb545843c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3952b39e3a73d9d36351d5e2a1109d45f71bdae1af0eb808ceff75da274a87e63c0cc7c3158cf206b4731ba9ebfb6fc5595ae714381fb96afdfa5fd56ca3e8a1
|
|
7
|
+
data.tar.gz: 794ec8eec4a4b26dd32e4c154c382cb8622cdfd2000725f227ca31b4d05ae62fcd61a662f3d85e31a6dfe40042b556eaa80ee67a86c9de28eb6b630c995e78de
|
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -26,11 +26,11 @@ And require it in your JavaScript manifest.
|
|
|
26
26
|
## Development
|
|
27
27
|
|
|
28
28
|
The `scrivito_content_browser` is using `nodejs` to compile the javascript files.
|
|
29
|
-
Before developing make sure you have both `nodejs` and `
|
|
29
|
+
Before developing make sure you have both `nodejs` and `yarn` installed, then:
|
|
30
30
|
|
|
31
31
|
cd scrivito_content_browser/js
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
yarn # load the dependencies
|
|
33
|
+
yarn run package
|
|
34
34
|
|
|
35
35
|
If you want to develop the `scrivito_content_browser`-gem locally (including it by path) you need to configure an `asset_host` in your rails application. Example `config/env/development.rb`:
|
|
36
36
|
|
|
@@ -47,14 +47,16 @@ and be sure that you have this options
|
|
|
47
47
|
|
|
48
48
|
After that start webpack dev server:
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
yarn start
|
|
51
51
|
|
|
52
52
|
## Run tests
|
|
53
|
+
Before run test you should compile latest sdk by rake task in root of rails_connector gem
|
|
54
|
+
rake test:content_browser:build_js_sdk
|
|
53
55
|
|
|
54
|
-
|
|
56
|
+
yarn test
|
|
55
57
|
|
|
56
58
|
# or for watching files
|
|
57
|
-
|
|
59
|
+
yarn run test:watch
|
|
58
60
|
|
|
59
61
|
## Changelog
|
|
60
62
|
|
|
@@ -62,7 +64,4 @@ After that start webpack dev server:
|
|
|
62
64
|
|
|
63
65
|
|
|
64
66
|
## License
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
This software can be used and modified under the LGPL-3.0. Please refer to
|
|
68
|
-
http://www.gnu.org/licenses/lgpl-3.0.html for the license text.
|
|
67
|
+
Javascript UI components for Scrivito, (c) 2016 by Infopark AG
|