scrivito_content_browser 0.30.0 → 0.40.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 52810c7ccc8b134e260c8b8927fe684ac7f70cb3
4
- data.tar.gz: bfc861840e592cc1f36dae563b83e5d3fbf791d4
3
+ metadata.gz: ec881923ddad4af7f21b938ec597f8072875dd2e
4
+ data.tar.gz: 42b4b6404a062a013e13b715c2bafc3876f54c3c
5
5
  SHA512:
6
- metadata.gz: fde0ff3f506ad65d7f82ae50a24c7ab986eb512144585ed27f0e54f22372c722b00c916fabe208bb53b10e02450d354e5d224b665a9d42a5603de9ccb5452beb
7
- data.tar.gz: ad5a3efd13d5e71301e901102b502c3051567a07da8461a3406e806a0e5e821ed4a7bf4b89ef5f8e89d6612908d89b8ac5aea9c46b56cee6b27d1e0084669fef
6
+ metadata.gz: 71749d3caae6113c31d367a7483373b77107b94b21238ec4bc6591787569223aa0c1b9e92c74cb31fc5e7a1cc5732d517aba7d9d45da95cd7c70d8d72488deba
7
+ data.tar.gz: faeb6916314e6e0faf7d80d1599276c8c47984ae6224eb5adabc0bcef56d3717faa7cd56639c4eb0ff6b731a61990b8ba76a177cb54ff1c800b22d4c3fd1c941
data/README.md CHANGED
@@ -23,6 +23,19 @@ And require it in your JavaScript manifest.
23
23
 
24
24
  //= require scrivito_content_browser
25
25
 
26
+ ## Development
27
+
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:
30
+
31
+ cd scrivito_content_browser/js
32
+ npm install # load the dependencies - if it fails, make sure you're using the latest nodejs
33
+ sudo npm install -g grunt-cli # install the grunt command
34
+ grunt build # build the JS files - if it fails, check for name clashes with the node package
35
+
36
+ If you want to develop the `scrivito_content_browser`-gem locally (including it by path):
37
+
38
+ grunt watch # compiles the source files for the gem whenever you change one
26
39
 
27
40
  ## Changelog
28
41