ideasbugs 0.10.0 → 0.10.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/lib/ideasbugs/seeds.rb +18 -12
- data/lib/ideasbugs/version.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: d3b0669f68f65a7cef3986dac6a2ca57938b1d38942338283593e026003e2688
|
|
4
|
+
data.tar.gz: ed01d83195291ee4cdc81bbf43f043d520c772155780c14a9e070fe0c1e4a2a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 866b49d6047d00eaef7b79bf419fd8d0762e7ab1a5c1ea45c04b6cb121aa7f929c7049ca41bd9dfe7759bedf2fb46d69d6b8b017cf5e612a6be5046008472217
|
|
7
|
+
data.tar.gz: 8f25c5e661173324bce15de5ab9ca6e077d04da693231e3df9cf4e46f5a053062e678a2a8c82caedb2e1b47d2539b81036c97c496eb489f32888b2b1c2b0be4a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.10.1
|
|
4
|
+
|
|
5
|
+
- **The demo inbox now teaches the Ideasbugs workflow.** Its open, in-review,
|
|
6
|
+
and resolved records form a short path through captured request context,
|
|
7
|
+
triage, kinds and sections, search, production authorization, attribution,
|
|
8
|
+
and gated screenshots instead of posing as unrelated customer reports.
|
|
9
|
+
- `ideasbugs:seed_demo` keeps the existing demo identities, so rerunning it
|
|
10
|
+
upgrades those three rows in place. That also means it overwrites edits made
|
|
11
|
+
to the gem-owned demo rows; real feedback is not touched.
|
|
12
|
+
|
|
3
13
|
## 0.10.0
|
|
4
14
|
|
|
5
15
|
- **Triage is one switch now.** Open, In review and Resolved sit in a single pill
|
data/lib/ideasbugs/seeds.rb
CHANGED
|
@@ -6,29 +6,35 @@ module Ideasbugs
|
|
|
6
6
|
{
|
|
7
7
|
seed_id: 'checkout-error',
|
|
8
8
|
kind: 'bug',
|
|
9
|
-
section: '
|
|
10
|
-
message: '
|
|
9
|
+
section: '1. Try triage',
|
|
10
|
+
message: 'Start here: this open bug shows what the widget captures — kind, section, page URL, ' \
|
|
11
|
+
'browser context, and an author when you configure one. Move it to In review as your ' \
|
|
12
|
+
'first triage action.',
|
|
11
13
|
status: 'open',
|
|
12
|
-
page_url: '/checkout',
|
|
13
|
-
author_label: 'Demo
|
|
14
|
+
page_url: '/checkout?demo=ideasbugs',
|
|
15
|
+
author_label: 'Demo customer · open this first'
|
|
14
16
|
},
|
|
15
17
|
{
|
|
16
18
|
seed_id: 'saved-filters',
|
|
17
19
|
kind: 'feature',
|
|
18
|
-
section: '
|
|
19
|
-
message: '
|
|
20
|
+
section: '2. Shape the inbox',
|
|
21
|
+
message: 'This feature request is already In review so you can compare workflow states. Set ' \
|
|
22
|
+
'config.sections to your product areas, adjust config.kinds if needed, then use the board ' \
|
|
23
|
+
'filters and search to keep recurring themes visible.',
|
|
20
24
|
status: 'in_review',
|
|
21
|
-
page_url: '/reports
|
|
22
|
-
author_label: 'Demo
|
|
25
|
+
page_url: '/reports?demo=ideasbugs',
|
|
26
|
+
author_label: 'Demo product manager · compare states'
|
|
23
27
|
},
|
|
24
28
|
{
|
|
25
29
|
seed_id: 'export-confusing',
|
|
26
30
|
kind: 'other',
|
|
27
|
-
section: '
|
|
28
|
-
message: '
|
|
31
|
+
section: '3. Ship safely',
|
|
32
|
+
message: 'This resolved item is your launch checklist: render ideasbugs_tag, set authorize_admin ' \
|
|
33
|
+
'before production, and configure current_user plus author_label when you want attributed ' \
|
|
34
|
+
'feedback. Screenshots remain behind the dashboard gate.',
|
|
29
35
|
status: 'resolved',
|
|
30
|
-
page_url: '/settings
|
|
31
|
-
author_label: 'Demo
|
|
36
|
+
page_url: '/settings?demo=ideasbugs',
|
|
37
|
+
author_label: 'Demo admin · launch checklist'
|
|
32
38
|
}
|
|
33
39
|
].freeze
|
|
34
40
|
|
data/lib/ideasbugs/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ideasbugs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.10.
|
|
4
|
+
version: 0.10.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yaroslav Shmarov
|
|
@@ -120,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
120
120
|
- !ruby/object:Gem::Version
|
|
121
121
|
version: '0'
|
|
122
122
|
requirements: []
|
|
123
|
-
rubygems_version:
|
|
123
|
+
rubygems_version: 4.0.10
|
|
124
124
|
specification_version: 4
|
|
125
125
|
summary: 'In-app product feedback collection for Rails: a drop-in widget and a built-in
|
|
126
126
|
triage dashboard.'
|