vhx-quartz 0.1.0 → 0.2.0

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: e0f69d38e6a8983a6bfa1c0ccd7cd4c6144578f0
4
- data.tar.gz: 3328ddc84feeaadecf6ce2000bf55e54caad083f
3
+ metadata.gz: c6646a1157c2892e381e505887ca953635f888c8
4
+ data.tar.gz: 9a539333c1c51c2b0dfdab0f38d3a01bc96c58e8
5
5
  SHA512:
6
- metadata.gz: 7ee0f09847e860a203cb5dbc8f9da75a0d6e8cb8763347ff5aff130be0adffccf32656f9c5be47bcc3fd35aa0f1c8778aa002521f8bc54b142d0d3e4bdf21667
7
- data.tar.gz: 297ddfb29357c8cf7f9399a863bed2740b98203d0f0a6f5cd1f49b1e39fbe348ec789dae597c1a97d55f9d17593400eff80c49c16cf153d2d21fb3f26f0dafbe
6
+ metadata.gz: d8911cdd887c3993cd48cb67929c0f140e843a045139ec689995b59b2eddba74fa2fcf93484123e5f0323362a442d51fb0d01e603beaba11e7fa601ed0f98521
7
+ data.tar.gz: b4d7b02bb29b02c94d49a040cec512748808288954ada77afbff67c5e136201bbd215fe17dfae51e948a27973f67ed08a208413125de688ed5c638062a4bfbb3
data/README.md CHANGED
@@ -22,8 +22,10 @@ Or install it yourself as:
22
22
 
23
23
  ## Usage
24
24
 
25
- TODO: Write usage instructions here
26
-
25
+ Add the gem to your `application.css` file with:
26
+ ```ruby
27
+ //= require vhx-quartz
28
+ ```
27
29
  ## Development
28
30
 
29
31
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -1,5 +1,5 @@
1
1
  module Vhx
2
2
  module Quartz
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
data/lib/vhx/quartz.rb CHANGED
@@ -1,8 +1,12 @@
1
1
  require "vhx/quartz/version"
2
2
 
3
+ if !defined?(Rails)
4
+ require 'Rails'
5
+ end
6
+
3
7
  module Vhx
4
- module Rails
5
- class Engine < ::Rails::Engine
6
- end
7
- end
8
+ module Rails
9
+ class Engine < ::Rails::Engine
10
+ end
11
+ end
8
12
  end