kafka_session 0.2.1 → 0.3.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: 6755d1f5019ea3edced16b868729c2a599e85335
4
- data.tar.gz: a34488847a06ca3e6adfa506681398a38522d05c
3
+ metadata.gz: d1d4cb200ff99b2a557ace9af205a089a92f0f17
4
+ data.tar.gz: cac49dbb2cc3d630bad573333c034a4742bcc032
5
5
  SHA512:
6
- metadata.gz: 3dcac88d208f09f5925442575f77a043ea96a9042bb4f38cfd8b11c3bba4cfcb4aa9bce50c68ad9d805c03b88a88e44003a7ee713113175149e107a10bb63ea1
7
- data.tar.gz: 18e5db403ab28628eed211de74a3a41c5c59558ab6a372e24e3d4662dbc4b8daa7ee978d03d733e5500adb85dc94870451b9f1c9a4641de229a5c21cb8f0460f
6
+ metadata.gz: a671b406eb6d9bb8ee0bcaf875d5d57646c85f6cebbf1a053190d4b1cf760476d287d61b8d831bcf6637c80da59b1156cb901465b1fd34f7eec4c7c5f104205c
7
+ data.tar.gz: 1ccc20329f28715d737027192526b0b2f124934739bd198d89b9a006e0cb88eec778163099512cd89ce2dd0e33e2efb50003d9c13193bafd97e4c34ed9ad6636
data/Appraisals ADDED
@@ -0,0 +1,7 @@
1
+ appraise 'rails3' do
2
+ gem 'activesupport', '~> 3.0'
3
+ end
4
+
5
+ appraise 'rails4' do
6
+ gem 'activesupport', '~> 4.0'
7
+ end
data/Gemfile CHANGED
@@ -4,7 +4,5 @@ source 'https://rubygems.org'
4
4
  gemspec
5
5
 
6
6
  group :development, :test do
7
- gem 'pry-byebug', platform: :ruby
8
- gem 'pry-coolline', platform: :jruby
9
- gem 'pry-nav', platform: :jruby
7
+ gem 'pry-byebug'
10
8
  end
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ require 'rubygems'
2
+ require 'bundler/setup'
1
3
  require "bundler/gem_tasks"
2
4
  require "rspec/core/rake_task"
3
5
 
@@ -0,0 +1,11 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activesupport", "~> 3.0"
6
+
7
+ group :development, :test do
8
+ gem "pry-byebug"
9
+ end
10
+
11
+ gemspec :path => "../"
@@ -0,0 +1,62 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ kafka_session (0.2.1)
5
+ activesupport (> 3.0)
6
+ poseidon (~> 0.0.5)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ activesupport (3.2.22)
12
+ i18n (~> 0.6, >= 0.6.4)
13
+ multi_json (~> 1.0)
14
+ appraisal (2.1.0)
15
+ bundler
16
+ rake
17
+ thor (>= 0.14.0)
18
+ byebug (8.2.1)
19
+ coderay (1.1.0)
20
+ diff-lcs (1.2.5)
21
+ i18n (0.7.0)
22
+ method_source (0.8.2)
23
+ multi_json (1.11.2)
24
+ poseidon (0.0.5)
25
+ pry (0.10.3)
26
+ coderay (~> 1.1.0)
27
+ method_source (~> 0.8.1)
28
+ slop (~> 3.4)
29
+ pry-byebug (3.3.0)
30
+ byebug (~> 8.0)
31
+ pry (~> 0.10)
32
+ rake (10.4.2)
33
+ rspec (3.4.0)
34
+ rspec-core (~> 3.4.0)
35
+ rspec-expectations (~> 3.4.0)
36
+ rspec-mocks (~> 3.4.0)
37
+ rspec-core (3.4.1)
38
+ rspec-support (~> 3.4.0)
39
+ rspec-expectations (3.4.0)
40
+ diff-lcs (>= 1.2.0, < 2.0)
41
+ rspec-support (~> 3.4.0)
42
+ rspec-mocks (3.4.0)
43
+ diff-lcs (>= 1.2.0, < 2.0)
44
+ rspec-support (~> 3.4.0)
45
+ rspec-support (3.4.1)
46
+ slop (3.6.0)
47
+ thor (0.19.1)
48
+
49
+ PLATFORMS
50
+ ruby
51
+
52
+ DEPENDENCIES
53
+ activesupport (~> 3.0)
54
+ appraisal
55
+ bundler (~> 1.10)
56
+ kafka_session!
57
+ pry-byebug
58
+ rake (~> 10.0)
59
+ rspec (~> 3.3)
60
+
61
+ BUNDLED WITH
62
+ 1.10.6
@@ -0,0 +1,11 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activesupport", "~> 4.0"
6
+
7
+ group :development, :test do
8
+ gem "pry-byebug"
9
+ end
10
+
11
+ gemspec :path => "../"
@@ -0,0 +1,69 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ kafka_session (0.2.1)
5
+ activesupport (> 3.0)
6
+ poseidon (~> 0.0.5)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ activesupport (4.2.5)
12
+ i18n (~> 0.7)
13
+ json (~> 1.7, >= 1.7.7)
14
+ minitest (~> 5.1)
15
+ thread_safe (~> 0.3, >= 0.3.4)
16
+ tzinfo (~> 1.1)
17
+ appraisal (2.1.0)
18
+ bundler
19
+ rake
20
+ thor (>= 0.14.0)
21
+ byebug (8.2.1)
22
+ coderay (1.1.0)
23
+ diff-lcs (1.2.5)
24
+ i18n (0.7.0)
25
+ json (1.8.3)
26
+ method_source (0.8.2)
27
+ minitest (5.8.3)
28
+ poseidon (0.0.5)
29
+ pry (0.10.3)
30
+ coderay (~> 1.1.0)
31
+ method_source (~> 0.8.1)
32
+ slop (~> 3.4)
33
+ pry-byebug (3.3.0)
34
+ byebug (~> 8.0)
35
+ pry (~> 0.10)
36
+ rake (10.4.2)
37
+ rspec (3.4.0)
38
+ rspec-core (~> 3.4.0)
39
+ rspec-expectations (~> 3.4.0)
40
+ rspec-mocks (~> 3.4.0)
41
+ rspec-core (3.4.1)
42
+ rspec-support (~> 3.4.0)
43
+ rspec-expectations (3.4.0)
44
+ diff-lcs (>= 1.2.0, < 2.0)
45
+ rspec-support (~> 3.4.0)
46
+ rspec-mocks (3.4.0)
47
+ diff-lcs (>= 1.2.0, < 2.0)
48
+ rspec-support (~> 3.4.0)
49
+ rspec-support (3.4.1)
50
+ slop (3.6.0)
51
+ thor (0.19.1)
52
+ thread_safe (0.3.5)
53
+ tzinfo (1.2.2)
54
+ thread_safe (~> 0.1)
55
+
56
+ PLATFORMS
57
+ ruby
58
+
59
+ DEPENDENCIES
60
+ activesupport (~> 4.0)
61
+ appraisal
62
+ bundler (~> 1.10)
63
+ kafka_session!
64
+ pry-byebug
65
+ rake (~> 10.0)
66
+ rspec (~> 3.3)
67
+
68
+ BUNDLED WITH
69
+ 1.10.6
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Chris Hoffman"]
10
10
  spec.email = ["choffman@optoro.com"]
