diff options
author | hellekin <hellekin@cepheide.org> | 2020-10-05 21:40:05 +0200 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2020-10-05 21:40:05 +0200 |
commit | 81fb71f0510a5464634a65d97939f6fa54f419dd (patch) | |
tree | ea568f279b58a67f50c8d907eacb5901e031e197 /Gemfile.lock | |
parent | 1d53b3c26f4167be4e19e508c96a617d79c67363 (diff) | |
download | incommon-map-81fb71f0510a5464634a65d97939f6fa54f419dd.tar.gz |
Use pry and bitfields
Pry is a great console enhancement for development.
You can navigate through code and object with `cd` and `ls`,
or use `show-method foo` to see how it's written...
Bitfields allow to store multiple flags in an efficient integer.
It will be used to keep track of a User's roles within an Agent.
Pry: https://pry.github.io/
Pry-Rails: https://github.com/rweng/pry-rails
Bitfields: https://github.com/grosser/bitfields
Diffstat (limited to 'Gemfile.lock')
-rw-r--r-- | Gemfile.lock | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Gemfile.lock b/Gemfile.lock index 74deacd..dc66e9a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -57,10 +57,13 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2, >= 2.2.2) bindex (0.8.1) + bitfields (0.14.0) + activerecord (>= 5.1) bootsnap (1.4.8) msgpack (~> 1.0) builder (3.2.4) byebug (11.1.3) + coderay (1.1.3) concurrent-ruby (1.1.7) crass (1.0.6) erubi (1.9.0) @@ -91,6 +94,11 @@ GEM nokogiri (1.10.10) mini_portile2 (~> 2.4.0) pg (1.2.3) + pry (0.13.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-rails (0.3.9) + pry (>= 0.10.4) puma (4.3.6) nio4r (~> 2.0) rack (2.2.3) @@ -175,11 +183,14 @@ PLATFORMS ruby DEPENDENCIES + bitfields bootsnap (>= 1.4.2) byebug jbuilder (~> 2.7) listen (~> 3.2) pg (>= 0.18, < 2.0) + pry + pry-rails puma (~> 4.1) rails (~> 6.0.3, >= 6.0.3.2) sass-rails (>= 6) |