push_package 0.0.1

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 ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MTdmMDFlZmVlNWE5MDFkYzgzNGVhMjM4ZDAxMTc4YTY4N2VlMDVlNA==
5
+ data.tar.gz: !binary |-
6
+ OTEwZTQ0NjBkOGZlNTBmYmY5M2QyZmQ3ZTU2NTE0NGFhN2FiYzU2OQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ ZjcwNTc2YzVlZDc0MTY3NGMwZTFkNDU5OTE3NGYzN2UyMzljMzc0YTE5OTVm
10
+ NTk5OGFhZDA1OWZhYjQ1MmJiMmI3NGU0Nzc4MjNlMjM5MTM0MWMwYTRjNGQz
11
+ NzQzYzcxNjE5MmFiZDRiYzZjODg1MGU1Y2RmYWU1ZDA4MzQ4NTE=
12
+ data.tar.gz: !binary |-
13
+ MjQ0NTM4NzBkNjg1Y2U4NmY3MWY2MDU2MjcwNTM3ZmE2NWY1ZmNhNzM3YjYw
14
+ Njk4NjUwZTQ1ZWRhOTllMGRhZDU2ZDE2MzkyMTM4Mzc0YzMyOGRjOTIyYzY0
15
+ ZWJlZGEyMzk2ZDlhNjAzMmQzNGNhNGEwMjFlZGYwNmY3YjA1Mjk=
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ *.gem
2
+
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in zero_push.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,18 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ push_package (0.0.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ minitest (4.7.0)
10
+ rake (10.0.3)
11
+
12
+ PLATFORMS
13
+ ruby
14
+
15
+ DEPENDENCIES
16
+ minitest (~> 4.7.0)
17
+ push_package!
18
+ rake (~> 10.0.3)
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Symmetric Infinity
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.
data/README.md ADDED
@@ -0,0 +1,14 @@
1
+ ## Purpose
2
+ Make implementing safari push notifications easier for ruby developers.
3
+
4
+ ## Notes:
5
+ This is not ready for use.
6
+
7
+ ## Contributing
8
+
9
+ 1. Fork it
10
+ 1. Create your feature branch (`git checkout -b my-new-feature`)
11
+ 1. Write tests for your feature
12
+ 1. Commit your changes (`git commit -am 'Add some feature'`)
13
+ 1. Push to the branch (`git push origin my-new-feature`)
14
+ 1. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,11 @@
1
+ require "rake/testtask"
2
+ require "bundler/gem_tasks"
3
+
4
+ task default: :test
5
+
6
+ Rake::TestTask.new do |t|
7
+ t.libs << 'lib' << 'spec'
8
+ t.test_files = Dir["spec/**/*_spec.rb"]
9
+ t.verbose = true
10
+ end
11
+
@@ -0,0 +1,3 @@
1
+ module PushPackage
2
+ VERSION = '0.0.1'.freeze
3
+ end
@@ -0,0 +1,4 @@
1
+ require 'push_package/version'
2
+
3
+ module PushPackage
4
+ end
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'push_package/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "push_package"
8
+ gem.version = PushPackage::VERSION
9
+ gem.authors = ["Stefan Natchev", "Adam Duke"]
10
+ gem.email = ["stefan.natchev@gmail.com", "adam.v.duke@gmail.com"]
11
+ gem.summary = %q{A gem for creating Safari push notification push packages.}
12
+ gem.description = %q{As of OSX 10.9 Safari can receive push notifications when it is closed.}
13
+ gem.homepage = "https://github.com/symmetricinfinity/push_package"
14
+ gem.license = 'MIT'
15
+
16
+ gem.files = `git ls-files`.split($/)
17
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
18
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
+ gem.require_paths = ["lib"]
20
+ gem.required_ruby_version = '>= 1.9'
21
+
22
+ gem.add_development_dependency 'minitest', '~> 4.7.0'
23
+ gem.add_development_dependency 'rake', '~> 10.0.3'
24
+ end
@@ -0,0 +1,10 @@
1
+ require 'spec_helper'
2
+
3
+ describe PushPackage do
4
+
5
+ describe 'the truth' do
6
+ it 'should pass' do
7
+ 'test'.must_equal('test')
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,4 @@
1
+ require 'minitest/spec'
2
+ require 'minitest/autorun'
3
+ require 'push_package'
4
+
metadata ADDED
@@ -0,0 +1,87 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: push_package
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Stefan Natchev
8
+ - Adam Duke
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-10-29 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: minitest
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ~>
19
+ - !ruby/object:Gem::Version
20
+ version: 4.7.0
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ version: 4.7.0
28
+ - !ruby/object:Gem::Dependency
29
+ name: rake
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ~>
33
+ - !ruby/object:Gem::Version
34
+ version: 10.0.3
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ~>
40
+ - !ruby/object:Gem::Version
41
+ version: 10.0.3
42
+ description: As of OSX 10.9 Safari can receive push notifications when it is closed.
43
+ email:
44
+ - stefan.natchev@gmail.com
45
+ - adam.v.duke@gmail.com
46
+ executables: []
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - .gitignore
51
+ - Gemfile
52
+ - Gemfile.lock
53
+ - LICENSE.txt
54
+ - README.md
55
+ - Rakefile
56
+ - lib/push_package.rb
57
+ - lib/push_package/version.rb
58
+ - push_package.gemspec
59
+ - spec/push_package_spec.rb
60
+ - spec/spec_helper.rb
61
+ homepage: https://github.com/symmetricinfinity/push_package
62
+ licenses:
63
+ - MIT
64
+ metadata: {}
65
+ post_install_message:
66
+ rdoc_options: []
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ! '>='
72
+ - !ruby/object:Gem::Version
73
+ version: '1.9'
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ! '>='
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ requirements: []
80
+ rubyforge_project:
81
+ rubygems_version: 2.1.0
82
+ signing_key:
83
+ specification_version: 4
84
+ summary: A gem for creating Safari push notification push packages.
85
+ test_files:
86
+ - spec/push_package_spec.rb
87
+ - spec/spec_helper.rb