-
Notifications
You must be signed in to change notification settings - Fork 0
/
acts_as_flickr.gemspec
25 lines (20 loc) · 1.07 KB
/
acts_as_flickr.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "acts_as_flickr/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "acts_as_flickr"
s.version = ActsAsFlickr::VERSION
s.authors = ["DragonStar Web Design (Steve Aquino)"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/DragonStarWebDesign/acts_as_flickr"
s.summary = "Allows ActiveRecord models to easily connect with Flickr API for photo hosting."
s.description = "ActsAsFlickr is a simple ActiveRecord extension that uses the flick_raw gem to " +
"connect with the Flickr API and host photos. Just add acts_as_flickr to your " +
"model, add a flickr_id and url field to your model, and upload away!"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 3.2.6"
s.add_dependency "flickraw", "~> 0.9.5"
s.add_development_dependency "sqlite3"
end