Skip to content

Commit

Permalink
version bump 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mirisuzanne committed Apr 25, 2011
1 parent 6e73db5 commit d5b2c7e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 17 deletions.
6 changes: 1 addition & 5 deletions Manifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,8 @@ Rakefile
VERSION
compass-susy-plugin.gemspec
lib/susy.rb
lib/susy/compass_plugin.rb
sass/_susy.scss
sass/susy/_grid.scss
sass/susy/_reset.scss
sass/susy/_susy.scss
sass/susy/_utils.scss
templates/project/_base.scss
templates/project/grid.png
templates/project/manifest.rb
templates/project/screen.scss
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ require 'sass'

begin
require 'echoe'

Echoe.new('compass-susy-plugin', open('VERSION').read) do |p|
p.summary = "A responsive grid system plugin for Compass."
p.description = "Responsive web design with grids the quick and reliable way."
p.url = "http://susy.oddbird.net/"
p.author = "Eric Meyer"
p.email = "eric@oddbird.net"
p.dependencies = ["compass >=0.11.beta.3"]
p.dependencies = ["compass >=0.11.1"]
p.has_rdoc = false
end

rescue LoadError => boom
puts "You are missing a dependency required for meta-operations on this gem."
puts "#{boom.to_s.capitalize}."
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.beta.3
0.9
16 changes: 8 additions & 8 deletions compass-susy-plugin.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,31 @@

Gem::Specification.new do |s|
s.name = %q{compass-susy-plugin}
s.version = "0.9.beta.3"
s.version = "0.9"

s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["Eric Meyer"]
s.date = %q{2011-03-16}
s.date = %q{2011-04-25}
s.description = %q{Responsive web design with grids the quick and reliable way.}
s.email = %q{eric@oddbird.net}
s.extra_rdoc_files = ["LICENSE.txt", "README.mkdn", "lib/susy.rb", "lib/susy/compass_plugin.rb"]
s.files = ["LICENSE.txt", "Manifest", "README.mkdn", "Rakefile", "VERSION", "compass-susy-plugin.gemspec", "lib/susy.rb", "lib/susy/compass_plugin.rb", "sass/susy/_grid.scss", "sass/susy/_reset.scss", "sass/susy/_susy.scss", "sass/susy/_utils.scss", "templates/project/_base.scss", "templates/project/grid.png", "templates/project/manifest.rb", "templates/project/screen.scss"]
s.extra_rdoc_files = ["LICENSE.txt", "README.mkdn", "lib/susy.rb"]
s.files = ["LICENSE.txt", "Manifest", "README.mkdn", "Rakefile", "VERSION", "compass-susy-plugin.gemspec", "lib/susy.rb", "sass/_susy.scss", "sass/susy/_grid.scss", "templates/project/_base.scss", "templates/project/manifest.rb", "templates/project/screen.scss"]
s.homepage = %q{http://susy.oddbird.net/}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Compass-susy-plugin", "--main", "README.mkdn"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{compass-susy-plugin}
s.rubygems_version = %q{1.5.2}
s.rubygems_version = %q{1.7.2}
s.summary = %q{A responsive grid system plugin for Compass.}

if s.respond_to? :specification_version then
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<compass>, [">= 0.11.beta.3"])
s.add_runtime_dependency(%q<compass>, [">= 0.11.1"])
else
s.add_dependency(%q<compass>, [">= 0.11.beta.3"])
s.add_dependency(%q<compass>, [">= 0.11.1"])
end
else
s.add_dependency(%q<compass>, [">= 0.11.beta.3"])
s.add_dependency(%q<compass>, [">= 0.11.1"])
end
end

0 comments on commit d5b2c7e

Please sign in to comment.