Skip to content

Commit c8dceb4

Browse files
committed
Add adminstrate gem
1 parent 3d90f2a commit c8dceb4

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

Gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ gem "vite_rails", group: [:default, :wasm] # Leverage Vite to power the frontend
2323
gem "bcrypt", "~> 3.1.7", group: [:default, :wasm] # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
2424
gem "flipper", group: [:default, :wasm] # Feature flipping for Ruby [https://www.flippercloud.io/]
2525
gem "flipper-active_record" # ActiveRecord adapter for Flipper [https://www.flippercloud.io/docs/adapters/active-record]
26-
gem "flipper-ui" # UI for the Flipper gem [https://www.flippercloud.io/docs/ui]
2726
gem "device_detector" # DeviceDetector is a precise and fast user agent parser and device detector written in Ruby [https://github.com/podigee/device_detector]
2827
gem "warden", group: [:default, :wasm] # General Rack Authentication Framework [https://github.com/wardencommunity/warden]
2928
gem "postmark-rails" # Postmark Rails gem [https://github.com/ActiveCampaign/postmark-rails]
@@ -48,6 +47,9 @@ gem "litestream" # Standalone streaming replication for SQLite [https://litestre
4847
gem "web-push" # Web Push library for Ruby [https://github.com/pushpad/web-push]
4948
gem "fog-aws", require: false # Module for the 'fog' gem to support Amazon Web Services [https://github.com/fog/fog-aws]
5049

50+
# Admin
51+
gem "administrate" # A Rails engine that helps you put together a super-flexible admin dashboard [https://github.com/thoughtbot/administrate]
52+
gem "flipper-ui" # UI for the Flipper gem [https://www.flippercloud.io/docs/ui]
5153
gem "mission_control-jobs" # Dashboard for Active Job [https://github.com/basecamp/mission_control-jobs]
5254

5355
group :development do

Gemfile.lock

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,14 @@ GEM
8282
tzinfo (~> 2.0)
8383
addressable (2.8.7)
8484
public_suffix (>= 2.0.2, < 7.0)
85+
administrate (0.20.1)
86+
actionpack (>= 6.0, < 8.0)
87+
actionview (>= 6.0, < 8.0)
88+
activerecord (>= 6.0, < 8.0)
89+
jquery-rails (~> 4.6.0)
90+
kaminari (~> 1.2.2)
91+
sassc-rails (~> 2.1)
92+
selectize-rails (~> 0.6)
8593
ast (2.4.2)
8694
base64 (0.2.0)
8795
bcrypt (3.1.20)
@@ -191,6 +199,8 @@ GEM
191199
concurrent-ruby (~> 1.1)
192200
webrick (~> 1.7)
193201
websocket-driver (~> 0.7)
202+
ffi (1.17.0-arm64-darwin)
203+
ffi (1.17.0-x86_64-linux-gnu)
194204
flipper (1.3.0)
195205
concurrent-ruby (< 2)
196206
flipper-active_record (1.3.0)
@@ -244,10 +254,26 @@ GEM
244254
irb (1.14.0)
245255
rdoc (>= 4.0.0)
246256
reline (>= 0.4.2)
257+
jquery-rails (4.6.0)
258+
rails-dom-testing (>= 1, < 3)
259+
railties (>= 4.2.0)
260+
thor (>= 0.14, < 2.0)
247261
js (2.6.2)
248262
json (2.7.2)
249263
jwt (2.8.2)
250264
base64
265+
kaminari (1.2.2)
266+
activesupport (>= 4.1.0)
267+
kaminari-actionview (= 1.2.2)
268+
kaminari-activerecord (= 1.2.2)
269+
kaminari-core (= 1.2.2)
270+
kaminari-actionview (1.2.2)
271+
actionview
272+
kaminari-core (= 1.2.2)
273+
kaminari-activerecord (1.2.2)
274+
activerecord
275+
kaminari-core (= 1.2.2)
276+
kaminari-core (1.2.2)
251277
language_server-protocol (3.17.0.3)
252278
launchy (3.0.1)
253279
addressable (~> 2.8)
@@ -435,6 +461,15 @@ GEM
435461
sanitize (6.1.1)
436462
crass (~> 1.0.2)
437463
nokogiri (>= 1.12.0)
464+
sassc (2.4.0)
465+
ffi (~> 1.9)
466+
sassc-rails (2.1.2)
467+
railties (>= 4.0.0)
468+
sassc (>= 2.0)
469+
sprockets (> 3.0)
470+
sprockets-rails
471+
tilt
472+
selectize-rails (0.12.6)
438473
sexp_processor (4.17.2)
439474
simplecov (0.22.0)
440475
docile (~> 1.1)
@@ -493,6 +528,7 @@ GEM
493528
stringio (3.1.1)
494529
strscan (3.1.0)
495530
thor (1.3.1)
531+
tilt (2.4.0)
496532
timeout (0.4.1)
497533
turbo-rails (2.0.6)
498534
actionpack (>= 6.0.0)
@@ -545,6 +581,7 @@ PLATFORMS
545581
DEPENDENCIES
546582
activerecord-enhancedsqlite3-adapter
547583
activerecord-nulldb-adapter
584+
administrate
548585
bcrypt (~> 3.1.7)
549586
bootsnap
550587
brakeman

0 commit comments

Comments
 (0)