-
Notifications
You must be signed in to change notification settings - Fork 4
/
twitter_web_intents.gemspec
34 lines (28 loc) · 1.38 KB
/
twitter_web_intents.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
34
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'twitter_web_intents/version'
Gem::Specification.new do |spec|
spec.name = "twitter_web_intents"
spec.version = TwitterWebIntents::VERSION
spec.authors = ["Richard Hollis"]
spec.email = ["[email protected]"]
spec.description = %q{Twitter Web Intent URLs}
spec.summary = %q{Provides simple helper methods that return Twitter Web Intent URLs}
spec.homepage = "https://github.com/richhollis/twitter_web_intents"
spec.license = "MIT"
spec.files = %w(LICENSE.txt README.md Rakefile twitter_web_intents.gemspec)
spec.files += Dir.glob("lib/**/*.rb")
spec.files += Dir.glob("spec/**/*")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.test_files = Dir.glob('spec/**/*')
spec.add_runtime_dependency 'activesupport', '>= 3','< 5'
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake", "~> 10"
spec.add_development_dependency "rspec", "~> 3"
spec.add_development_dependency "appraisal", "~> 1"
spec.add_development_dependency "simplecov", "~> 0" if RUBY_VERSION >= '1.9'
spec.add_development_dependency "coveralls", "~> 0"
end