jquery-rails.gemspec 853 B

1234567891011121314151617181920212223
  1. # -*- encoding: utf-8 -*-
  2. require File.expand_path('../lib/jquery/rails/version', __FILE__)
  3. Gem::Specification.new do |s|
  4. s.name = "jquery-rails"
  5. s.version = Jquery::Rails::VERSION
  6. s.platform = Gem::Platform::RUBY
  7. s.authors = ["André Arko"]
  8. s.email = ["andre@arko.net"]
  9. s.homepage = "http://rubygems.org/gems/jquery-rails"
  10. s.summary = "Use jQuery with Rails 3"
  11. s.description = "This gem provides jQuery and the jQuery-ujs driver for your Rails 3 application."
  12. s.required_rubygems_version = ">= 1.3.6"
  13. s.rubyforge_project = "jquery-rails"
  14. s.add_dependency "railties", ">= 3.2.0", "< 5.0"
  15. s.add_dependency "thor", "~> 0.14"
  16. s.files = `git ls-files`.split("\n")
  17. s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
  18. s.require_path = 'lib'
  19. end