mailerlite 1.4.0 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 984ea2887eeda9a034ae249e35fc8f5fd12fa7cf
4
- data.tar.gz: aa93215262aaf8ea65205e3e70a22ed9d0bd0a04
2
+ SHA256:
3
+ metadata.gz: cd23dc2ec23c3c43f69100a4364552863c129120aba799d958469498fc496955
4
+ data.tar.gz: 859243ce1df88f9ebb72510c60c581c840428f27e9d9520a728955f01325f0fa
5
5
  SHA512:
6
- metadata.gz: 1b8245eb4d856dad8c867aac19f58207352e5a3d78fc959726b4faf05be924c71f047475836631d22b10c023e249bb599f2359223b13198ee203e15d92c7db34
7
- data.tar.gz: 989d14aa457ad1f4055a73882ecb3fc7aa4d5d54c584035ec32bb25e1c5681f73790ea844fadc38d7784f75733b74ce8b97e2caafcaa6dfb178d67a28a3ce942
6
+ metadata.gz: ab2d5eab31659e262abbfd75702bc6d2b2f75d62c596c0d2649cdcfea28ecfc552fd556538333463e2a0d8ba3483641b1de488e94fa69975bfdbddb7e4c585fe
7
+ data.tar.gz: 7b1b9ddfcce2ad70adce7bcbc954b1bada7c6da4d21eb4c21457156dddafc072dd793b4ae6cf484313d7ea1ab5914400afac960a1f27bddaa26074e8b32a1e0c
@@ -1,39 +1,39 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.0
2
+ TargetRubyVersion: 2.1
3
3
  Include:
4
4
  - '**/Rakefile'
5
5
  - '**/Gemfile'
6
6
 
7
- Style/Documentation:
8
- Enabled: false
9
-
10
- Style/AlignParameters:
7
+ Layout/AlignParameters:
11
8
  Enabled: true
12
9
  EnforcedStyle: with_fixed_indentation
13
10
 
14
- Style/MultilineOperationIndentation:
11
+ Layout/MultilineOperationIndentation:
15
12
  Enabled: true
16
13
  EnforcedStyle: indented
17
14
 
18
- Style/MultilineMethodCallIndentation:
15
+ Layout/MultilineMethodCallIndentation:
19
16
  Enabled: true
20
17
  EnforcedStyle: indented
21
18
 
22
- Style/CaseIndentation:
19
+ Layout/CaseIndentation:
23
20
  Enabled: true
24
21
  EnforcedStyle: end
25
22
 
26
- Lint/EndAlignment:
23
+ Layout/EndAlignment:
27
24
  Enabled: true
28
25
  EnforcedStyleAlignWith: variable
29
26
 
30
27
  Style/FrozenStringLiteralComment:
31
28
  Enabled: false
32
29
 
30
+ Style/Documentation:
31
+ Enabled: false
32
+
33
33
  Style/DoubleNegation:
34
34
  Exclude:
35
35
  - 'lib/mailerlite/utils.rb'
36
36
 
37
37
  Metrics/BlockLength:
38
- ExcludedMethods:
39
- - 'describe'
38
+ Exclude:
39
+ - 'spec/**/*_spec.rb'
@@ -1,23 +1,36 @@
1
1
  sudo: false
2
-
3
- before_install:
4
- - gem install bundler
5
-
6
2
  bundler_args: --without development
7
3
 
8
- after_success:
9
- - bundle exec codeclimate-test-reporter
4
+ cache:
5
+ bundler: true
10
6
 
11
- language: ruby
7
+ env:
8
+ global:
9
+ - CC_TEST_REPORTER_ID=1da21a01a5e29b3624aa81523fe36983a2b8d785f18046de30c17e1b6da1563a
12
10
 
11
+ language: ruby
13
12
  rvm:
14
- - 2.0.0
15
13
  - 2.1.0
16
14
  - 2.2.0
17
15
  - 2.3.0
18
16
  - 2.4.0
17
+ - 2.5.0
19
18
  - ruby-head
20
19
 
20
+ before_install:
21
+ - gem update --system
22
+
23
+ before_script:
24
+ - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
25
+ - chmod +x ./cc-test-reporter
26
+ - ./cc-test-reporter before-build
27
+
28
+ script:
29
+ - bundle exec rspec
30
+
31
+ after_script:
32
+ - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
33
+
21
34
  matrix:
22
35
  allow_failures:
23
36
  - rvm: ruby-head
