sinatra-exstatic-assets 3.1.0 → 3.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 05a627944971257f2082ae5953e5df01c2f65965
4
- data.tar.gz: edeb2413e71cd8139c9d44618be83f2c2ddfb450
3
+ metadata.gz: 9decb4a51a109c766b3aa5f48676355a73f34fd1
4
+ data.tar.gz: 1ce9e710e6cb852d329a1d1c8e82c81f8511154e
5
5
  SHA512:
6
- metadata.gz: ecd83526a18cc3f4221186585705acb464f3f317a7318fe99f21eda4c890daa933621eb3147b46868faf848fa8361427d36b5ef36f2fd904c8b1fa95e613064a
7
- data.tar.gz: b82d28f9c9eba146b27803ba630030783e8812f54b4e4a5f75db00f8eef6838843ca9fe701bb4562cb0516d0fee98dccaeb04fd4c066765281cc6a942a21e693
6
+ metadata.gz: 27794093e7a558a173001ff13f9661c694e92cb79199a9270149461462544ed36e8fdbc5cf94b1cf97fa409b6e7e3443034e7de4ec49551d7455697da86211b1
7
+ data.tar.gz: 645f6fcb1d25b82d378c1a7400928961fc51480bac49d281e31dcfb15cb5f6a5048628f94e8d1567d6cbc90e236c918a888cdcc9a9fed572985facfcfd53991c
data/CHANGES.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # CH CH CH CHANGES! #
2
2
 
3
+ ## Saturday the 13th of January 2018, v3.1.1 ##
4
+
5
+ - Sinatra v2 is out, checked the lib works with it, loosened the version constraints
6
+ in the gemspec.
7
+
8
+ ----
9
+
10
+
3
11
  ## Friday the 2nd of December 2016, v3.1.0 ##
4
12
 
5
13
  - Fixed a subtle bug with script_name.
@@ -1,6 +1,6 @@
1
1
  module Sinatra
2
2
  module Exstatic
3
3
  # Library version
4
- VERSION = "3.1.0"
4
+ VERSION = "3.1.1"
5
5
  end
6
6
  end
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
12
12
  s.summary = %q{A Sinatra extension of helpers for static assets.}
13
13
  s.description = %q{Helpers for writing the HTML and caching of static assets. A fork of Sinatra Static Assets.}
14
14
 
15
- s.add_runtime_dependency 'sinatra', '~>1'
15
+ s.add_runtime_dependency 'sinatra', '>= 1.0.0', "<= 3.0.0"
16
16
 
17
17
  s.files = `git ls-files`.split("\n")
18
18
  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-exstatic-assets
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Włodek Bzyl
@@ -9,22 +9,28 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-12-02 00:00:00.000000000 Z
12
+ date: 2018-01-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sinatra
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - "~>"
18
+ - - '>='
19
19
  - !ruby/object:Gem::Version
20
- version: '1'
20
+ version: 1.0.0
21
+ - - <=
22
+ - !ruby/object:Gem::Version
23
+ version: 3.0.0
21
24
  type: :runtime
22
25
  prerelease: false
23
26
  version_requirements: !ruby/object:Gem::Requirement
24
27
  requirements:
25
- - - "~>"
28
+ - - '>='
29
+ - !ruby/object:Gem::Version
30
+ version: 1.0.0
31
+ - - <=
26
32
  - !ruby/object:Gem::Version
27
- version: '1'
33
+ version: 3.0.0
28
34
  description: Helpers for writing the HTML and caching of static assets. A fork of
29
35
  Sinatra Static Assets.
30
36
  email:
@@ -33,8 +39,8 @@ executables: []
33
39
  extensions: []
34
40
  extra_rdoc_files: []
35
41
  files:
36
- - ".gitignore"
37
- - ".travis.yml"
42
+ - .gitignore
43
+ - .travis.yml
38
44
  - CHANGES.md
39
45
  - Gemfile
40
46
  - LICENCE
@@ -80,17 +86,17 @@ require_paths:
80
86
  - lib
81
87
  required_ruby_version: !ruby/object:Gem::Requirement
82
88
  requirements:
83
- - - ">="
89
+ - - '>='
84
90
  - !ruby/object:Gem::Version
85
91
  version: '0'
86
92
  required_rubygems_version: !ruby/object:Gem::Requirement
87
93
  requirements:
88
- - - ">="
94
+ - - '>='
89
95
  - !ruby/object:Gem::Version
90
96
  version: '0'
91
97
  requirements: []
92
98
  rubyforge_project:
93
- rubygems_version: 2.4.5
99
+ rubygems_version: 2.0.14
94
100
  signing_key:
95
101
  specification_version: 4
96
102
  summary: A Sinatra extension of helpers for static assets.