diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..3be9c3c --- /dev/null +++ b/Gemfile @@ -0,0 +1,2 @@ +source "https://rubygems.org" +gemspec diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..7a1177b --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,21 @@ +PATH + remote: . + specs: + postman (0.0.1) + moonrope-client (>= 1.0.2, < 1.1) + +GEM + remote: https://rubygems.org/ + specs: + json (1.8.3) + moonrope-client (1.0.2) + json (~> 1.8, >= 1.8.0) + +PLATFORMS + ruby + +DEPENDENCIES + postman! + +BUNDLED WITH + 1.13.0 diff --git a/postman-ruby.gemspec b/postman-ruby.gemspec new file mode 100644 index 0000000..8b80f20 --- /dev/null +++ b/postman-ruby.gemspec @@ -0,0 +1,15 @@ +require File.expand_path('../lib/postman/version', __FILE__) + +Gem::Specification.new do |s| + s.name = "postman-ruby" + s.description = %q{Ruby library for the Postman email platform} + s.summary = s.description + s.homepage = "https://postman.prmail.vn" + s.version = Postal::VERSION + s.files = Dir.glob("{lib}/**/*") + s.require_paths = ["lib"] + s.authors = ["Adam Cooke", "Nikkel"] + s.email = ["me@adamcooke.io", "nikkel@prmail.vn"] + s.licenses = ['MIT'] + s.add_dependency "moonrope-client", ">= 1.0.2", "< 1.1" +end