dart_trails 0.0.3 → 0.0.4
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/README.md +5 -7
- data/lib/dart_trails/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1f00e14d778aa4c085264d7f2e15b4b8d443975
|
|
4
|
+
data.tar.gz: 0856325763d1a5b1275ff4f9c3c2fdcb845a7d65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa81f71be3c40756160c0ecd87f97cbfe4ec2568176b2192de3867caed95041ae0f33a168b6d5f132783c34afa41a9207f1d8292caf10c5b4e650c509c20379b
|
|
7
|
+
data.tar.gz: b5b7a18310bf61d47b9077e21d7286aa9d68514b496ea482de712e5869a16c469a97be7dc87a2a2be52fa17e14c1f0c9d624f81e3f31e2a9e0bd08e15a8f2f4c
|
data/README.md
CHANGED
|
@@ -2,22 +2,20 @@ DartTrails
|
|
|
2
2
|
============
|
|
3
3
|
|
|
4
4
|
DartTrails is an engine for Sprockets making use of the `dart2js` command-line
|
|
5
|
-
compiler which is currently very slow (
|
|
5
|
+
compiler which is currently very slow (not an issue when assets are precompiled).
|
|
6
6
|
|
|
7
7
|
Usage
|
|
8
8
|
-------
|
|
9
9
|
|
|
10
10
|
Add to your `Gemfile` either ...
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
gem 'dart_trails'
|
|
14
|
-
end
|
|
12
|
+
gem 'dart_trails'
|
|
15
13
|
|
|
16
14
|
... or using a local development tree ...
|
|
17
15
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
gem 'dart_trails', :path => '/path/to/dart_trails'
|
|
17
|
+
|
|
18
|
+
After running `bundle`, any Dart assets with the extension `.js.dart` should be compiled to JavaScript automatically.
|
|
21
19
|
|
|
22
20
|
|
|
23
21
|
Configuration
|
data/lib/dart_trails/version.rb
CHANGED