workarea-wish_lists 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 +4 -4
- data/CHANGELOG.md +10 -0
- data/Gemfile +1 -2
- data/Rakefile +4 -5
- data/app/views/workarea/admin/users/_wishlist_import_export_nav.html.haml +9 -0
- data/config/initializers/append_points.rb +5 -0
- data/config/locales/en.yml +6 -0
- data/lib/workarea/wish_lists/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6447243829e104fb64a1226d8821382346c69cc89eaa44dc4cf46a5b24a11c4c
|
|
4
|
+
data.tar.gz: '08a4b760cf2d4cfadc450a16063849b75fa3af7194daf23b1bdd63b27c99273d'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d9fd3a420d9d12a25365d087852a68b085ae254be2385b84145b4aecd6526467d3a5b0242dac949621f2c9a77b24dd232ee574a59d4ce89e50ef726f02968ab
|
|
7
|
+
data.tar.gz: 0a18fcbe1ea2296a7922e5dbc428800e98727e69182250f20d64736d0057dac86ee49d9265654da8ed87d3ec6b0597ddb586f14be1299a14e38e2cf2cd0f1d6b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
Workarea Wish Lists 3.1.1 (2020-03-26)
|
|
2
|
+
--------------------------------------------------------------------------------
|
|
3
|
+
|
|
4
|
+
* Add wishlist import and export functionality to users index page
|
|
5
|
+
|
|
6
|
+
WISHLISTS-3
|
|
7
|
+
Jeff Yucis
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
1
11
|
Workarea Wish Lists 3.0.1 (2019-04-16)
|
|
2
12
|
--------------------------------------------------------------------------------
|
|
3
13
|
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
|
@@ -38,13 +38,12 @@ desc "Release version #{Workarea::WishLists::VERSION} of the gem"
|
|
|
38
38
|
task :release do
|
|
39
39
|
host = "https://#{ENV['BUNDLE_GEMS__WEBLINC__COM']}@gems.weblinc.com"
|
|
40
40
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
#system 'git push origin HEAD'
|
|
41
|
+
Rake::Task['workarea:changelog'].execute
|
|
42
|
+
system 'git add CHANGELOG.md'
|
|
43
|
+
system 'git commit -m "Update CHANGELOG"'
|
|
45
44
|
|
|
46
45
|
system "git tag -a v#{Workarea::WishLists::VERSION} -m 'Tagging #{Workarea::WishLists::VERSION}'"
|
|
47
|
-
system 'git push --tags'
|
|
46
|
+
system 'git push origin HEAD --follow-tags'
|
|
48
47
|
|
|
49
48
|
system 'gem build workarea-wish_lists.gemspec'
|
|
50
49
|
system "gem push workarea-wish_lists-#{Workarea::WishLists::VERSION}.gem"
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
.grid.grid--auto.grid--right.grid--middle
|
|
2
|
+
.grid__cell= link_to t('workarea.admin.users.wish_list_import_export_nav.wish_lists'), '#export-wish-lists', data: { tooltip: { interactive: true, side: 'bottom' } }
|
|
3
|
+
|
|
4
|
+
#export-wish-lists.tooltip-content
|
|
5
|
+
%p= t('workarea.admin.users.wish_list_import_export_nav.description')
|
|
6
|
+
.align-center
|
|
7
|
+
= link_to t('workarea.admin.users.wish_list_import_export_nav.import'), new_data_file_import_path(model_type: Workarea::WishList), return_to: users_path, class: 'text text--bold'
|
|
8
|
+
%span= t('workarea.admin.users.wish_list_import_export_nav.or')
|
|
9
|
+
= link_to t('workarea.admin.users.wish_list_import_export_nav.export'), new_data_file_export_path(model_type: Workarea::WishList), return_to: users_path, class: 'text text--bold'
|
data/config/locales/en.yml
CHANGED
|
@@ -19,6 +19,12 @@ en:
|
|
|
19
19
|
state: State
|
|
20
20
|
title: Wish list for %{user}
|
|
21
21
|
title_html: Wish list for %{user}
|
|
22
|
+
wish_list_import_export_nav:
|
|
23
|
+
description: You can bulk import and export wish lists here. To see a specific account's wish list, visit their detail page from the table below.
|
|
24
|
+
export: Export
|
|
25
|
+
import: Import
|
|
26
|
+
or: or
|
|
27
|
+
wish_lists: Wish Lists
|
|
22
28
|
fields:
|
|
23
29
|
adds: Adds
|
|
24
30
|
deletes: Deletes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: workarea-wish_lists
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bcrouse
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-03-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: workarea
|
|
@@ -94,6 +94,7 @@ files:
|
|
|
94
94
|
- app/views/workarea/admin/reports/wish_list_products.html.haml
|
|
95
95
|
- app/views/workarea/admin/users/_wish_list_card.html.haml
|
|
96
96
|
- app/views/workarea/admin/users/_wish_list_item_summary.html.haml
|
|
97
|
+
- app/views/workarea/admin/users/_wishlist_import_export_nav.html.haml
|
|
97
98
|
- app/views/workarea/admin/users/wish_list.html.haml
|
|
98
99
|
- app/views/workarea/storefront/carts/_move_to_wish_list.html.haml
|
|
99
100
|
- app/views/workarea/storefront/pages/_wish_lists_robots.text.erb
|