workarea-reviews 3.1.0 → 3.1.1

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: 7135d1659f6d6564addc0f472fbf72a6225098a29a9de3e9a3c16af4724b364e
4
- data.tar.gz: fdfe10e7e4e59e7bfb4b4c08f05dc2a8190acc36c2bd5602277c2298a2f4072e
3
+ metadata.gz: 9b0b2d9372daaeb9ee3c57719b48614dd6d7669fb4565ef41c27b42d6fe62be8
4
+ data.tar.gz: 8c96afdcc3148cd43dc0abff152e827eda68884338a0d6b6c825ef01dca2e579
5
5
  SHA512:
6
- metadata.gz: 294e2feacac1639da7c4b927fd9580f8c5e000bbd93885893a1c647cd980327ff8dd6d01d83db044cfc56da5dc71f2c62825deb07f71f85e042eeb59a54babb9
7
- data.tar.gz: 014a4986c50d89dad1f932d8506d3171c776c91aedf83e959d6bab7e9a0d365255d31ce99aa960229189a959c1e744bb2c2ba889f46863677dd3abe4acfb2bb0
6
+ metadata.gz: 19b6581073824b8c0c095c82a5e9c00cc24245ce3835e3cf182bcbf7ed862ad67c4bd152dc290fb6c7c79a37c2bf0cb4056198dee55d5cdb06c143ab0d467e56
7
+ data.tar.gz: 4c6513727fe2685630ab37f9468de14c267a7d3695b955e6188835920874d053e2e17c184d06810ca443d12a9a6919d129dfa6b872884bfa01beb165bdee4f7d
@@ -1,3 +1,15 @@
1
+ Workarea Reviews 3.1.1 (2020-01-07)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Fix failing reviews helper test
5
+
6
+ Idk how we didn't catch this, like, 6 years ago.
7
+
8
+ REVIEWS-5
9
+ Curt Howard
10
+
11
+
12
+
1
13
  Workarea Reviews 3.1.0 (2019-11-26)
2
14
  --------------------------------------------------------------------------------
3
15
 
data/Gemfile CHANGED
@@ -5,4 +5,4 @@ gemspec
5
5
 
6
6
  gem 'byebug'
7
7
 
8
- gem 'workarea', github: 'workarea-commerce/workarea'
8
+ gem 'workarea', github: 'workarea-commerce/workarea', branch: 'v3.5-stable'
data/Rakefile CHANGED
@@ -31,12 +31,12 @@ task :release do
31
31
  Rake::Task['workarea:changelog'].execute
32
32
  system 'git add CHANGELOG.md'
33
33
  system 'git commit -m "Update CHANGELOG"'
34
- system 'git push origin HEAD'
35
34
 
36
35
  system "git tag -a v#{Workarea::Reviews::VERSION} -m 'Tagging #{Workarea::Reviews::VERSION}'"
37
- system 'git push --tags'
36
+ system 'git push origin HEAD --follow-tags'
38
37
 
39
38
  system 'gem build workarea-reviews.gemspec'
39
+ system "gem push workarea-reviews-#{Workarea::Reviews::VERSION}.gem"
40
40
  system "gem push workarea-reviews-#{Workarea::Reviews::VERSION}.gem --host #{host}"
41
41
  system "rm workarea-reviews-#{Workarea::Reviews::VERSION}.gem"
42
42
  end
@@ -1,5 +1,5 @@
1
1
  module Workarea
2
2
  module Reviews
3
- VERSION = '3.1.0'.freeze
3
+ VERSION = '3.1.1'.freeze
4
4
  end
5
5
  end
@@ -4,7 +4,6 @@ module Workarea
4
4
  module Storefront
5
5
  class ReviewsHelperTest < ViewTest
6
6
  def test_rating_stars_displays_correct_rating
7
- assert_match(/1 out of 5 stars/, rating_stars(1))
8
7
  assert_match(/1(?:\.0)? out of 5 stars/, rating_stars(1))
9
8
  assert_match(/2\.5 out of 5 stars/, rating_stars(2.5))
10
9
  assert_match(/4\.25 out of 5 stars/, rating_stars(4.251))
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: workarea-reviews
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
  - Ben Crouse
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-02 00:00:00.000000000 Z
11
+ date: 2020-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: workarea