forked from espen/bcms_thumbnail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbcms_thumbnail.gemspec
23 lines (23 loc) · 923 Bytes
/
bcms_thumbnail.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SPEC = Gem::Specification.new do |spec|
spec.name = "bcms_thumbnail"
spec.rubyforge_project = spec.name
spec.version = "1.0.8"
spec.summary = "A thumbnailing view helper module for BrowserCMS"
spec.author = "Dan Collis-Puro"
spec.email = "[email protected]"
spec.homepage = "http://github.com/djcp/bcms_thumbnail"
spec.files += Dir["app/**/*"]
spec.files += Dir["db/migrate/*.rb"]
spec.files -= Dir["db/migrate/*_browsercms_*.rb"]
spec.files -= Dir["db/migrate/*_load_seed_data.rb"]
spec.files += Dir["lib/bcms_thumbnail.rb"]
spec.files += Dir["lib/bcms_thumbnail/*"]
spec.files += Dir["rails/init.rb"]
spec.files += Dir["lib/tasks/*.rake"]
spec.files += Dir["public/bcms/thumbnail/**/*"]
spec.has_rdoc = true
spec.extra_rdoc_files = ["README"]
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
spec.add_dependency("mini_magick", [">= 1.2.5"])
end
end