request_store 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/README.md +17 -0
- data/lib/request_store/version.rb +1 -1
- data/request_store.gemspec +1 -0
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f330736e888660271d908162a43f5a277ac12f9
|
4
|
+
data.tar.gz: ceb6fb78c39700c7647fe94a52275941f9aeb16b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5389ea2f73f3324cfaf1cd05866fd2d025a153c98d17b6aa0011ec86631b5b21582bc52cacf6089f64d0445c2af6524ab80bbb4dbad2727930cbd341cde25128
|
7
|
+
data.tar.gz: ff40c52f1ca83f3503ee0703c5298508f3b4c6cc5f4a349c37aff8b71b8c336c34109f93afb8b69be4d9b0a2b7ffdc975ca59d7a710ad3db7208c7e98e5d0142
|
data/.travis.yml
CHANGED
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
|
|
data/request_store.gemspec
CHANGED
@@ -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.
|
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-
|
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.
|
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.
|