Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ jobs:
strategy:
matrix:
ruby:
- 3.0.3
- 3.0.6
- 3.1.4
- 3.2.2

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
plug (0.2.0)
plug (0.2.3)
aasm
activeresource
haml-rails
Expand Down
2 changes: 1 addition & 1 deletion app/views/plug/features/index.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
- @features.each do |feature|
%tr
%td= link_to sanitize(feature.name), edit_feature_path(feature), class: 'strong'
%td= sanitize(feature.description)
%td= sanitize(feature.description, tags: %w(a p), attributes: %w(href))
%td= feature.slug
%td{ width: 150, align: 'center' }
- if feature.state == 'enabled'
Expand Down
2 changes: 1 addition & 1 deletion app/views/plug/site_notices/index.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
- @site_notices.each do |site_notice|
%tr
%td= link_to sanitize(site_notice.name), edit_site_notice_path(site_notice), class: 'strong'
%td= sanitize(site_notice.notice.html_safe)
%td= sanitize(site_notice.notice.html_safe, tags: %w(a p), attributes: %w(href))
%td= site_notice.slug
%td{ width: 150, align: 'center' }
- if site_notice.state == 'enabled'
Expand Down
2 changes: 1 addition & 1 deletion lib/plug/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Plug
VERSION = '0.2.0' # Update version in package.json too
VERSION = '0.2.3' # Update version in package.json too
end
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@digitalnz/plug",
"version": "0.2.0",
"version": "0.2.3",
"description": "A Rails engine to turn on/off features (Feature flipper).",
"main": "src/base.js",
"files": [
Expand Down