Skip to content

Commit

Permalink
Prepare for 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rymai committed Sep 17, 2013
1 parent 6b16b82 commit 0c2f04f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
1 change: 0 additions & 1 deletion Gemfile
Expand Up @@ -7,7 +7,6 @@ gem 'rake'
group :development do
gem 'ruby_gntp'
gem 'guard-rspec'
gem 'pimpmychangelog'
end

# The test group will be
Expand Down
5 changes: 2 additions & 3 deletions guard-compass.gemspec
@@ -1,19 +1,18 @@
# -*- encoding: utf-8 -*-
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)
require 'guard/compass/version'

Gem::Specification.new do |s|
s.name = 'guard-compass'
s.version = Guard::CompassVersion::VERSION
s.platform = Gem::Platform::RUBY
s.license = 'MIT'
s.authors = ['Olivier Amblet', 'Rémy Coutable']
s.email = ['remy@rymai.me']
s.homepage = 'http://rubygems.org/gems/guard-compass'
s.summary = 'Guard plugin for Compass'
s.description = 'Guard::Compass automatically rebuilds scss|sass files when a modification occurs taking in account your compass configuration.'

s.add_runtime_dependency 'guard', '~> 2.0'
s.add_runtime_dependency 'guard', '2.0.0.pre.2'
s.add_runtime_dependency 'compass', '>= 0.10.5'

s.add_development_dependency 'bundler'
Expand Down
4 changes: 3 additions & 1 deletion lib/guard/compass/version.rb
@@ -1,5 +1,7 @@
module Guard
module CompassVersion
VERSION = '0.0.8'

VERSION = '1.0.0'

end
end
8 changes: 4 additions & 4 deletions spec/guard/compass_spec.rb
Expand Up @@ -23,7 +23,7 @@
end

it "might be initialized with options" do
g = Guard::Compass.new([], project_path: 'test', configuration_file: 'test_also')
g = Guard::Compass.new(project_path: 'test', configuration_file: 'test_also')
g.options[:project_path].should eq 'test'
g.options[:configuration_file].should eq 'test_also'
end
Expand Down Expand Up @@ -188,7 +188,7 @@
describe "with a bad configuration file parameter" do
before do
create_fixture(:custom_config_file)
@guard = Guard::Compass.new([], configuration_file: 'invalid.rb')
@guard = Guard::Compass.new(configuration_file: 'invalid.rb')
end

after do
Expand Down Expand Up @@ -229,7 +229,7 @@
describe "in customized project" do
before do
create_fixture :custom_config_file
@guard = Guard::Compass.new([], project_path: "#{TMP_PATH}/custom_config_file", configuration_file: 'another_config_location/config.rb')
@guard = Guard::Compass.new(project_path: "#{TMP_PATH}/custom_config_file", configuration_file: 'another_config_location/config.rb')
end

after do
Expand All @@ -248,7 +248,7 @@
describe "with relative return in working_directory" do
before do
create_fixture :custom_config_file_2
@guard = Guard::Compass.new([], project_path: "..", configuration_file: 'another_config_location/config.rb')
@guard = Guard::Compass.new(project_path: "..", configuration_file: 'another_config_location/config.rb')
end

after do
Expand Down

0 comments on commit 0c2f04f

Please sign in to comment.