Sha256: 397fbf5db6ff99ee56520de7faf92d965feee0b671b0eb48ddf4fbc1ce5523e8
Contents?: true
Size: 1.92 KB
Versions: 4
Compression:
Stored size: 1.92 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'dragonfly/version' Gem::Specification.new do |spec| spec.name = "dragonfly" spec.version = Dragonfly::VERSION spec.authors = ["Mark Evans"] spec.email = "mark@new-bamboo.co.uk" spec.description = "Dragonfly is a framework that enables on-the-fly processing for any content type.\n It is especially suited to image handling. Its uses range from image thumbnails to standard attachments to on-demand text generation." spec.summary = "Ideal gem for handling attachments in Rails, Sinatra and Rack applications." spec.homepage = "http://github.com/markevans/dragonfly" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.extra_rdoc_files = [ "LICENSE", "README.md" ] spec.add_runtime_dependency("rack", [">= 0"]) spec.add_runtime_dependency("multi_json", ["~> 1.0"]) spec.add_development_dependency("rspec", ["~> 2.5"]) spec.add_development_dependency("webmock") if RUBY_VERSION < '1.9.3' spec.add_development_dependency("activemodel", '~> 3.2') else spec.add_development_dependency("activemodel") end if RUBY_PLATFORM == "java" spec.add_development_dependency("jruby-openssl") end spec.post_install_message =<<-POST_INSTALL_MESSAGE ================================================================================ You've installed Dragonfly hooray!! Quite a few things have changed since version 0.9. Please check the documentation at <http://markevans.github.io/dragonfly> and see upgrade notes at <https://github.com/markevans/dragonfly/wiki/Upgrading-from-0.9-to-1.0> if upgrading. ================================================================================ POST_INSTALL_MESSAGE end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
dragonfly-1.0.5 | dragonfly.gemspec |
dragonfly-1.0.4 | dragonfly.gemspec |
dragonfly-1.0.3 | dragonfly.gemspec |
dragonfly-1.0.2 | dragonfly.gemspec |