developerreply 0.0.1 → 0.0.2

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
  SHA1:
3
- metadata.gz: 04298150d520fff66cbb73a76de10843dcc70a41
4
- data.tar.gz: b753fd4cd272b59528c0ac50ed2e6296480de585
3
+ metadata.gz: 9214f4fe5d0a7098934c415360dbe571ce3328a8
4
+ data.tar.gz: 261715231d1d1fdd6e528e59b50d881751b6f4a2
5
5
  SHA512:
6
- metadata.gz: ab225192a54a2cd28447ec9b36a75546c14172ebe34f97e23ca516d5bf0a3640d63adf11ae9baed8cbaabdc756ab93c69ab2db2a0b774f9d10fbda2d49d3054d
7
- data.tar.gz: b1b2ef51111f3df20584b97e42311561cae41d6b138f1b176235afd1549981cdde4d970027b1d463aa7913a0de5d09e424bd24a0bcecf5269c7901e63063e1bc
6
+ metadata.gz: 3781a92263ccfd330b32e69768abb3ac13e02bdb2634e4935b5b661036ebfdb47d0c868276caf8deaac78db5b4049ed5d2764c8b682f49d5df068eb55bc6a2f9
7
+ data.tar.gz: 6b262d6ad9cb5871930314a8581ed6d309582f6b0acb09c6ad7600bc2bc1ce2221cea824c8ef9f509d44f0828e4824c2284d58f80de6db792f6dbcaa41fa9543
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ![](https://raw.githubusercontent.com/scottmotte/developerreply/master/developerreply.jpg)
4
4
 
5
- Rubygem for adding hosts & urls to SendGrid's Parse Incoming Email settings (/developer/reply).
5
+ Programmatically add hosts & url settings to SendGrid's parse incoming email settings (/developer/reply).
6
6
 
7
7
  ## Usage
8
8
 
@@ -12,6 +12,37 @@ Developerreply.password = "your_sendgrid_password"
12
12
  Developerreply.create({hostname: "domain.com", url: "http://webhook.com/wherever"})
13
13
  ```
14
14
 
15
+ This will programmatically add to your list of [parse incoming email settings](https://sendgrid.com/developer/reply). Example:
16
+
17
+ ![](https://raw.githubusercontent.com/scottmotte/developerreply/master/developerreply-0.png)
18
+
19
+ ## Installation
20
+
21
+ Add this to your application's Gemfile.
22
+
23
+ ```
24
+ gem 'developerreply'
25
+ ```
26
+
27
+ And then execute.
28
+
29
+ ```
30
+ bundle
31
+ ```
32
+
33
+ Or install yourself as:
34
+
35
+ ```
36
+ gem install developerreply
37
+ ```
38
+
39
+ Then in your application initialize the gem.
40
+
41
+ ```
42
+ Developerreply.username = "your_sendgrid_username"
43
+ Developerreply.password = "your_sendgrid_password"
44
+ ```
45
+
15
46
  ## Development
16
47
 
17
48
  ```
@@ -20,3 +51,12 @@ export SENDGRID_USERNAME=yourusername
20
51
  export SENDGRID_PASSWORD=yourpassword
21
52
  bin/rspec
22
53
  ```
54
+
55
+ ## Publish to RubyGems.org
56
+
57
+ You first need to request access from [scottmotte](http://github.com/scottmotte).
58
+
59
+ ```
60
+ gem build developerreply.gemspec
61
+ gem push developerreply-0.0.1.gem
62
+ ```
Binary file
@@ -8,8 +8,8 @@ Gem::Specification.new do |gem|
8
8
  gem.version = Developerreply::VERSION
9
9
  gem.authors = ["scottmotte"]
10
10
  gem.email = ["mot@mot.la"]
11
- gem.description = %q{Ruby bindings for the SendGrid /developer/reply call.}
12
- gem.summary = %q{Ruby bindings for the SendGrid /developer/reply call.}
11
+ gem.description = %q{Programmatically add hosts & url settings to SendGrid's parse incoming email settings (/developer/reply).}
12
+ gem.summary = %q{Programmatically add hosts & url settings to SendGrid's parse incoming email settings (/developer/reply).}
13
13
  gem.homepage = "http://github.com/scottmotte/developerreply"
14
14
 
15
15
  gem.add_dependency "faraday", "~> 0.8.9"
@@ -1,3 +1,3 @@
1
1
  module Developerreply
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -9,7 +9,7 @@ describe Developerreply do
9
9
  subject.password = nil
10
10
  end
11
11
 
12
- it { expect(subject::VERSION).to eq("0.0.1") }
12
+ it { expect(subject::VERSION).to eq("0.0.2") }
13
13
  end
14
14
 
15
15
  describe "setting values" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: developerreply
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - scottmotte
@@ -94,7 +94,8 @@ dependencies:
94
94
  - - '>='
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
- description: Ruby bindings for the SendGrid /developer/reply call.
97
+ description: Programmatically add hosts & url settings to SendGrid's parse incoming
98
+ email settings (/developer/reply).
98
99
  email:
99
100
  - mot@mot.la
100
101
  executables: []
@@ -107,6 +108,7 @@ files:
107
108
  - LICENSE.txt
108
109
  - README.md
109
110
  - Rakefile
111
+ - developerreply-0.png
110
112
  - developerreply.gemspec
111
113
  - developerreply.jpg
112
114
  - lib/developerreply.rb
@@ -135,7 +137,8 @@ rubyforge_project:
135
137
  rubygems_version: 2.4.1
136
138
  signing_key:
137
139
  specification_version: 4
138
- summary: Ruby bindings for the SendGrid /developer/reply call.
140
+ summary: Programmatically add hosts & url settings to SendGrid's parse incoming email
141
+ settings (/developer/reply).
139
142
  test_files:
140
143
  - spec/developerreply_spec.rb
141
144
  - spec/spec_helper.rb