sisyphus-rails/sisyphus-rails.gemspec
Devon Noonan e8cfc01f5b Added excludeFields for built in fields (like authenticity token).
Added requirements for jquery rather than dependencies.
Added non-minified version of sisyphus with fix for object === null check when looking to see if browser is msie.
2012-10-02 16:52:07 -04:00

25 lines
1007 B
Ruby

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sisyphus-rails/version'
Gem::Specification.new do |gem|
gem.name = "sisyphus-rails"
gem.version = Sisyphus::Rails::VERSION
gem.authors = ["Devon Noonan"]
gem.email = ["devon.noonan@gmail.com"]
gem.description = %q{Include gmail like auto-save on your forms}
gem.summary = %q{Using Sisyphus.js and jStorage.js the gem overrides the default rails form builder to add an auto-save feature to your forms.}
gem.homepage = "https://www.github.com/dnoonan/sisyphus-rails"
gem.files = `git ls-files`.split($/)
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.requirements << 'requires jQuery 1.4+ to be included before Sisyphus'
gem.requirements << 'requires jQuery 1.8+ to be included if you require jStorage'
gem.add_dependency "rails", ">= 3.1.0"
end