forked from aaronchi/jrails
-
Notifications
You must be signed in to change notification settings - Fork 2
/
jrails.gemspec
42 lines (36 loc) · 1007 Bytes
/
jrails.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Gem::Specification.new do |s|
s.name = "jrails"
s.version = "0.4.2"
s.authors = ["aaronchi", "Patrick Hurley"]
s.email = "[email protected]"
s.homepage = "http://ennerchi.com/projects/jrails"
s.platform = Gem::Platform::RUBY
s.summary = "jRails is a drop-in jQuery replacement for the Rails Prototype/script.aculo.us helpers."
s.description = "jRails is a drop-in jQuery replacement for Prototype/script.aculo.us on Rails. " +
"Using jRails, you can get all of the same default Rails helpers for javascript " +
"functionality using the lighter jQuery library."
#files = IO.read("Manifest.txt").split
files = %W[
CHANGELOG
Manifest.txt
README
install.rb
init.rb
bin
bin/jrails
javascripts
javascripts/jquery-ui.js
javascripts/jquery.js
javascripts/jrails.js
javascripts/sources
javascripts/sources/jrails.js
lib
lib/jrails.rb
tasks/
tasks/jrails.rake
rails/init.rb
]
s.files = files
s.executables = ['jrails']
s.has_rdoc = false
end