atlas_assets 0.0.10 → 0.0.11
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.
- data/README.md +1 -1
- data/lib/atlas_assets/version.rb +1 -1
- data/lib/atlas_assets.rb +2 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -17,7 +17,7 @@ To use in a new Rails application, add the gem to your Gemfile, and add the foll
|
|
17
17
|
*= require atlas_assets
|
18
18
|
```
|
19
19
|
|
20
|
-
Along with all the CSS and JS widgets, it will include our base bundle of JS libraries (`JQuery`, `underscore.js`, `backbone.js`, etc)
|
20
|
+
Along with all the CSS and JS widgets, it will include our base bundle of JS libraries (`JQuery`, `underscore.js`, `backbone.js`, etc). It will also set up a number of JS namespaces `window.classes`, `window.app`, `window.events` and `window.constants`, so make sure to include the JS manifest before any of your JS code.
|
21
21
|
|
22
22
|
Adding new styles
|
23
23
|
-----------------
|
data/lib/atlas_assets/version.rb
CHANGED
data/lib/atlas_assets.rb
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
require 'atlas_assets/engine'
|
1
|
+
require 'atlas_assets/engine'
|
2
|
+
require 'handlebars_assets'
|