pigeon-ruby 0.2.0 → 0.3.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 +4 -4
- data/README.md +6 -6
- data/lib/{pigeon.rb → pigeon-ruby.rb} +3 -3
- data/lib/{pigeon → pigeon-ruby}/client.rb +0 -0
- data/lib/{pigeon → pigeon-ruby}/config.rb +0 -0
- data/lib/pigeon-ruby/version.rb +3 -0
- data/{pigeon.gemspec → pigeon-ruby.gemspec} +1 -1
- metadata +7 -7
- data/lib/pigeon/version.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9d8c3e62062db48742f7b4a3f148debea06050fe8af703753705aa36e603071
|
4
|
+
data.tar.gz: 71e8481e81735cac2d8a19f1bec2bd044a2c6855b6918a2662d30e2b5da72973
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23cde5bdcb19d3de99059bfe7c30fdf9fdfaf5fddd0c0552a0212b124e7f92bed0284b975887c9a786fe7721db11e6e8e68276cb5fae4f442d237c4adb278596
|
7
|
+
data.tar.gz: f5815197b8c3a2a4e0766edf0b18ab24f93d8c2f2b48a2e54305baf78425b0a76d93705e27be760f21ec3ac823ed8402517b7dd8a22f614bcf31da7b577ac332
|
data/README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# Pigeon
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
Pigeon SDK for Ruby
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
@@ -22,7 +20,9 @@ Or install it yourself as:
|
|
22
20
|
|
23
21
|
## Usage
|
24
22
|
|
25
|
-
|
23
|
+
```
|
24
|
+
Pigeon.deliver('message-identifier', to: 'user@example.com')
|
25
|
+
```
|
26
26
|
|
27
27
|
## Development
|
28
28
|
|
@@ -32,7 +32,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
32
32
|
|
33
33
|
## Contributing
|
34
34
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/pigeon. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/pigeon-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
36
|
|
37
37
|
## License
|
38
38
|
|
@@ -40,4 +40,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
40
40
|
|
41
41
|
## Code of Conduct
|
42
42
|
|
43
|
-
Everyone interacting in the Pigeon project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/pigeon/blob/master/CODE_OF_CONDUCT.md).
|
43
|
+
Everyone interacting in the Pigeon project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/pigeon-ruby/blob/master/CODE_OF_CONDUCT.md).
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pigeon-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pradeep Kumar
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-01-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -84,11 +84,11 @@ files:
|
|
84
84
|
- Rakefile
|
85
85
|
- bin/console
|
86
86
|
- bin/setup
|
87
|
-
- lib/pigeon.rb
|
88
|
-
- lib/pigeon/client.rb
|
89
|
-
- lib/pigeon/config.rb
|
90
|
-
- lib/pigeon/version.rb
|
91
|
-
- pigeon.gemspec
|
87
|
+
- lib/pigeon-ruby.rb
|
88
|
+
- lib/pigeon-ruby/client.rb
|
89
|
+
- lib/pigeon-ruby/config.rb
|
90
|
+
- lib/pigeon-ruby/version.rb
|
91
|
+
- pigeon-ruby.gemspec
|
92
92
|
homepage: https://pigeonapp.io
|
93
93
|
licenses:
|
94
94
|
- MIT
|
data/lib/pigeon/version.rb
DELETED