request_store 1.2.0 → 1.2.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: 348deb2b9d7db6347123b67d18b5d4eb2c8001ed
4
- data.tar.gz: 8296b65a72b085eec44e257b018340e392d787ee
3
+ metadata.gz: 0f330736e888660271d908162a43f5a277ac12f9
4
+ data.tar.gz: ceb6fb78c39700c7647fe94a52275941f9aeb16b
5
5
  SHA512:
6
- metadata.gz: b7fe4a75ba1e5a5bd6c578c822b12d1982118178f95a391ac6a716e7364241e1b41e98eb4193032765c6a31103366fd497ccad181ee3d10aa44fbc4284175905
7
- data.tar.gz: 645b2404581a8f991e38f4a83cf0fee31f4444ba7fddb2beaea8f0bd5e1f15ab16af281ee85acb105035e21308a011ecc1977ca35851b66d2f45411471ad8c54
6
+ metadata.gz: 5389ea2f73f3324cfaf1cd05866fd2d025a153c98d17b6aa0011ec86631b5b21582bc52cacf6089f64d0445c2af6524ab80bbb4dbad2727930cbd341cde25128
7
+ data.tar.gz: ff40c52f1ca83f3503ee0703c5298508f3b4c6cc5f4a349c37aff8b71b8c336c34109f93afb8b69be4d9b0a2b7ffdc975ca59d7a710ad3db7208c7e98e5d0142
@@ -6,6 +6,7 @@ rvm:
6
6
  - 1.9.3
7
7
  - 2.0.0
8
8
  - 2.1.0
9
+ - 2.2.3
9
10
  - jruby-18mode
10
11
  - jruby-19mode
11
12
  - rbx-2
data/README.md CHANGED
@@ -97,6 +97,23 @@ def app
97
97
  end
98
98
  ```
99
99
 
100
+ ## Semantic Versioning
101
+
102
+ This project conforms to [semver](http://semver.org/). As a result of this
103
+ policy, you can (and should) specify a dependency on this gem using the
104
+ [Pessimistic Version Constraint](http://guides.rubygems.org/patterns/) with
105
+ two digits of precision. For example:
106
+
107
+ ```ruby
108
+ spec.add_dependency 'request_store', '~> 1.0'
109
+ ```
110
+
111
+ This means your project is compatible with request_store 1.0 up until 2.0.
112
+ You can also set a higher minimum version:
113
+
114
+ ```ruby
115
+ spec.add_dependency 'request_store', '~> 1.1'
116
+ ```
100
117
 
101
118
  ## Contributing
102
119
 
@@ -1,3 +1,3 @@
1
1
  module RequestStore
2
- VERSION = "1.2.0"
2
+ VERSION = "1.2.1"
3
3
  end
@@ -11,6 +11,7 @@ Gem::Specification.new do |gem|
11
11
  gem.description = %q{RequestStore gives you per-request global storage.}
12
12
  gem.summary = %q{RequestStore gives you per-request global storage.}
13
13
  gem.homepage = "http://github.com/steveklabnik/request_store"
14
+ gem.licenses = ["MIT"]
14
15
 
15
16
  gem.files = `git ls-files`.split($/)
16
17
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: request_store
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Klabnik
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-17 00:00:00.000000000 Z
11
+ date: 2015-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -60,7 +60,8 @@ files:
60
60
  - test/request_store_test.rb
61
61
  - test/test_helper.rb
62
62
  homepage: http://github.com/steveklabnik/request_store
63
- licenses: []
63
+ licenses:
64
+ - MIT
64
65
  metadata: {}
65
66
  post_install_message:
66
67
  rdoc_options: []
@@ -78,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
78
79
  version: '0'
79
80
  requirements: []
80
81
  rubyforge_project:
81
- rubygems_version: 2.2.2
82
+ rubygems_version: 2.4.8
82
83
  signing_key:
83
84
  specification_version: 4
84
85
  summary: RequestStore gives you per-request global storage.