opal-sprockets 0.4.3.0.11.0.3.7 → 0.4.4.1.0.3.7

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
  SHA256:
3
- metadata.gz: 6f95fdc4e382f1ada27df5500b7f5031249a16380645f7d7393c90f54b909be8
4
- data.tar.gz: ad04703084e40349993f3307d8e0e5bc6b65d8050743141a1bc5d78f564b06c4
3
+ metadata.gz: 29134bcb2e75192d6c97a28a4d758196b42df277d04acdabbdbc445b58f05236
4
+ data.tar.gz: 54c92ccd5276b53ebcc7947cbc449419295614202023ccb97159b3b6fb0be0fb
5
5
  SHA512:
6
- metadata.gz: a5ad76d6ba7b599f4e0be3a61a7bbb905658cbf428232b0c8394c4281ecd4a2da945252bcfda1a0c5bfebe864b757f8bb7c7552dd7430fc65bfe4ac668c05551
7
- data.tar.gz: 403aa5d8e5fa164348c5caaa77396379ac76ea61f74aab6a5f498e70ea5df2a4f7d0e1829b21714c515775424d96e9633771818ca7c9e2b5ce8aff679a7caafa
6
+ metadata.gz: b4d3288b3215ef08ca4c099c8ec16c06c97c2f8e20a30aa5e495e4183bb7ba0d9002a53de46ec9c0f576e826c3c06522477d353f602b6256b20f81f5151127a5
7
+ data.tar.gz: bb1cdf3ab5d589a609abb883e634fa61d457d93c461db889bd554065b28681a7c77f26bf9d036ee6e52e46b01093c31a52b3d7fdb0be8ca54675c3f9534debaa
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.4.4](https://github.com/opal/opal-sprockets/compare/v0.4.3.0.11.0.3.7...v0.4.4.1.0.3.7)
4
+
5
+ *12 May 2019*
6
+
7
+ - Target Opal v1.0
8
+
9
+
3
10
  ## [v0.4.3](https://github.com/opal/opal-sprockets/compare/v0.4.2.0.11.0.3.1...v0.4.3.0.11.0.3.7)
4
11
 
5
12
  *13 February 2019*
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Opal Sprockets
2
2
 
3
- _Adds sprockets support for [Opal](http://opalrb.org)._
3
+ _Adds sprockets support for [Opal](http://opalrb.com)._
4
4
 
5
5
  ## Installation
6
6
 
@@ -1,8 +1,12 @@
1
1
  module Opal
2
2
  module Sprockets
3
- BASE_VERSION = '0.4.3'
4
- OPAL_VERSION = '0.11.0'
3
+ BASE_VERSION = '0.4.4'
4
+ OPAL_VERSION = '1.0.0'
5
5
  SPROCKETS_VERSION = '3.7'
6
- VERSION = "#{BASE_VERSION}.#{OPAL_VERSION}.#{SPROCKETS_VERSION}"
6
+
7
+ # Just keep the first two segments of dependencies' versions
8
+ v = -> v { v.split('.')[0..1].compact.join('.') }
9
+
10
+ VERSION = "#{BASE_VERSION}.#{v[OPAL_VERSION]}.#{v[SPROCKETS_VERSION]}"
7
11
  end
8
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opal-sprockets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3.0.11.0.3.7
4
+ version: 0.4.4.1.0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elia Schito
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-02-12 00:00:00.000000000 Z
12
+ date: 2019-05-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sprockets
@@ -31,14 +31,14 @@ dependencies:
31
31
  requirements:
32
32
  - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: 0.11.0
34
+ version: 1.0.0
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: 0.11.0
41
+ version: 1.0.0
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: tilt
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -177,7 +177,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
177
177
  - !ruby/object:Gem::Version
178
178
  version: '0'
179
179
  requirements: []
180
- rubygems_version: 3.0.2
180
+ rubygems_version: 3.0.3
181
181
  signing_key:
182
182
  specification_version: 4
183
183
  summary: Sprockets support for Opal.