gsass 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: 9297cdb0da082f5c939d12be804013aa9dd23d91
4
- data.tar.gz: 31c99b2b3b6816d35546e147cebc8def9fc289d2
3
+ metadata.gz: a6111af022ff6fb53c1711f1b6e52db2462cd4b2
4
+ data.tar.gz: 3cf1dc392bc5b6ff10106ea3c88ab6439247fdcd
5
5
  SHA512:
6
- metadata.gz: 2e5cb03f204339511a05928eba5e1e08cf54e141d2ca680cb018372af2e844402c4109f63d37aad471bc6e1dd40f67c5d806e30b3370b79c2a34410a132250aa
7
- data.tar.gz: 1a163bd7d47fab094a45509a179c9922cb679cde6469b44fe2c208fec15d34c3dd7bb870c53fc80996f449881e63b40e26862c11725a87f1b60af6a4187021bb
6
+ metadata.gz: 632322c2a39c01b15d182d5461475f9c26d1e90c5dd489a9d441b2619ea3542fe23f3123a6eed2c5f28f975c8ffb070eec3b7cbeebf3a5d13cc1d1d8abd08fc7
7
+ data.tar.gz: 8dbd4104e758d461f7013c62fbdb4109fc841ce362b7c7054f18c2daa19c399215354e260d78bb15ecce1173cb75f7090c57349d75c11962fc85bf9bf476c42c
@@ -1,3 +1,7 @@
1
+ ## 0.0.4 (2013-09-09)
2
+
3
+ * make non-rails compatible (e.g. middleman)
4
+
1
5
  ## 0.0.3 (2013-09-09)
2
6
 
3
7
  * fix svg inlining
@@ -7,7 +7,11 @@ unless defined?(Sass)
7
7
  end
8
8
 
9
9
  module Gsass
10
- class Engine < ::Rails::Engine
11
- require 'gsass/engine'
10
+ if defined?(Rails) && defined?(Rails::Engine)
11
+ class Engine < ::Rails::Engine
12
+ require 'gsass/engine'
13
+ end
14
+ else
15
+ Sass.load_paths << File.expand_path("../../app/assets/stylesheets", __FILE__)
12
16
  end
13
17
  end
@@ -1,3 +1,3 @@
1
1
  module Gsass
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gsass
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
  - Sebastian de Castelberg