nezumi 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in nezumi.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 Marshall Huss
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,25 @@
1
+ # Nezumi Push
2
+
3
+ **Nezumi Push is currently in private beta and will soon be available as a Heroku add-on**
4
+
5
+ Nezumi Push allows you to send iOS push notifications from your Heroku app to members on your development team who use Nezumi.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ gem 'nezumi', git: "https://github.com/mwhuss/nezumi-gem.git"
12
+
13
+ ## Usage
14
+
15
+ Nezumi::Push.notify "New User Signup!"
16
+
17
+ This will send a push notification to all users on your team who have push notifications enabled for your App
18
+
19
+ ## Contributing
20
+
21
+ 1. Fork it
22
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
23
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
24
+ 4. Push to the branch (`git push origin my-new-feature`)
25
+ 5. Create new Pull Request
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
3
+
4
+ require 'rake/testtask'
5
+
6
+ task :default => [:test]
7
+
8
+ desc "Run basic tests"
9
+ Rake::TestTask.new("test") { |t|
10
+ t.pattern = 'test/*_test.rb'
11
+ t.verbose = false
12
+ t.warning = false
13
+ }
@@ -0,0 +1,6 @@
1
+ module Nezumi; end
2
+
3
+ require 'rest-client'
4
+ require "nezumi/version"
5
+ require 'nezumi/errors'
6
+ require 'nezumi/push'
@@ -0,0 +1,9 @@
1
+ module Nezumi
2
+
3
+ class URLNotSetError < StandardError
4
+ def initialize(msg = nil)
5
+ super("NEZUMI_URL must be set")
6
+ end
7
+ end
8
+
9
+ end
@@ -0,0 +1,16 @@
1
+ module Nezumi
2
+ class Push
3
+
4
+ def self.notify(message, opts = {})
5
+ url = ENV['NEZUMI_URL']
6
+ sound = opts.fetch(:sound, "default")
7
+ push = opts.fetch(:push, true)
8
+
9
+ raise URLNotSetError.new if url.nil? || url.empty?
10
+ raise ArgumentError.new("Message must not be blank") if message.nil? || message.empty?
11
+
12
+ RestClient.post(url, { :message => message, :sound => sound, :push => !!push })
13
+ end
14
+
15
+ end
16
+ end
@@ -0,0 +1,3 @@
1
+ module Nezumi
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,20 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/nezumi/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Marshall Huss"]
6
+ gem.email = ["mwhuss@gmail.com"]
7
+ gem.description = %q{Gem to interact with the Nezumi Push Heroku add-on}
8
+ gem.summary = %q{Nezumi Push allows you to send iOS push notifications from your Heroku app to members on your development team who use Nezumi}
9
+ gem.homepage = ""
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = "nezumi"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = Nezumi::VERSION
17
+
18
+ gem.add_dependency "rest-client", ["~> 1.6.7"]
19
+ gem.add_development_dependency "webmock", ["~> 1.8.7"]
20
+ end
@@ -0,0 +1,52 @@
1
+ require File.dirname(__FILE__) + '/test_helper'
2
+
3
+ class PushTest < Test::Unit::TestCase
4
+
5
+ def test_invalid_nezumi_url
6
+ ENV['NEZUMI_URL'] = nil
7
+
8
+ assert_raises Nezumi::URLNotSetError do
9
+ Nezumi::Push.notify "foo"
10
+ end
11
+ end
12
+
13
+ def test_blank_message
14
+ assert_raises ArgumentError do
15
+ Nezumi::Push.notify ""
16
+ end
17
+ end
18
+
19
+ def test_nil_message
20
+ assert_raises ArgumentError do
21
+ Nezumi::Push.notify nil
22
+ end
23
+ end
24
+
25
+ def test_send_message_with_default_options
26
+ stub_request_with_params("message" => "new user signup", "sound" => "default", "push" => "true")
27
+ Nezumi::Push.notify("new user signup")
28
+ end
29
+
30
+ def test_send_message_with_overriden_options
31
+ stub_request_with_params("message" => "new paid plan", "sound" => "cha-ching", "push" => "false")
32
+ Nezumi::Push.notify("new paid plan", { :push => false, :sound => "cha-ching" })
33
+ end
34
+
35
+ def test_send_message_with_truthy_push_option
36
+ stub_request_with_params("message" => "error", "sound" => "default", "push" => "true")
37
+ Nezumi::Push.notify("error", :push => "any object")
38
+ end
39
+
40
+ def test_send_message_with_falsey_push_option
41
+ stub_request_with_params("message" => "queue filled", "sound" => "default", "push" => "false")
42
+ Nezumi::Push.notify("queue filled", :push => nil)
43
+ end
44
+
45
+ def stub_request_with_params(params)
46
+ stub_request(:post, ENV['NEZUMI_URL']).
47
+ with(:body => params).
48
+ to_return(:status => 200, :body => "", :headers => {})
49
+ end
50
+
51
+
52
+ end
@@ -0,0 +1,17 @@
1
+ ENV['RACK_ENV'] = 'test'
2
+
3
+ require 'bundler/setup'
4
+ require 'test/unit'
5
+ require 'webmock/test_unit'
6
+
7
+ require File.dirname(__FILE__) + '/../lib/nezumi'
8
+
9
+ WebMock.disable_net_connect!
10
+
11
+ class Test::Unit::TestCase
12
+
13
+ def setup
14
+ ENV['NEZUMI_URL'] = "https://username:apikey@push.nezumiapp.com"
15
+ end
16
+
17
+ end
metadata ADDED
@@ -0,0 +1,92 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nezumi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Marshall Huss
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-07-05 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rest-client
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 1.6.7
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 1.6.7
30
+ - !ruby/object:Gem::Dependency
31
+ name: webmock
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 1.8.7
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 1.8.7
46
+ description: Gem to interact with the Nezumi Push Heroku add-on
47
+ email:
48
+ - mwhuss@gmail.com
49
+ executables: []
50
+ extensions: []
51
+ extra_rdoc_files: []
52
+ files:
53
+ - .gitignore
54
+ - Gemfile
55
+ - LICENSE
56
+ - README.md
57
+ - Rakefile
58
+ - lib/nezumi.rb
59
+ - lib/nezumi/errors.rb
60
+ - lib/nezumi/push.rb
61
+ - lib/nezumi/version.rb
62
+ - nezumi.gemspec
63
+ - test/push_test.rb
64
+ - test/test_helper.rb
65
+ homepage: ''
66
+ licenses: []
67
+ post_install_message:
68
+ rdoc_options: []
69
+ require_paths:
70
+ - lib
71
+ required_ruby_version: !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ! '>='
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ required_rubygems_version: !ruby/object:Gem::Requirement
78
+ none: false
79
+ requirements:
80
+ - - ! '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ requirements: []
84
+ rubyforge_project:
85
+ rubygems_version: 1.8.23
86
+ signing_key:
87
+ specification_version: 3
88
+ summary: Nezumi Push allows you to send iOS push notifications from your Heroku app
89
+ to members on your development team who use Nezumi
90
+ test_files:
91
+ - test/push_test.rb
92
+ - test/test_helper.rb