chriseppstein-compass 0.4.0 → 0.4.1

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.0
1
+ 0.4.1
data/compass.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{compass}
3
- s.version = "0.4.0"
3
+ s.version = "0.4.1"
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
6
6
  s.authors = ["Chris Eppstein"]
data/lib/compass/exec.rb CHANGED
@@ -2,7 +2,6 @@ require 'optparse'
2
2
  require 'rubygems'
3
3
  require 'haml'
4
4
  require File.join(Compass.lib_directory, 'compass', 'logger')
5
- require File.join(Compass.lib_directory, 'compass', 'configuration')
6
5
  require File.join(Compass.lib_directory, 'compass', 'errors')
7
6
  require File.join(Compass.lib_directory, 'compass', 'actions')
8
7
 
data/lib/compass.rb CHANGED
@@ -31,7 +31,9 @@ module Compass
31
31
  module_function :base_directory, :lib_directory
32
32
  end
33
33
 
34
+ require File.join(File.dirname(__FILE__), 'compass', 'configuration')
34
35
  require File.join(File.dirname(__FILE__), 'compass', 'frameworks')
36
+
35
37
  # make sure we're running inside Merb
36
38
  require File.join(File.dirname(__FILE__), 'compass', 'merb') if defined?(Merb::Plugins)
37
39
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chriseppstein-compass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Eppstein