maileon 0.1.2 → 0.1.3
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 +4 -4
- data/.travis.yml +8 -3
- data/README.md +15 -4
- data/lib/maileon/version.rb +2 -2
- data/maileon.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cfd44081e192f8e558a6caefce0d0ea3c16c02af
|
4
|
+
data.tar.gz: 248f5486e0f89732ba2ffd2967fd7cc55e6f4f6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e48f3f651bf1b27640c22e765a05d597bc523d11cc7116036340ee3beb0f45c8152dcbf67cc5bd7bf0e7b2dcb9fba308499f9324c924324b931f3cee33e7fc96
|
7
|
+
data.tar.gz: 7b789cb54bed0ce5313a23a67e7d56aee88436f5f9c56e6aec794f8616f820ce7d314e3068872d47c8e5c47a944eca82e755925c65be0e4ad11648680640c802
|
data/.travis.yml
CHANGED
@@ -1,13 +1,18 @@
|
|
1
1
|
language: ruby
|
2
2
|
|
3
3
|
rvm:
|
4
|
-
- 2.2.
|
5
|
-
- 2.1.
|
4
|
+
- 2.2.3
|
5
|
+
- 2.1.6
|
6
6
|
- 2.0.0
|
7
7
|
|
8
|
+
branches:
|
9
|
+
only:
|
10
|
+
- master
|
11
|
+
- /^v\d\.\d.\d$/
|
12
|
+
|
8
13
|
notifications:
|
9
14
|
hipchat:
|
10
15
|
rooms:
|
11
16
|
secure: GoqI71OtEPqW7KGShriAIKWW+R8gqMe1sYaiq2YPPE/X3+WF5jrd/JCEUZLt19H3njp7bOSR9n26hwc8jaLmJDmep2HU9aktQgQ+bxbJfQo0DLVHXgwomrarQhzchR0GFrUwuXmBFgf1V6dJC0VD67qTevlptZADrhOFhhrG+Q4=
|
12
17
|
|
13
|
-
secure: AWOeq/24xxEV6FU7jMEiibAI3ESpYwYERTxTES0Z6Vn5GY1xJRWqZr6SP+oTc10Pkiee1RiZUFbyzPB4I8hr3G1Gj9XWi0P7LSy1DYYbuZxsQduBp8PQIqEn5Hm32L9xBGZLtF5IpazDGG3u5CsJz4iNOZH5xpVxze+LVg6hM5o=
|
18
|
+
secure: AWOeq/24xxEV6FU7jMEiibAI3ESpYwYERTxTES0Z6Vn5GY1xJRWqZr6SP+oTc10Pkiee1RiZUFbyzPB4I8hr3G1Gj9XWi0P7LSy1DYYbuZxsQduBp8PQIqEn5Hm32L9xBGZLtF5IpazDGG3u5CsJz4iNOZH5xpVxze+LVg6hM5o=
|
data/README.md
CHANGED
@@ -3,9 +3,9 @@
|
|
3
3
|
Ruby wrapper for Maileon email marketing software API.
|
4
4
|
|
5
5
|
- Supported Ruby versions:
|
6
|
-
- 2.2.
|
7
|
-
- 2.1.
|
8
|
-
- 2.0.0
|
6
|
+
- 2.2.2 (recommended)
|
7
|
+
- 2.1.6
|
8
|
+
- 2.0.0-p645
|
9
9
|
|
10
10
|
## Installation
|
11
11
|
|
@@ -77,9 +77,20 @@ maileon.delete_contact(attribs)
|
|
77
77
|
|
78
78
|
## Contributing
|
79
79
|
|
80
|
+
### Bug reports, suggestions
|
81
|
+
|
82
|
+
- File all your issues, feature requests [here](https://github.com/interactive-pioneers/maileon/issues)
|
83
|
+
- If filing a bug report, follow the convention of _Steps to reproduce_ / _What happens?_ / _What should happen?_
|
84
|
+
- __If you're a developer, write a failing test instead of a bug report__ and send a Pull Request
|
85
|
+
|
86
|
+
### Code
|
87
|
+
|
80
88
|
1. Fork it ( https://github.com/[my-github-username]/maileon/fork )
|
81
89
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
82
90
|
3. Develop your feature by concepts of [TDD](http://en.wikipedia.org/wiki/Test-driven_development). Run `guard` in parallel to automatically run your tests
|
83
91
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
84
92
|
4. Push to the branch (`git push origin my-new-feature`)
|
85
|
-
5. Create a new Pull Request
|
93
|
+
5. Create a new Pull Request
|
94
|
+
|
95
|
+
## Licence
|
96
|
+
Copyright © 2015 Interactive Pioneers GmbH. Licenced under [GPLv3](LICENSE).
|
data/lib/maileon/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
module Maileon
|
2
|
-
VERSION = "0.1.
|
3
|
-
end
|
2
|
+
VERSION = "0.1.3"
|
3
|
+
end
|
data/maileon.gemspec
CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.test_files = spec.files.grep(%r{^(spec)/})
|
20
20
|
spec.require_paths = ["lib"]
|
21
21
|
|
22
|
-
spec.add_runtime_dependency "excon", "~> 0.
|
22
|
+
spec.add_runtime_dependency "excon", "~> 0.45.4"
|
23
23
|
spec.add_runtime_dependency "json", "~> 1.8"
|
24
24
|
spec.add_development_dependency "bundler", "~> 1.6"
|
25
25
|
spec.add_development_dependency "rake", "~> 10.0"
|
@@ -33,4 +33,4 @@ Gem::Specification.new do |spec|
|
|
33
33
|
spec.add_development_dependency "webmock", "~> 1.20"
|
34
34
|
spec.add_development_dependency "sinatra", "~> 1.4"
|
35
35
|
spec.add_development_dependency "coveralls", "~> 0.7.11"
|
36
|
-
end
|
36
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: maileon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ain Tohvri
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: excon
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.45.4
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 0.45.4
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: json
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|