sidekiqpush 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e7659187d9ba004a031365f4b4a1efeb64acc20b
4
- data.tar.gz: 99e9479fb659efb73834b5d9e1cdf35fa18244d6
3
+ metadata.gz: bb46a54ca211180c4c37650a1911fc8187478fc2
4
+ data.tar.gz: c3e5006b53e22e30a6f852997a2ff1fd0738fe11
5
5
  SHA512:
6
- metadata.gz: c1406e2104b98e065b76744b7ae4d029613ed12d70820903eb121d3793b30003e35c1b9844627e92e7c3fd7c0a6abb9bd1ac4c9bc43a3f82259e581b7eaca900
7
- data.tar.gz: 5a1f18376e7f0cbfc03cc6bda2c307e1aca0c3b6e95ded42bdd50d65cffa11dfb3d1cb38cce00881e4c447fd9769c6a0a2b332dccfe587ce238a0f30d7048c76
6
+ metadata.gz: 801ae74819edebf4230b72c024de5caf1008dac2f0cb66082ab7fcd14f28eabc63a7fe7e23d90647d86e1c3bae42b47d85f1e6f7e485b3f2a7c5c3c67eca8ed7
7
+ data.tar.gz: c2f48e5d1058833b404854722b8c059b6472a8507d6a614a07a90076db37a1f4ad1be1c88bbc2bd50de822ab0f01a368673b699576cafc26ad1fc1612d837f20
data/.travis.yml CHANGED
@@ -2,3 +2,11 @@ language: ruby
2
2
  rvm:
3
3
  - 2.2.1
4
4
  before_install: gem install bundler -v 1.10.6
5
+
6
+ rvm:
7
+ - 2.0.0
8
+ - 2.1.0
9
+ - 2.2.1
10
+ - rbx-2
11
+ - ruby-head
12
+ - jruby-head
data/Changes.md ADDED
@@ -0,0 +1,9 @@
1
+ 0.1.1 / 2015-10-07
2
+ ==================
3
+
4
+ - added LICENSE
5
+
6
+ 0.1.0 / 2015-10-07
7
+ ==================
8
+
9
+ - first working version
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 beanieboi
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 CHANGED
@@ -1,5 +1,7 @@
1
1
  # Sidekiqpush
2
2
 
3
+ [![Build Status](https://travis-ci.org/beanieboi/sidekiqpush.svg?branch=master)](http://travis-ci.org/beanieboi/sidekiqpush)
4
+
3
5
  Super Simple Sidekiq Push. Push to Sidekiq without all the dependencies.
4
6
 
5
7
  ## Installation
@@ -1,3 +1,3 @@
1
1
  module Sidekiqpush
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
data/sidekiqpush.gemspec CHANGED
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = 'Super Simple Sidekiq Push'
13
13
  spec.description = 'Super Simple Sidekiq Push'
14
14
  spec.homepage = 'https://abwesend.com'
15
+ spec.license = "MIT"
15
16
 
16
17
  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
17
18
  # delete this section to allow pushing this gem to any host.
@@ -26,7 +27,9 @@ Gem::Specification.new do |spec|
26
27
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
28
  spec.require_paths = ['lib']
28
29
 
29
- spec.add_dependency 'redis', '~> 3.2', '>= 3.2.1'
30
+ spec.required_ruby_version = '~> 2.0'
31
+
32
+ spec.add_dependency 'redis', '~> 3.2'
30
33
 
31
34
  spec.add_development_dependency 'bundler', '~> 1.10'
32
35
  spec.add_development_dependency 'rake', '~> 10.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidekiqpush
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - beanieboi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-10-07 00:00:00.000000000 Z
11
+ date: 2015-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis
@@ -17,9 +17,6 @@ dependencies:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.2'
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: 3.2.1
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
@@ -27,9 +24,6 @@ dependencies:
27
24
  - - "~>"
28
25
  - !ruby/object:Gem::Version
29
26
  version: '3.2'
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- version: 3.2.1
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: bundler
35
29
  requirement: !ruby/object:Gem::Requirement
@@ -82,7 +76,9 @@ files:
82
76
  - ".gitignore"
83
77
  - ".rubocop.yml"
84
78
  - ".travis.yml"
79
+ - Changes.md
85
80
  - Gemfile
81
+ - LICENSE
86
82
  - README.md
87
83
  - Rakefile
88
84
  - bin/console
@@ -93,7 +89,8 @@ files:
93
89
  - lib/sidekiqpush/version.rb
94
90
  - sidekiqpush.gemspec
95
91
  homepage: https://abwesend.com
96
- licenses: []
92
+ licenses:
93
+ - MIT
97
94
  metadata:
98
95
  allowed_push_host: https://rubygems.org
99
96
  post_install_message:
@@ -102,9 +99,9 @@ require_paths:
102
99
  - lib
103
100
  required_ruby_version: !ruby/object:Gem::Requirement
104
101
  requirements:
105
- - - ">="
102
+ - - "~>"
106
103
  - !ruby/object:Gem::Version
107
- version: '0'
104
+ version: '2.0'
108
105
  required_rubygems_version: !ruby/object:Gem::Requirement
109
106
  requirements:
110
107
  - - ">="