photograph.gemspec in photograph-0.0.4 vs photograph.gemspec in photograph-0.0.6
- old
+ new
@@ -1,28 +1,26 @@
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/photograph/version', __FILE__)
Gem::Specification.new do |gem|
- gem.authors = ["JH. Chabran"]
+ gem.authors = ["Jean Hadrien Chabran"]
gem.email = ["jh@chabran.fr"]
- gem.description = %q{Webservice that screenshots any url}
- gem.summary = %q{Webservice that screenshots any url}
+ gem.description = %q{Small library to take screenshots of web pages}
+ gem.summary = %q{Small library to take screenshots of web pages}
gem.homepage = "https://github.com/jhchabran/photograph"
+ gem.license = "MIT"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "photograph"
gem.require_paths = ["lib"]
gem.version = Photograph::VERSION
gem.add_dependency 'poltergeist'
gem.add_dependency 'mini_magick'
- gem.add_dependency 'sinatra'
- gem.add_dependency 'sinatra-contrib'
- gem.add_dependency 'thin'
gem.add_development_dependency 'rspec', '~> 2.14'
gem.add_development_dependency 'rake'
- gem.post_install_message = 'DEPRECATION: Artist#shoot! cannot be used without a block anymore. Please check your code, thank you.'
+ gem.post_install_message = 'DEPRECATION: Photograph::Artist#new :wait option had been renamed to :sleep. :wait will be ignored in the next version.'
end