Sha256: 29e57d078b93fea39c39fcb117a87190a53dec51ddcce84292364cafffdf6c14
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) Gem::Specification.new do |s| s.name = "movie_searcher" s.version = "0.1.6" s.platform = Gem::Platform::RUBY s.authors = ["Linus Oleander", "Jon Maddox"] s.email = ["linus@oleander.nu", "jon@mustacheinc.com"] s.homepage = "http://github.com/oleander/MovieSearcher" s.summary = %q{IMDB client using the IMDB API that their iPhone app uses} s.description = %q{IMDB client using the IMDB API that their iPhone app uses. It can also figure out what movie you are looking for just by looking at the release name of the movie} 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_dependency("httparty") s.add_dependency("levenshteinish") s.add_dependency("mimer_plus") s.add_dependency("spot") s.add_dependency("rest-client") s.add_development_dependency("rspec") end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
movie_searcher-0.1.6 | movie_searcher.gemspec |