sidetiq-timezone 0.1.0 → 0.2.0

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: ad2cffa7fe055e2e0e43be5633b4fa19db3ed8a2
4
- data.tar.gz: 2835f57e2fe7ae718bf3d475045274efc21085b1
3
+ metadata.gz: 77951f7328c7ac832dd8577121f5fd28cad1ae83
4
+ data.tar.gz: afd8474dd8bb0655c0d708618b2aa5b29400de58
5
5
  SHA512:
6
- metadata.gz: 8b4d3a7f504f1d2850e78fff60c147d57adcdacbb89093f1af27493a66b7c3b11a0c7dc3e2485b77e88d7fe38012d3914c71d858b8a4c0f9c9ed789bd06ab8d0
7
- data.tar.gz: f552141ec9f6ed598179e4eb4782690ecf7dd7a43f49d6669fd546b442462602a798c901d16abce10e0d77c6d8871ead0921a949566fb71ed492b5217b122e92
6
+ metadata.gz: f765e9d7aab0f72846ccbe1c5b78766a7728b39b4c652c787486e003bbcb182fd06d1160790533b1fb234a350bfb163f1c3b99c86ee355769c0150d5cc9dbda1
7
+ data.tar.gz: 9e833226a249b5946f1c4bfc8dd0b1f8771bb20d15e37e0122b1fef7a75768b6c49b4b8eaefdb9971ab03905491e36fcaf2798521342aa7ef5f0c77bf471aa60
data/README.md CHANGED
@@ -1,7 +1,11 @@
1
1
  # Sidetiq::Timezone
2
2
 
3
- This library adds time zone support to Sidetiq. You can name a time
4
- zone for Sidetiq to use or just let it honor the value of `Time.zone`.
3
+ This library makes Sidetiq use the application time zone instead of
4
+ the system time zone, which is typically determined by /etc/localtime
5
+ or the TZ environment variable.
6
+
7
+ You can tell it to use a specific time zone, otherwise the value of
8
+ `Time.zone` (defined by ActiveSupport/Rails) is implied.
5
9
 
6
10
  ## Installation
7
11
 
@@ -42,6 +46,16 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
42
46
 
43
47
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
44
48
 
49
+ ## Version History
50
+
51
+ - 0.2.0
52
+
53
+ Support Sidetiq 0.8 (no functional change, just dependency updates)
54
+
55
+ - 0.1.0
56
+
57
+ Initial release
58
+
45
59
  ## Contributing
46
60
 
47
61
  1. Fork it ( https://github.com/knu/sidetiq-timezone/fork )
@@ -52,7 +66,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
52
66
 
53
67
  ## Author
54
68
 
55
- Copyright (c) 2014-2015 Akinori MUSHA.
69
+ Copyright (c) 2014-2016 Akinori MUSHA.
56
70
 
57
71
  Licensed under the 2-clause BSD license. See `LICENSE.txt` for
58
72
  details.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sidetiq
4
4
  module Timezone
5
- VERSION = "0.1.0"
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end
@@ -28,9 +28,10 @@ EOF
28
28
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
29
  spec.require_paths = ["lib"]
30
30
 
31
- spec.add_runtime_dependency "sidetiq", "~> 0.6.0"
31
+ spec.add_runtime_dependency "sidetiq", [">= 0.6", "< 0.9"]
32
32
  spec.add_runtime_dependency "activesupport", ">= 0"
33
33
 
34
34
  spec.add_development_dependency "bundler", "~> 1.8"
35
35
  spec.add_development_dependency "rake", "~> 10.0"
36
+ spec.add_development_dependency "rspec"
36
37
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidetiq-timezone
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Akinori MUSHA
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-02-27 00:00:00.000000000 Z
11
+ date: 2016-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sidetiq
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0.6'
20
+ - - "<"
18
21
  - !ruby/object:Gem::Version
19
- version: 0.6.0
22
+ version: '0.9'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
- version: 0.6.0
29
+ version: '0.6'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '0.9'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: activesupport
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,6 +72,20 @@ dependencies:
66
72
  - - "~>"
67
73
  - !ruby/object:Gem::Version
68
74
  version: '10.0'
75
+ - !ruby/object:Gem::Dependency
76
+ name: rspec
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
69
89
  description: |
70
90
  This library adds time zone support to Sidetiq.
71
91
 
@@ -111,9 +131,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
131
  version: '0'
112
132
  requirements: []
113
133
  rubyforge_project:
114
- rubygems_version: 2.2.3
134
+ rubygems_version: 2.6.6
115
135
  signing_key:
116
136
  specification_version: 4
117
137
  summary: Time zone support for Sidetiq
118
138
  test_files: []
119
- has_rdoc: