workarea-share 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/Gemfile +1 -1
- data/Rakefile +4 -5
- data/lib/workarea/share/version.rb +1 -1
- data/test/integration/workarea/storefront/sharing_integration_test.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 044e4a763e4de1c1588b0ce34a837ec23e14f7435e3519b25b3eb22fee481787
|
4
|
+
data.tar.gz: 03a4334d51aebcec2ebf41675dc8caf6a1420083444b70b2efc08bc13271c47e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32a0a922e7a66f208eb6c9f749c1ede6d1394af0e32011ec8f691382c7c9f33890a11c1e7c217205283c44bfc13200a29730e598a5c0d5dff4b581b525e7b373
|
7
|
+
data.tar.gz: 9a35e56e148ada36f42fdf5dfc247ee8cdea5fe091102f8ed420a1f739ade3ba0a8d981ee930dba0c3b11777e875533dea69dafeb9cdac01be56965b45152588
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,21 @@
|
|
1
|
+
Workarea Share 1.3.1 (2020-02-05)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Make sharing integration test more permissive
|
5
|
+
|
6
|
+
It was reported that, when Haven Theme is installed in an app, the
|
7
|
+
`Workarea::Storefront::SharingIntegrationTest` begins to fail. The test
|
8
|
+
was previously testing if the value of`Workarea.config.email_from`
|
9
|
+
against an array of defined emails. However, since this configuration
|
10
|
+
can, and was, being set to a string containing more than just a simple
|
11
|
+
email address, the test was updated to look for the given email
|
12
|
+
substring within the configration value.
|
13
|
+
|
14
|
+
SHARELINKS-3
|
15
|
+
Curt Howard
|
16
|
+
|
17
|
+
|
18
|
+
|
1
19
|
Workarea Share 1.2.4 (2019-08-21)
|
2
20
|
--------------------------------------------------------------------------------
|
3
21
|
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
@@ -37,13 +37,12 @@ desc "Release version #{Workarea::Share::VERSION} of the gem"
|
|
37
37
|
task :release do
|
38
38
|
host = "https://#{ENV['BUNDLE_GEMS__WEBLINC__COM']}@gems.weblinc.com"
|
39
39
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
#system 'git push origin HEAD'
|
40
|
+
Rake::Task['workarea:changelog'].execute
|
41
|
+
system 'git add CHANGELOG.md'
|
42
|
+
system 'git commit -m "Update CHANGELOG"'
|
44
43
|
|
45
44
|
system "git tag -a v#{Workarea::Share::VERSION} -m 'Tagging #{Workarea::Share::VERSION}'"
|
46
|
-
system 'git push --tags'
|
45
|
+
system 'git push origin HEAD --follow-tags'
|
47
46
|
|
48
47
|
system 'gem build workarea-share.gemspec'
|
49
48
|
system "gem push workarea-share-#{Workarea::Share::VERSION}.gem"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workarea-share
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Duffy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workarea
|