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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ff6cf3e6d9382bdf710eb6a7441c5f4ee79a5b5c
4
- data.tar.gz: 0412ca0cbf663ffc3f9991899252c75e9434b46f
3
+ metadata.gz: f1f00e14d778aa4c085264d7f2e15b4b8d443975
4
+ data.tar.gz: 0856325763d1a5b1275ff4f9c3c2fdcb845a7d65
5
5
  SHA512:
6
- metadata.gz: f27f17e5dc5ef70702c4784d5c0239e4c22866c6119061833489d2033d4ce8d4e805b313efc24981dda58a31c1e11d8889856e245347bdf638a61d50510d3902
7
- data.tar.gz: bb8f42e25ecddf5ef05208e3ffd5c3b2b39fc7bd18837bfa8e9c6596dd4d7d2fb1f2e9c26e2bb59f6a35e98b364448dc2fcb241405b08d9c9ed0c052de78509f
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 (so be sure to precompile assets).
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
- group :assets do
13
- gem 'dart_trails'
14
- end
12
+ gem 'dart_trails'
15
13
 
16
14
  ... or using a local development tree ...
17
15
 
18
- group :assets do
19
- gem 'dart_trails', path: '/path/to/dart_trails'
20
- end
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
@@ -1,5 +1,5 @@
1
1
  module DartTrails
2
2
 
3
- VERSION = '0.0.3'
3
+ VERSION = '0.0.4'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dart_trails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kelsey Judson