Sha256: b8e40df8eafa848e4f16daa278ac1bb5d6c8afe538d23d4c7cf945dc4a599189
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'notifiable/sender/version' Gem::Specification.new do |spec| spec.name = "notifiable-sender" spec.version = Notifiable::Sender::VERSION spec.authors = ["Matt Brooke-Smith"] spec.email = ["matt@futureworkshops.com"] spec.summary = %q{Connect to Notifiable's notifications API.} spec.homepage = "https://github.com/FutureWorkshops/notifiable-sender" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency 'rest-client' spec.add_dependency 'api-auth', '~> 2.1' spec.add_development_dependency "bundler", "~> 1.12" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "webmock", "~> 2.3.1" spec.add_development_dependency "byebug" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
notifiable-sender-0.2.0 | notifiable-sender.gemspec |
notifiable-sender-0.1.0 | notifiable-sender.gemspec |