forked from rails/jquery-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery-rails.gemspec
25 lines (21 loc) · 931 Bytes
/
jquery-rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/jquery/rails/version', __FILE__)
Gem::Specification.new do |s|
s.name = "jquery-rails"
s.version = Jquery::Rails::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["André Arko"]
s.email = ["[email protected]"]
s.homepage = "http://rubygems.org/gems/jquery-rails"
s.summary = "Use jQuery with Rails 3"
s.description = "This gem provides jQuery and the jQuery-ujs driver for your Rails 3 application."
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "jquery-rails"
s.add_dependency "railties", "~> 3.0"
s.add_dependency "thor", "~> 0.14"
s.add_development_dependency "bundler", "~> 1.0.0"
s.add_development_dependency "rails", "~> 3.0"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
s.require_path = 'lib'
end