forked from thumblemonks/smurf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsmurf.gemspec
42 lines (40 loc) · 1.29 KB
/
smurf.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
Gem::Specification.new do |s|
s.name = "smurf"
s.summary = "Rails plugin to automatically minify JS and CSS when their bundles get cached"
s.description = "Rails plugin to automatically minify JS and CSS when their bundles get cached. Send in those patches!"
s.version = "1.0.0"
s.authors = ["Justin Knowlden"]
s.email = %w[[email protected]]
s.homepage = "http://github.com/thumblemonks/smurf"
s.has_rdoc = true
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
s.post_install_message = %q{Choosy Gargamels choose Thumble Monks.}
s.files = %w[
MIT-LICENSE
README.markdown
Rakefile
init.rb
install.rb
lib/smurf.rb
lib/smurf/javascript.rb
lib/smurf/stylesheet.rb
rails/init.rb
smurf.gemspec
uninstall.rb
]
s.test_files = %w[
test/rails/app/controllers/application.rb
test/rails/config/boot.rb
test/rails/config/database.yml
test/rails/config/environment.rb
test/rails/config/environments/test.rb
test/rails/config/routes.rb
test/rails/public/javascripts/cache/expected.js
test/rails/public/javascripts/testing.js
test/rails/public/stylesheets/bar.css
test/rails/public/stylesheets/cache/expected.css
test/rails/public/stylesheets/foo.css
test/smurf_test.rb
test/test_helper.rb
]
end