Skip to content
This repository has been archived by the owner on Dec 9, 2017. It is now read-only.

Commit

Permalink
updated README, moving to version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyredding committed Feb 14, 2010
1 parent 133f440 commit 835eeb5
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 4 deletions.
6 changes: 4 additions & 2 deletions README.rdoc
Expand Up @@ -22,7 +22,7 @@ and use as follows:

# optional - use as necessary
Rack::Sprockets.configure do |config|
config.compress = true
config.compress = :yui
# other configs ...
end

Expand Down Expand Up @@ -76,7 +76,9 @@ These are similar to sprockets options and, where applicable, map directly to a
- Whether or not to cache the concatenation output to a corresponding static file.

* .*compress* [false]
- Whether or not to apply compression to the concatenation output - uses YUI Compressor if available or will remove extraneous whitespace if not.
- Whether or not to apply compression to the concatenation output
- :*yui* - use YUI Compressor (gem install yui-compressor)
- :*whitespace* - remove extraneous whitespace only.

== Links

Expand Down
4 changes: 2 additions & 2 deletions lib/rack/sprockets/version.rb
@@ -1,8 +1,8 @@
module RackSprockets
module Version

MAJOR = 0
MINOR = 1
MAJOR = 1
MINOR = 0
TINY = 0

def self.to_s # :nodoc:
Expand Down
46 changes: 46 additions & 0 deletions rack-sprockets.gemspec
@@ -0,0 +1,46 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{rack-sprockets}
s.version = "1.0.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Kelly Redding"]
s.date = %q{2010-02-14}
s.email = %q{kelly@kelredd.com}
s.extra_rdoc_files = ["README.rdoc"]
s.files = ["README.rdoc", "Rakefile", "lib/rack", "lib/rack/sprockets", "lib/rack/sprockets/base.rb", "lib/rack/sprockets/config.rb", "lib/rack/sprockets/options.rb", "lib/rack/sprockets/request.rb", "lib/rack/sprockets/response.rb", "lib/rack/sprockets/source.rb", "lib/rack/sprockets/version.rb", "lib/rack/sprockets.rb"]
s.homepage = %q{http://github.com/kelredd/rack-sprockets}
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{Sprockets javascript preprocessing for Rack apps.}

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<shoulda>, [">= 2.10.0"])
s.add_development_dependency(%q<sinatra>, [">= 0.9.4"])
s.add_development_dependency(%q<rack-test>, [">= 0.5.3"])
s.add_development_dependency(%q<webrat>, [">= 0.6.0"])
s.add_runtime_dependency(%q<rack>, [">= 0.4"])
s.add_runtime_dependency(%q<sprockets>, [">= 1.0.0"])
else
s.add_dependency(%q<shoulda>, [">= 2.10.0"])
s.add_dependency(%q<sinatra>, [">= 0.9.4"])
s.add_dependency(%q<rack-test>, [">= 0.5.3"])
s.add_dependency(%q<webrat>, [">= 0.6.0"])
s.add_dependency(%q<rack>, [">= 0.4"])
s.add_dependency(%q<sprockets>, [">= 1.0.0"])
end
else
s.add_dependency(%q<shoulda>, [">= 2.10.0"])
s.add_dependency(%q<sinatra>, [">= 0.9.4"])
s.add_dependency(%q<rack-test>, [">= 0.5.3"])
s.add_dependency(%q<webrat>, [">= 0.6.0"])
s.add_dependency(%q<rack>, [">= 0.4"])
s.add_dependency(%q<sprockets>, [">= 1.0.0"])
end
end

0 comments on commit 835eeb5

Please sign in to comment.