grocer 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.3.1
4
+
5
+ * Move repo to the Grocer organization.
6
+ * Automatically require `passbook_notification` when `require 'grocer'`.
7
+ ([lgleasain](https://github.com/lgleasain))
8
+
3
9
  ## 0.3.0
4
10
 
5
11
  * Add `Grocer::PassbookNotification` for sending, well... Passbook
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Grocer
2
2
 
3
- [![Build Status](https://api.travis-ci.org/highgroove/grocer.png?branch=master)](https://travis-ci.org/highgroove/grocer)
4
- [![Dependency Status](https://gemnasium.com/highgroove/grocer.png)](https://gemnasium.com/highgroove/grocer)
5
- [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/highgroove/grocer)
3
+ [![Build Status](https://api.travis-ci.org/grocer/grocer.png?branch=master)](https://travis-ci.org/grocer/grocer)
4
+ [![Dependency Status](https://gemnasium.com/grocer/grocer.png)](https://gemnasium.com/grocer/grocer)
5
+ [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/grocer/grocer)
6
6
 
7
7
  **grocer** interfaces with the [Apple Push Notification
8
8
  Service](http://developer.apple.com/library/mac/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/ApplePushService/ApplePushService.html)
data/grocer.gemspec CHANGED
@@ -3,7 +3,7 @@ require File.expand_path('../lib/grocer/version', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.authors = ['Andy Lindeman', 'Steven Harman', 'Patrick Van Stee']
6
- gem.email = ['andy@highgroove.com', 'steven@highgroove.com', 'vanstee@highgroove.com']
6
+ gem.email = ['alindeman@gmail.com', 'steveharman@gmail.com', 'patrickvanstee@gmail.com']
7
7
  gem.summary = %q{Pushing Apple notifications since 2012.}
8
8
  gem.description = <<-DESC
9
9
  Grocer interfaces with the Apple Push
@@ -16,7 +16,7 @@ Gem::Specification.new do |gem|
16
16
  but Grocer plans to be the cleanest, most
17
17
  extensible, and friendliest.
18
18
  DESC
19
- gem.homepage = 'https://github.com/highgroove/grocer'
19
+ gem.homepage = 'https://github.com/grocer/grocer'
20
20
  gem.license = 'MIT'
21
21
 
22
22
  gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
data/lib/grocer.rb CHANGED
@@ -1,5 +1,6 @@
1
1
  require 'grocer/feedback'
2
2
  require 'grocer/notification'
3
+ require 'grocer/passbook_notification'
3
4
  require 'grocer/feedback_connection'
4
5
  require 'grocer/push_connection'
5
6
  require 'grocer/pusher'
@@ -1,3 +1,3 @@
1
1
  module Grocer
2
- VERSION = '0.3.0'
2
+ VERSION = '0.3.1'
3
3
  end
@@ -19,7 +19,7 @@ describe Grocer::SSLConnection do
19
19
  {
20
20
  certificate: '/path/to/cert.pem',
21
21
  passphrase: 'abc123',
22
- gateway: 'gateway.push.highgroove.com',
22
+ gateway: 'gateway.push.example.com',
23
23
  port: 1234
24
24
  }
25
25
  }
@@ -38,7 +38,7 @@ describe Grocer::SSLConnection do
38
38
  expect(subject.certificate).to eq(File.read(connection_options[:certificate]))
39
39
  end
40
40
  end
41
-
41
+
42
42
  subject { described_class.new(connection_options) }
43
43
 
44
44
  describe 'configuration' do
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: grocer
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.3.0
5
+ version: 0.3.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Andy Lindeman
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2012-12-22 00:00:00.000000000 Z
14
+ date: 2013-01-05 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  version_requirements: !ruby/object:Gem::Requirement
@@ -100,9 +100,9 @@ description: ! " Grocer interfaces with the Apple Push\
100
100
  are other gems out there to do this,\n but Grocer plans
101
101
  to be the cleanest, most\n extensible, and friendliest.\n"
102
102
  email:
103
- - andy@highgroove.com
104
- - steven@highgroove.com
105
- - vanstee@highgroove.com
103
+ - alindeman@gmail.com
104
+ - steveharman@gmail.com
105
+ - patrickvanstee@gmail.com
106
106
  executables: []
107
107
  extensions: []
108
108
  extra_rdoc_files: []
@@ -158,7 +158,7 @@ files:
158
158
  - spec/grocer/ssl_server_spec.rb
159
159
  - spec/grocer_spec.rb
160
160
  - spec/spec_helper.rb
161
- homepage: https://github.com/highgroove/grocer
161
+ homepage: https://github.com/grocer/grocer
162
162
  licenses:
163
163
  - MIT
164
164
  post_install_message: