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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1351036b96744972d50aada4b59100b7828609ef4802d42e19478ede10960c26
4
- data.tar.gz: a05be5f457b343285edd229b3cac085a4849f514d38b9be2973116e4e3989b1f
3
+ metadata.gz: d9d8c3e62062db48742f7b4a3f148debea06050fe8af703753705aa36e603071
4
+ data.tar.gz: 71e8481e81735cac2d8a19f1bec2bd044a2c6855b6918a2662d30e2b5da72973
5
5
  SHA512:
6
- metadata.gz: e541f9fc6acd1c889f97ebf55b89928e2d19cd4684d13d2ba14f2dfed881aa79e6cd0988d6e648fe6f0e3be3ae29ec659b8e3389b09ba2642328c8777b52dcb6
7
- data.tar.gz: f3d9f725a67fa4a3172b99a6bf405195bb0e4a0c0e0283d9d035e03c72f3ed38d9dd63188e2d273f577db2109ebaf447a728245bfb4499022b4d3ebdc7b69cad
6
+ metadata.gz: 23cde5bdcb19d3de99059bfe7c30fdf9fdfaf5fddd0c0552a0212b124e7f92bed0284b975887c9a786fe7721db11e6e8e68276cb5fae4f442d237c4adb278596
7
+ data.tar.gz: f5815197b8c3a2a4e0766edf0b18ab24f93d8c2f2b48a2e54305baf78425b0a76d93705e27be760f21ec3ac823ed8402517b7dd8a22f614bcf31da7b577ac332
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # Pigeon
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/pigeon`. To experiment with that code, run `bin/console` for an interactive prompt.
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
- TODO: Write usage instructions here
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).
@@ -1,6 +1,6 @@
1
- require 'pigeon/version'
2
- require 'pigeon/config'
3
- require 'pigeon/client'
1
+ require 'pigeon-ruby/version'
2
+ require 'pigeon-ruby/config'
3
+ require 'pigeon-ruby/client'
4
4
 
5
5
  module Pigeon
6
6
  @clients = Hash.new
File without changes
File without changes
@@ -0,0 +1,3 @@
1
+ module Pigeon
2
+ VERSION = '0.3.0'
3
+ end
@@ -1,7 +1,7 @@
1
1
 
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'pigeon/version'
4
+ require 'pigeon-ruby/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'pigeon-ruby'
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.2.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: 2018-10-23 00:00:00.000000000 Z
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
@@ -1,3 +0,0 @@
1
- module Pigeon
2
- VERSION = '0.2.0'
3
- end