active_assets.gemspec in active_assets-0.1.0 vs active_assets.gemspec in active_assets-0.2.0.rc
- old
+ new
@@ -1,22 +1,27 @@
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "active_assets"
- s.version = '0.1.0'
+ s.version = '0.2.0.rc'
s.platform = Gem::Platform::RUBY
s.authors = ["Sam Woodard"]
s.email = ["sam@wildfireapp.com"]
- s.homepage = ""
+ s.homepage = "http://github.com/shwoodard/active_assets"
s.summary = %q{A Railtie that provides a full asset management system, including support for development and deployment.}
- s.description = %q{A Railtie that provides a full asset management system, including support for development and deployment. Currently it is designed to manage javascripts and stylesheets but will handle image sprites in the future.}
+ s.description = %q{A Railtie that provides a full asset management system, including support for development and deployment. It is comprised of two libraries, ActiveSprites and ActiveExpansions. ActiveSprites generates sprites and their corresponding stylesheet from dsl definition. ActiveExpansions manages javascript and css, including concatenation support for deployment, using Rails expansions plus a dsl.}
- s.rubyforge_project = "rails-assets"
+ s.rubyforge_project = "activeassets"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
- s.add_development_dependency "rails", "3.0.3"
+ s.add_runtime_dependency 'rmagick'
+
+ s.add_development_dependency "sinatra", "~>1.1.2"
+ s.add_development_dependency "thin", "~>1.2.7"
+ s.add_development_dependency "rails", "~>3.0.3"
s.add_development_dependency "test-unit", "> 2.0"
- s.add_development_dependency "ZenTest"
+ s.add_development_dependency "capybara", "~>0.4.1.1"
+ s.add_development_dependency "ZenTest", "~>4.4.2"
end