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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c028928ee9139716224d87613ecc2a662212ff6bc7329f38080071a4d2010e3f
4
- data.tar.gz: 7a2806bd8629c9102de91d044ae086d2e9bb79214b6a1c01c8ab177b07be943c
3
+ metadata.gz: 044e4a763e4de1c1588b0ce34a837ec23e14f7435e3519b25b3eb22fee481787
4
+ data.tar.gz: 03a4334d51aebcec2ebf41675dc8caf6a1420083444b70b2efc08bc13271c47e
5
5
  SHA512:
6
- metadata.gz: 035abd0aa04c02db25ba526110d8c410c9fc1d17b50d1dfc919324181c903d14c33027a78fab062918cebf87ffb241a97a191aed703eeb259d057e8c87d118a3
7
- data.tar.gz: d11f074a9e078ae45ffde6000638b5a57211d9ca81c25247bfcd5cdaa7b11c8ecee1c3cbbe00889c8351df2d0ab00fbd79952c6ce72bfb282a6dc4ad48207405
6
+ metadata.gz: 32a0a922e7a66f208eb6c9f749c1ede6d1394af0e32011ec8f691382c7c9f33890a11c1e7c217205283c44bfc13200a29730e598a5c0d5dff4b581b525e7b373
7
+ data.tar.gz: 9a35e56e148ada36f42fdf5dfc247ee8cdea5fe091102f8ed420a1f739ade3ba0a8d981ee930dba0c3b11777e875533dea69dafeb9cdac01be56965b45152588
@@ -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
@@ -6,4 +6,4 @@ gemspec
6
6
  # To use a debugger
7
7
  # gem 'byebug', group: [:development, :test]
8
8
 
9
- gem 'workarea', github: 'workarea-commerce/workarea'
9
+ gem 'workarea', github: 'workarea-commerce/workarea', branch: 'v3.5-stable'
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
- #Rake::Task['workarea:changelog'].execute
41
- #system 'git add CHANGELOG.md'
42
- #system 'git commit -m "Update CHANGELOG"'
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"
@@ -1,5 +1,5 @@
1
1
  module Workarea
2
2
  module Share
3
- VERSION = '1.3.0'.freeze
3
+ VERSION = '1.3.1'.freeze
4
4
  end
5
5
  end
@@ -32,7 +32,7 @@ module Workarea
32
32
  end
33
33
 
34
34
  assert_includes(email.to, to_email)
35
- assert_includes(email.from, Workarea.config.email_from)
35
+ assert(email.from.any? { |e| Workarea.config.email_from.include?(e) })
36
36
  assert_includes(email.reply_to, from_email)
37
37
  end
38
38
  end
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.0
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: 2019-11-26 00:00:00.000000000 Z
11
+ date: 2020-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: workarea