README.md in conjur-asset-ui-1.3.0 vs README.md in conjur-asset-ui-1.3.1
- old
+ new
@@ -37,5 +37,39 @@
And run the UI:
```
conjur ui
```
+
+## Development
+
+### System Dependencies
+
+* rvm with installed Ruby
+* npm
+
+### Setup
+
+Create a gemset with [rvm](http://rvm.io):
+
+```sh-session
+$ rvm gemset use conjur-asset-ui --create
+$ bundle install
+```
+
+Run `rake prepare:deps`, and `rake assets:build` to build js and css assets.
+
+### Running the project
+
+Open 2 terminal tabs.
+
+In one, run `rake assets:watch`. In the other run `conjur ui`.
+
+gulp will rebuild assets as needed when files change.
+
+### Testing
+
+```sh-session
+$ rake features
+# or run only features marked with wip tag
+$ rake features:wip
+```