forked from dino115/oh-my-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoh-my-embed.gemspec
33 lines (27 loc) · 1.26 KB
/
oh-my-embed.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
26
27
28
29
30
31
32
33
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'oh_my_embed/version'
Gem::Specification.new do |spec|
spec.name = 'oh-my-embed'
spec.version = OhMyEmbed::VERSION
spec.authors = ['Axel Wahlen']
spec.email = ['axelwahlen@gmail.com']
spec.summary = 'Simple gem to interact with oauth providers'
spec.description = 'Simple gem to interact with oauth providers, for more informations see spec at http://www.oembed.com'
spec.homepage = 'https://www.mixxt.de'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 1.9.2'
spec.add_runtime_dependency 'activesupport', '>= 3.2.21'
spec.add_development_dependency 'bundler', '~> 1.12'
spec.add_development_dependency 'rake', '~> 11.1.2'
spec.add_development_dependency 'rspec', '~> 3.4.0'
spec.add_development_dependency 'webmock', '~> 2.0.1'
spec.add_development_dependency 'vcr', '~> 3.0.1'
spec.add_development_dependency 'simplecov', '~> 0.11.2'
spec.add_development_dependency 'codeclimate-test-reporter', '~> 0.5.0'
end