11
11
 
12
- spec.summary = %q{Produce & consume Kafka messages.}
13
- spec.description = %q{Produce & consume Kafka messages.}
12
+ spec.summary = %q{Produce & consume Kafka messages in traceable sessions.}
13
+ spec.description = %q{Produce & consume Kafka messages in traceable sessions.}
14
14
  spec.homepage = "http://www.github.com/optoro/kafka_session"
15
15
  spec.license = "MIT"
16
16
 
@@ -22,7 +22,8 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency "bundler", "~> 1.10"
23
23
  spec.add_development_dependency "rake", "~> 10.0"
24
24
  spec.add_development_dependency "rspec", "~> 3.3"
25
+ spec.add_development_dependency "appraisal"
25
26
 
26
- spec.add_runtime_dependency "activesupport", "~> 4.2"
27
+ spec.add_runtime_dependency "activesupport", "> 3.0"
27
28
  spec.add_runtime_dependency "poseidon", "~> 0.0.5"
28
29
  end
@@ -1,3 +1,3 @@
1
1
  class KafkaSession
2
- VERSION = "0.2.1"
2
+ VERSION = "0.3.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kafka_session
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Hoffman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-12-07 00:00:00.000000000 Z
11
+ date: 2016-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,20 +52,34 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: appraisal
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: activesupport
57
71
  requirement: !ruby/object:Gem::Requirement
58
72
  requirements:
59
- - - "~>"
73
+ - - ">"
60
74
  - !ruby/object:Gem::Version
61
- version: '4.2'
75
+ version: '3.0'
62
76
  type: :runtime
63
77
  prerelease: false
64
78
  version_requirements: !ruby/object:Gem::Requirement
65
79
  requirements:
66
- - - "~>"
80
+ - - ">"
67
81
  - !ruby/object:Gem::Version
68
- version: '4.2'
82
+ version: '3.0'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: poseidon
71
85
  requirement: !ruby/object:Gem::Requirement
@@ -80,7 +94,7 @@ dependencies:
80
94
  - - "~>"
81
95
  - !ruby/object:Gem::Version
82
96
  version: 0.0.5
83
- description: Produce & consume Kafka messages.
97
+ description: Produce & consume Kafka messages in traceable sessions.
84
98
  email:
85
99
  - choffman@optoro.com
86
100
  executables: []
@@ -90,6 +104,7 @@ files:
90
104
  - ".gitignore"
91
105
  - ".rspec"
92
106
  - ".travis.yml"
107
+ - Appraisals
93
108
  - CODE_OF_CONDUCT.md
94
109
  - Gemfile
95
110
  - LICENSE.txt
@@ -97,6 +112,10 @@ files:
97
112
  - Rakefile
98
113
  - bin/console
99
114
  - bin/setup
115
+ - gemfiles/rails3.gemfile
116
+ - gemfiles/rails3.gemfile.lock
117
+ - gemfiles/rails4.gemfile
118
+ - gemfiles/rails4.gemfile.lock
100
119
  - kafka_session.gemspec
101
120
  - lib/kafka_session.rb
102
121
  - lib/kafka_session/delivered_message.rb
@@ -127,5 +146,5 @@ rubyforge_project:
127
146
  rubygems_version: 2.4.8
128
147
  signing_key:
129
148
  specification_version: 4
130
- summary: Produce & consume Kafka messages.
149
+ summary: Produce & consume Kafka messages in traceable sessions.
131
150
  test_files: []