data/Gemfile CHANGED
@@ -1,8 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  group :development do
4
- gem 'guard-rspec', '~> 4.7'
5
- gem 'rubocop', '~> 0.48'
4
+ gem 'rubocop', '~> 0.53'
6
5
  end
7
6
 
8
7
  group :development, :test do
@@ -10,12 +9,10 @@ group :development, :test do
10
9
  end
11
10
 
12
11
  group :test do
13
- gem 'codeclimate-test-reporter', '~> 1.0', require: false
14
- gem 'coveralls', '~> 0.8', require: false
15
12
  gem 'rake' # For Travis CI
16
- gem 'rspec', '~> 3.5'
17
- gem 'simplecov', '~> 0.14', require: false
18
- gem 'webmock', '~> 2.3'
13
+ gem 'rspec', '~> 3.7'
14
+ gem 'simplecov', '~> 0.15', require: false
15
+ gem 'webmock', '~> 3.3'
19
16
  end
20
17
 
21
18
  gemspec
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2017 Justas Palumickas
3
+ Copyright (c) 2018 Justas Palumickas
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  A Ruby gem which helps to communicate with [MailerLite][mailerlite] API.
4
4
 
5
- [![Gem Version](http://img.shields.io/gem/v/mailerlite.svg?style=flat-square)][rubygems]
6
- [![Build Status](http://img.shields.io/travis/jpalumickas/mailerlite-ruby.svg?style=flat-square)][travis]
7
- [![Dependency Status](http://img.shields.io/gemnasium/jpalumickas/mailerlite-ruby.svg?style=flat-square)][gemnasium]
8
- [![Coverage Status](http://img.shields.io/coveralls/jpalumickas/mailerlite-ruby/master.svg?style=flat-square)][coveralls]
9
- [![Code Climate](http://img.shields.io/codeclimate/github/jpalumickas/mailerlite-ruby.svg?style=flat-square)][codeclimate]
5
+ [![Gem Version](https://img.shields.io/gem/v/mailerlite.svg?style=flat-square)][rubygems]
6
+ [![Build Status](https://img.shields.io/travis/jpalumickas/mailerlite-ruby.svg?style=flat-square)][travis]
7
+ [![Dependency Status](https://img.shields.io/gemnasium/jpalumickas/mailerlite-ruby.svg?style=flat-square)][gemnasium]
8
+ [![Code Climate](https://img.shields.io/codeclimate/maintainability/jpalumickas/mailerlite-ruby.svg?style=flat-square)][codeclimate]
9
+ [![Test Coverage](https://img.shields.io/codeclimate/c/jpalumickas/mailerlite-ruby.svg?style=flat-square)][codeclimate_coverage]
10
10
 
11
11
  ## Installation
12
12
 
@@ -62,20 +62,20 @@ See more documentation in [examples][examples] directory.
62
62
  This library aims to support and is [tested against][travis] the following Ruby
63
63
  implementations:
64
64
 
65
- * Ruby 2.0.0
66
65
  * Ruby 2.1.0
67
66
  * Ruby 2.2.0
68
67
  * Ruby 2.3.0
69
68
  * Ruby 2.4.0
69
+ * Ruby 2.5.0
70
70
 
71
71
  ## Copyright
72
- Copyright (c) 2017 Justas Palumickas. See [LICENSE][license] for details.
72
+ Copyright (c) 2018 Justas Palumickas. See [LICENSE][license] for details.
73
73
 
74
74
  [rubygems]: https://rubygems.org/gems/mailerlite
75
- [travis]: http://travis-ci.org/jpalumickas/mailerlite-ruby
75
+ [travis]: https://travis-ci.org/jpalumickas/mailerlite-ruby
76
76
  [gemnasium]: https://gemnasium.com/jpalumickas/mailerlite-ruby
77
- [coveralls]: https://coveralls.io/r/jpalumickas/mailerlite-ruby
78
77
  [codeclimate]: https://codeclimate.com/github/jpalumickas/mailerlite-ruby
78
+ [codeclimate_coverage]: https://codeclimate.com/github/jpalumickas/mailerlite-ruby/test_coverage
79
79
 
80
80
  [license]: https://raw.githubusercontent.com/jpalumickas/mailerlite-ruby/master/LICENSE
81
81
  [create_a_campaign]: https://raw.githubusercontent.com/jpalumickas/mailerlite-ruby/master/examples/create_campaign.md
@@ -3,6 +3,7 @@
3
3
  ## Documentation
4
4
 
5
5
  * [Authentication](authentication.md)
6
+ * [Account](account.md)
6
7
  * [Campaigns](campaigns.md)
7
8
  * [Fields](fields.md)
8
9
  * [Groups](groups.md)
@@ -0,0 +1,13 @@
1
+ # Account
2
+
3
+ ## Get account information
4
+
5
+ ```ruby
6
+ client.account
7
+ ```
8
+
9
+ ## Get account stats
10
+
11
+ ```ruby
12
+ client.stats
13
+ ```
@@ -1,6 +1,7 @@
1
1
  require 'mailerlite/connection'
2
2
  require 'mailerlite/configuration'
3
3
 
4
+ require 'mailerlite/clients/account'
4
5
  require 'mailerlite/clients/campaigns'
5
6
  require 'mailerlite/clients/fields'
6
7
  require 'mailerlite/clients/groups'
@@ -10,6 +11,7 @@ require 'mailerlite/clients/webhooks'
10
11
  module MailerLite
11
12
  # Wrapper class for all actions.
12
13
  class Client
14
+ include MailerLite::Clients::Account
13
15
  include MailerLite::Clients::Campaigns
14
16
  include MailerLite::Clients::Fields
15
17
  include MailerLite::Clients::Groups
@@ -0,0 +1,25 @@
1
+ module MailerLite
2
+ module Clients
3
+ # MailerLite Account
4
+ module Account
5
+ # Get account information.
6
+ #
7
+ # @see https://developers.mailerlite.com/v2/reference#account
8
+ #
9
+ # @return [Hash] Response from API.
10
+ def account
11
+ result = connection.get('me')
12
+ result && result.account
13
+ end
14
+
15
+ # Get account information.
16
+ #
17
+ # @see https://developers.mailerlite.com/v2/reference#stats
18
+ #
19
+ # @return [Hash] Response from API.
20
+ def stats
21
+ connection.get('stats')
22
+ end
23
+ end
24
+ end
25
+ end
@@ -1,4 +1,4 @@
1
1
  module MailerLite
2
2
  # @return [String] Version number.
3
- VERSION = '1.4.0'.freeze
3
+ VERSION = '1.5.0'.freeze
4
4
  end
@@ -1,6 +1,4 @@
1
- # coding: utf-8
2
-
3
- lib = File.expand_path('../lib', __FILE__)
1
+ lib = File.expand_path('lib', __dir__)
4
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
3
  require 'mailerlite/version'
6
4
 
@@ -23,6 +21,7 @@ Gem::Specification.new do |spec|
23
21
  spec.bindir = 'exe'
24
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
23
  spec.require_paths = ['lib']
24
+ spec.required_ruby_version = '>= 2.1.0'
26
25
 
27
26
  spec.add_dependency 'faraday', '~> 0.10'
28
27
  spec.add_dependency 'faraday_middleware', '~> 0.10'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mailerlite
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justas Palumickas
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-10-20 00:00:00.000000000 Z
11
+ date: 2018-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -100,6 +100,7 @@ files:
100
100
  - bin/console
101
101
  - bin/setup
102
102
  - examples/README.md
103
+ - examples/account.md
103
104
  - examples/authentication.md
104
105
  - examples/campaigns.md
105
106
  - examples/create_campaign.md
@@ -109,6 +110,7 @@ files:
109
110
  - examples/webhooks.md
110
111
  - lib/mailerlite.rb
111
112
  - lib/mailerlite/client.rb
113
+ - lib/mailerlite/clients/account.rb
112
114
  - lib/mailerlite/clients/campaigns.rb
113
115
  - lib/mailerlite/clients/fields.rb
114
116
  - lib/mailerlite/clients/groups.rb
@@ -136,7 +138,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
136
138
  requirements:
137
139
  - - ">="
138
140
  - !ruby/object:Gem::Version
139
- version: '0'
141
+ version: 2.1.0
140
142
  required_rubygems_version: !ruby/object:Gem::Requirement
141
143
  requirements:
142
144
  - - ">="
@@ -144,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
144
146
  version: '0'
145
147
  requirements: []
146
148
  rubyforge_project:
147
- rubygems_version: 2.6.14
149
+ rubygems_version: 2.7.6
148
150
  signing_key:
149
151
  specification_version: 4
150
152
  summary: Ruby wrapper for MailerLite API v2