sinatra-partial 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.markdown +4 -0
- data/Gemfile +2 -1
- data/LICENCE.txt +11 -0
- data/README.markdown +1 -17
- data/lib/sinatra/partial/version.rb +1 -1
- data/sinatra-partial.gemspec +1 -1
- metadata +11 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff6789520dc96e0728532c4235705083966381d5
|
4
|
+
data.tar.gz: a1616ebf0bfde53724724c9ed9c55901693e187f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '03986e4ef6312a24f836cc24afaaddf3306fae327a940ab782e5c08775d310f327923751e72824c613e702eae468bcd22d57f6937b01d41b570f6cecb2780df9'
|
7
|
+
data.tar.gz: f5e656bc503499142ef983fbab6ca83ed1cfa9719d8dac01e34faa7d8eb371e23b50c33b4f6c3c16ee3536daca08ef92cfa9567f1fc5c768bcc3aff2e4acf142
|
data/CHANGES.markdown
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
## Upcoming ##
|
2
2
|
|
3
|
+
## v1.0.1, 28th of July 2017 ##
|
4
|
+
|
5
|
+
- Sinatra is at v2.0.0 so checked it works against it and updated the gemspec to allow it to install when using a dependency manager like Bundler.
|
6
|
+
|
3
7
|
## v1.0.0, 7th of April 2015 ##
|
4
8
|
|
5
9
|
* Dropped support for pre-v2 Ruby. There's no changes within the library itself that should stop it working at this point, but that doesn't mean that it's supported.
|
data/Gemfile
CHANGED
@@ -8,12 +8,13 @@ group :development do
|
|
8
8
|
unless RUBY_ENGINE == 'jruby' || RUBY_ENGINE == "rbx"
|
9
9
|
gem "pry-byebug"
|
10
10
|
end
|
11
|
-
gem "reek"
|
12
11
|
gem "maruku"
|
13
12
|
gem "yard"
|
14
13
|
gem "travis-lint"
|
15
14
|
end
|
16
15
|
|
16
|
+
gem "sinatra", ">=2.0.0"
|
17
|
+
|
17
18
|
group :test do
|
18
19
|
gem "rack-test"
|
19
20
|
gem "rspec"
|
data/LICENCE.txt
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
### Licence ###
|
2
|
+
|
3
|
+
Copyright (c) 2012 Iain Barnett
|
4
|
+
|
5
|
+
MIT Licence
|
6
|
+
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
8
|
+
|
9
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
10
|
+
|
11
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.markdown
CHANGED
@@ -235,20 +235,4 @@ To contribute some code:
|
|
235
235
|
- Don't merge into the master branch!
|
236
236
|
- see http://nvie.com/posts/a-successful-git-branching-model/ for more on how this is supposed to work.
|
237
237
|
* Wait for worldwide fame.
|
238
|
-
* Shrug and get on with you life when it doesn't arrive, but know you helped quite a few people in their life, even in a small way - 1000 raindrops will fill a bucket!
|
239
|
-
|
240
|
-
|
241
|
-
### Licence ###
|
242
|
-
|
243
|
-
Copyright (c) 2012 Iain Barnett
|
244
|
-
|
245
|
-
MIT Licence
|
246
|
-
|
247
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
248
|
-
|
249
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
250
|
-
|
251
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
252
|
-
|
253
|
-
|
254
|
-
i.e. be good!
|
238
|
+
* Shrug and get on with you life when it doesn't arrive, but know you helped quite a few people in their life, even in a small way - 1000 raindrops will fill a bucket!
|
data/sinatra-partial.gemspec
CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
13
13
|
s.description = %q{Just the partials helper in a gem. That is all.}
|
14
14
|
s.license = 'MIT'
|
15
15
|
|
16
|
-
s.add_dependency 'sinatra', "
|
16
|
+
s.add_dependency 'sinatra', ">=1.4"
|
17
17
|
|
18
18
|
s.files = `git ls-files`.split("\n")
|
19
19
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sinatra-partial
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Schneider
|
@@ -10,20 +10,20 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2017-07-28 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: sinatra
|
17
17
|
requirement: !ruby/object:Gem::Requirement
|
18
18
|
requirements:
|
19
|
-
- -
|
19
|
+
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
21
|
version: '1.4'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
|
-
- -
|
26
|
+
- - ">="
|
27
27
|
- !ruby/object:Gem::Version
|
28
28
|
version: '1.4'
|
29
29
|
description: Just the partials helper in a gem. That is all.
|
@@ -33,11 +33,12 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- .gitignore
|
37
|
-
- .rspec
|
38
|
-
- .travis.yml
|
36
|
+
- ".gitignore"
|
37
|
+
- ".rspec"
|
38
|
+
- ".travis.yml"
|
39
39
|
- CHANGES.markdown
|
40
40
|
- Gemfile
|
41
|
+
- LICENCE.txt
|
41
42
|
- README.markdown
|
42
43
|
- Rakefile
|
43
44
|
- examples/app_no_underscores/app.rb
|
@@ -104,17 +105,17 @@ require_paths:
|
|
104
105
|
- lib
|
105
106
|
required_ruby_version: !ruby/object:Gem::Requirement
|
106
107
|
requirements:
|
107
|
-
- -
|
108
|
+
- - ">="
|
108
109
|
- !ruby/object:Gem::Version
|
109
110
|
version: '0'
|
110
111
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
112
|
requirements:
|
112
|
-
- -
|
113
|
+
- - ">="
|
113
114
|
- !ruby/object:Gem::Version
|
114
115
|
version: '0'
|
115
116
|
requirements: []
|
116
117
|
rubyforge_project:
|
117
|
-
rubygems_version: 2.
|
118
|
+
rubygems_version: 2.6.8
|
118
119
|
signing_key:
|
119
120
|
specification_version: 4
|
120
121
|
summary: A sinatra extension for render partials.
|