-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepertoire-assets.gemspec
56 lines (47 loc) · 1.82 KB
/
repertoire-assets.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
require File.expand_path("../lib/repertoire-assets/version", __FILE__)
Gem::Specification.new do |s|
s.name = "repertoire-assets"
s.version = Repertoire::Assets::VERSION
s.authors = ["Christopher York"]
s.email = "[email protected]"
s.date = "2010-07-28"
s.summary = "Hyperstudio Asset framework"
s.description = "Repertoire Assets javascript and css distribution framework"
s.homepage = "http://github.com/repertoire/repertoire-assets"
s.files = [
".gitignore",
"FAQ",
"INSTALL",
"LICENSE",
"README",
"Rakefile",
"lib/repertoire-assets.rb",
"lib/repertoire-assets/exceptions.rb",
"lib/repertoire-assets/manifest.rb",
"lib/repertoire-assets/processor.rb",
"lib/repertoire-assets/provides.rb",
"lib/repertoire-assets/railtie.rb",
"lib/repertoire-assets/version.rb",
"lib/repertoire-assets/tasks.rake",
"repertoire-assets.gemspec",
"vendor/yuicompressor-2.4.2.jar"
]
s.extra_rdoc_files = [
"LICENSE",
"README",
"TODO"
]
s.post_install_message = %q{ ********************************************************************************
One of your gems uses Repertoire asset support, which provides access to
javascript, stylesheets and other assets distributed via Rubygems.
You should turn on precaching and compression in your production environment,
so gem assets are served by your web server. e.g. for Rails 3.0:
<app>/config/environments/production.rb:
* config.repertoire_assets.compress = true
See the repertoire-assets README for other frameworks or details.
********************************************************************************
}
s.require_paths = ["lib"]
s.rubygems_version = '1.3.7'
s.add_dependency('rack', '>= 1.0.1')
end