File: omniauth-tumblr.gemspec

package info (click to toggle)
ruby-omniauth-tumblr 1.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 112 kB
  • sloc: ruby: 105; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 1,024 bytes parent folder | download | duplicates (3)
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
26
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "omniauth-tumblr/version"

Gem::Specification.new do |gem|
  gem.name        = "omniauth-tumblr"
  gem.version     = Omniauth::Tumblr::VERSION
  gem.authors     = ["Jamie Wilkinson"]
  gem.email       = ["jamie@jamiedubs.com"]
  gem.homepage    = "https://github.com/jamiew/omniauth-tumblr"
  gem.description = %q{OmniAuth strategy for Tumblr}
  gem.summary     = gem.description

  gem.files         = `git ls-files`.split("\n")
  gem.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  gem.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  gem.require_paths = ["lib"]

  gem.add_runtime_dependency 'omniauth-oauth', '~> 1.0'
  gem.add_runtime_dependency 'multi_json'

  gem.add_development_dependency 'rspec' #, "~> 2.9"
  gem.add_development_dependency 'rake' #, '~> 0.9'

  gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if gem.respond_to? :required_rubygems_version=
end