express_pigeon 2.0.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5d4529096a26d41d08c853dcaafb4ba9fd579d27
4
- data.tar.gz: cf8018873258c56cf0e3392ef1fecad95c0256d0
3
+ metadata.gz: 4fff3380b88a30f5b07051dc8706bd011766c76c
4
+ data.tar.gz: 7054faf25d532a29f68e927b73572b45b3baa033
5
5
  SHA512:
6
- metadata.gz: 895176253299095c7e0d2f408234f1a6002d1e3a9889beabdb2eef6fa1d36a07432e1d4b3904d612641710e3af886a23750c2f69a66f7b7a731178aedce8cf05
7
- data.tar.gz: 66a1417eea7aed5532ae7567ebef194c445f6f04ff7da4b65e2285801c6323da6213ad33b28ed6bb65cd83cd656c594974891c9f212a5a0ac8010c726113debb
6
+ metadata.gz: c0c5c02f47cbd144e218ddbd0c3dfdf429aeba130b3c5c204b14c42cf8a9774945359f0c3b2585c0ee00b9aea952cfff88268feff14625984f2240382631361d
7
+ data.tar.gz: ac4bd28632697812bb4135f425314bf63931464c7d253aea717e6ce939ab552c639592b7a2354112f69e286d6f152b98ea81200926b635e93a40881fbc57062b
checksums.yaml.gz.sig CHANGED
Binary file
data/.gitignore CHANGED
@@ -17,6 +17,6 @@
17
17
  /log/*
18
18
  /pkg/
19
19
  /spec/reports/
20
- /tmp/
21
20
  Gemfile.lock
22
21
  mkmf.log
22
+ /tmp/contacts.csv
data/Gemfile CHANGED
@@ -19,5 +19,5 @@ group :development, :test do
19
19
  end
20
20
 
21
21
  group :test do
22
- gem 'simplecov', require: :false
22
+ gem 'codeclimate-test-reporter'
23
23
  end
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
- This is a complete rewrite of the `expresspigeon-ruby` gem using an entirely
2
- different approach and effectively none of the original code. I've forked and
3
- created a derivative work from the original work by Igor Polevoy hence the new
4
- copyright on the license.
1
+ [![Build Status](https://semaphoreapp.com/api/v1/projects/3d4266af-fb45-45c5-bba9-0c5e825f3e84/316403/badge.png)](https://semaphoreapp.com/just3ws/express_pigeon)
2
+ [![Code Climate](https://codeclimate.com/github/just3ws/express_pigeon/badges/gpa.svg)](https://codeclimate.com/github/just3ws/express_pigeon)
3
+ [![Test Coverage](https://codeclimate.com/github/just3ws/express_pigeon/badges/coverage.svg)](https://codeclimate.com/github/just3ws/express_pigeon)
4
+
5
+ Another Ruby client for ExpressPigeon.
@@ -7,13 +7,13 @@ Gem::Specification.new do |spec|
7
7
  spec.name = 'express_pigeon'
8
8
  spec.version = ExpressPigeon::VERSION
9
9
  # Inspired by Igor Polevoy but a total re-write of the expresspigeon-ruby RubyGem
10
- spec.authors = %w(Mike Hall)
10
+ spec.authors = %w(Mike\ Hall)
11
11
  spec.email = %w(mike@just3ws.com)
12
12
  spec.description = <<-EOS
13
13
  (Another) ExpressPigeon Ruby API for sending transactional messages,
14
14
  manipulating lists, contacts and more.
15
15
  EOS
16
- spec.summary = 'ExpressPigeon API Ruby Wrapper'
16
+ spec.summary = '(Another) ExpressPigeon API Ruby Wrapper'
17
17
  spec.homepage = 'https://github.com/just3ws/express_pigeon'
18
18
  spec.license = 'MIT'
19
19
  spec.extra_rdoc_files = %w(LICENSE README.md)
@@ -1,3 +1,3 @@
1
1
  module ExpressPigeon
2
- VERSION = '2.0.1'.freeze
2
+ VERSION = '2.0.2'.freeze
3
3
  end
data/spec/spec_helper.rb CHANGED
@@ -1,6 +1,9 @@
1
1
  require 'dotenv'
2
2
  Dotenv.load
3
3
 
4
+ require 'codeclimate-test-reporter'
5
+ CodeClimate::TestReporter.start
6
+
4
7
  require 'express_pigeon'
5
8
 
6
9
  # PIGEON ||= ExpressPigeon::API
data/tmp/.keep ADDED
File without changes
data.tar.gz.sig CHANGED
@@ -1,2 +1,2 @@
1
- K��bj��-�-�e�x�D�:3_�dQ�[�iY$t�ڧSP�vJ�˧F�zG���O"$V�����
2
- ?��zH�?tX��U��8��yfݼI�gp���|��~ ���w�U�^��R���H��u���If�����C#9�m0�#mՁ�� �g�c��L�"��=�'@�g�$�Y�y�qS ��/�A]% Pe9��2��;:���9Tw���qߠ *�ʿr;'�l���t�J�nVd)>:���� �6�e�
1
+ z�E��]`W
2
+ N��ž9�~�0���- v
metadata CHANGED
@@ -1,11 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: express_pigeon
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
- - Mike
8
- - Hall
7
+ - Mike Hall
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain:
@@ -183,6 +182,7 @@ files:
183
182
  - spec/fixtures/contacts.csv
184
183
  - spec/fixtures/contacts.csv.zip
185
184
  - spec/spec_helper.rb
185
+ - tmp/.keep
186
186
  homepage: https://github.com/just3ws/express_pigeon
187
187
  licenses:
188
188
  - MIT
@@ -206,7 +206,7 @@ rubyforge_project:
206
206
  rubygems_version: 2.4.5
207
207
  signing_key:
208
208
  specification_version: 4
209
- summary: ExpressPigeon API Ruby Wrapper
209
+ summary: "(Another) ExpressPigeon API Ruby Wrapper"
210
210
  test_files:
211
211
  - spec/express_pigeon/api/campaigns_spec.rb
212
212
  - spec/express_pigeon/api/contacts_spec.rb
metadata.gz.sig CHANGED
Binary file