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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 368c742f5efb9d2bd399683b6b0a1dd63474fc68
4
- data.tar.gz: 827a4bd6e3bf82cceede5a870122df948433eef5
3
+ metadata.gz: c8cda3b9991f7db5a72153bee7168e5379b312f8
4
+ data.tar.gz: 9ce473a4551526f21f666cdc414a0bbfb545843c
5
5
  SHA512:
6
- metadata.gz: 0811abb6434da6c907a2fda67447a9c1bde36759756d38767d660f2e46099db3a0cc6664856ddb888f4d58c37dcb894af6ff5ff6204fdd116e6f430b6c801b90
7
- data.tar.gz: 40aca6adc8c32337f3761eadd54973d893a58c8d87777570639eb1d4dcf1145d95e9199048c4fc6268df5e4294c202291dfaf4d1532beb13631a0dca71c5cd9f
6
+ metadata.gz: 3952b39e3a73d9d36351d5e2a1109d45f71bdae1af0eb808ceff75da274a87e63c0cc7c3158cf206b4731ba9ebfb6fc5595ae714381fb96afdfa5fd56ca3e8a1
7
+ data.tar.gz: 794ec8eec4a4b26dd32e4c154c382cb8622cdfd2000725f227ca31b4d05ae62fcd61a662f3d85e31a6dfe40042b556eaa80ee67a86c9de28eb6b630c995e78de
data/LICENSE CHANGED
@@ -1,4 +1 @@
1
- Copyright (c) 2009 - 2014 Infopark AG (http://www.infopark.com)
2
-
3
- This software can be used and modified under the LGPL-3.0. Please refer to
4
- http://www.gnu.org/licenses/lgpl-3.0.html for the license text.
1
+ Javascript UI components for Scrivito, (c) 2016 by Infopark AG
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 `npm` installed, then:
29
+ Before developing make sure you have both `nodejs` and `yarn` installed, then:
30
30
 
31
31
  cd scrivito_content_browser/js
32
- npm install # load the dependencies - if it fails, make sure you're using the latest nodejs
33
- npm run package
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
- npm start
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
- npm test
56
+ yarn test
55
57
 
56
58
  # or for watching files
57
- npm run test:watch
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
- Copyright (c) 2009 - 2015 Infopark AG (http://www.infopark.com)
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