forked from fresh2nd/PicasaWebAlbums
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPicasaWebAlbums.gemspec
22 lines (21 loc) · 931 Bytes
/
PicasaWebAlbums.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "PicasaWebAlbums/version"
Gem::Specification.new do |s|
s.name = "picasawebalbums"
s.version = PicasaWebAlbums::VERSION
s.authors = ["Martin Kraft"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/mkraft/PicasaWebAlbums"
s.summary = %q{Provides programmatic access to Picasa Web Albums data.}
s.description = %q{A simple way to retrieve albums, photos, tags, etc. from
Picasa Web Albums.}
s.license = 'MIT'
s.rubyforge_project = "picasawebalbums"
s.required_ruby_version = '>= 1.9.3'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "pry"
end