diff --git a/bullet_train-api/Gemfile b/bullet_train-api/Gemfile index b0978267d..9c6b4893c 100644 --- a/bullet_train-api/Gemfile +++ b/bullet_train-api/Gemfile @@ -12,6 +12,10 @@ gem "bullet_train", path: "../bullet_train" gem "bullet_train-fields", path: "../bullet_train-fields" gem "bullet_train-super_scaffolding", path: "../bullet_train-super_scaffolding" gem "bullet_train-super_load_and_authorize_resource", path: "../bullet_train-super_load_and_authorize_resource" +gem "bullet_train-has_uuid", path: "../bullet_train-has_uuid" +gem "bullet_train-roles", path: "../bullet_train-roles" +gem "bullet_train-scope_validator", path: "../bullet_train-scope_validator" +gem "bullet_train-themes", path: "../bullet_train-themes" # Start debugger with binding.b [https://github.com/ruby/debug] # gem "debug", ">= 1.0.0" diff --git a/bullet_train-api/Gemfile.lock b/bullet_train-api/Gemfile.lock index 37165a405..16409a329 100644 --- a/bullet_train-api/Gemfile.lock +++ b/bullet_train-api/Gemfile.lock @@ -7,6 +7,26 @@ PATH phonelib rails (>= 6.0.0) +PATH + remote: ../bullet_train-has_uuid + specs: + bullet_train-has_uuid (1.10.0) + rails (>= 6.0.0) + +PATH + remote: ../bullet_train-roles + specs: + bullet_train-roles (1.10.0) + active_hash + activesupport + cancancan + +PATH + remote: ../bullet_train-scope_validator + specs: + bullet_train-scope_validator (1.10.0) + rails + PATH remote: ../bullet_train-super_load_and_authorize_resource specs: @@ -23,6 +43,14 @@ PATH masamune-ast (~> 2.0.2) rails (>= 6.0.0) +PATH + remote: ../bullet_train-themes + specs: + bullet_train-themes (1.10.0) + bullet_train-fields + nice_partials (~> 0.9) + rails (>= 6.0.0) + PATH remote: ../bullet_train specs: @@ -154,17 +182,8 @@ GEM base64 (0.1.1) bcrypt (3.1.19) builder (3.2.4) - bullet_train-has_uuid (1.4.6) - rails (>= 6.0.0) - bullet_train-roles (1.4.6) - active_hash - activesupport - cancancan bullet_train-routes (1.0.0) rails (>= 6.0.0) - bullet_train-scope_validator (1.4.6) - bullet_train-themes (1.4.6) - rails (>= 6.0.0) cable_ready (5.0.1) actionpack (>= 5.2) actionview (>= 5.2) @@ -452,8 +471,12 @@ DEPENDENCIES bullet_train! bullet_train-api! bullet_train-fields! + bullet_train-has_uuid! + bullet_train-roles! + bullet_train-scope_validator! bullet_train-super_load_and_authorize_resource! bullet_train-super_scaffolding! + bullet_train-themes! minitest-reporters sprockets-rails sqlite3 (< 2) diff --git a/bullet_train-incoming_webhooks/Gemfile b/bullet_train-incoming_webhooks/Gemfile index fd13f9696..b848b4e3e 100644 --- a/bullet_train-incoming_webhooks/Gemfile +++ b/bullet_train-incoming_webhooks/Gemfile @@ -13,6 +13,10 @@ gem "bullet_train-super_load_and_authorize_resource", path: "../bullet_train-sup gem "bullet_train-api", path: "../bullet_train-api" gem "bullet_train-fields", path: "../bullet_train-fields" gem "bullet_train", path: "../bullet_train" +gem "bullet_train-roles", path: "../bullet_train-roles" +gem "bullet_train-has_uuid", path: "../bullet_train-has_uuid" +gem "bullet_train-scope_validator", path: "../bullet_train-scope_validator" +gem "bullet_train-themes", path: "../bullet_train-themes" group :test do gem "minitest-reporters" diff --git a/bullet_train-incoming_webhooks/Gemfile.lock b/bullet_train-incoming_webhooks/Gemfile.lock index 159c8a163..5f8805366 100644 --- a/bullet_train-incoming_webhooks/Gemfile.lock +++ b/bullet_train-incoming_webhooks/Gemfile.lock @@ -22,6 +22,26 @@ PATH phonelib rails (>= 6.0.0) +PATH + remote: ../bullet_train-has_uuid + specs: + bullet_train-has_uuid (1.10.0) + rails (>= 6.0.0) + +PATH + remote: ../bullet_train-roles + specs: + bullet_train-roles (1.10.0) + active_hash + activesupport + cancancan + +PATH + remote: ../bullet_train-scope_validator + specs: + bullet_train-scope_validator (1.10.0) + rails + PATH remote: ../bullet_train-super_load_and_authorize_resource specs: @@ -38,6 +58,14 @@ PATH masamune-ast (~> 2.0.2) rails (>= 6.0.0) +PATH + remote: ../bullet_train-themes + specs: + bullet_train-themes (1.10.0) + bullet_train-fields + nice_partials (~> 0.9) + rails (>= 6.0.0) + PATH remote: ../bullet_train specs: @@ -172,17 +200,8 @@ GEM bcrypt (3.1.19) bigdecimal (3.1.4) builder (3.2.4) - bullet_train-has_uuid (1.6.13) - rails (>= 6.0.0) - bullet_train-roles (1.6.13) - active_hash - activesupport - cancancan bullet_train-routes (1.0.0) rails (>= 6.0.0) - bullet_train-scope_validator (1.6.13) - bullet_train-themes (1.6.13) - rails (>= 6.0.0) cable_ready (5.0.3) actionpack (>= 5.2) actionview (>= 5.2) @@ -457,9 +476,13 @@ DEPENDENCIES bullet_train! bullet_train-api! bullet_train-fields! + bullet_train-has_uuid! bullet_train-incoming_webhooks! + bullet_train-roles! + bullet_train-scope_validator! bullet_train-super_load_and_authorize_resource! bullet_train-super_scaffolding! + bullet_train-themes! factory_bot_rails minitest-reporters pg (~> 1.3) diff --git a/bullet_train-integrations-stripe/Gemfile b/bullet_train-integrations-stripe/Gemfile index 47de5470d..677705299 100644 --- a/bullet_train-integrations-stripe/Gemfile +++ b/bullet_train-integrations-stripe/Gemfile @@ -13,6 +13,11 @@ gem "bullet_train-api", path: "../bullet_train-api" gem "bullet_train-fields", path: "../bullet_train-fields" gem "bullet_train-super_scaffolding", path: "../bullet_train-super_scaffolding" gem "bullet_train-incoming_webhooks", path: "../bullet_train-incoming_webhooks" +gem "bullet_train-has_uuid", path: "../bullet_train-has_uuid" +gem "bullet_train-roles", path: "../bullet_train-roles" +gem "bullet_train-scope_validator", path: "../bullet_train-scope_validator" +gem "bullet_train-super_load_and_authorize_resource", path: "../bullet_train-super_load_and_authorize_resource" +gem "bullet_train-themes", path: "../bullet_train-themes" group :test do gem "minitest-reporters" diff --git a/bullet_train-integrations-stripe/Gemfile.lock b/bullet_train-integrations-stripe/Gemfile.lock index cdceb86b1..a9fd83823 100644 --- a/bullet_train-integrations-stripe/Gemfile.lock +++ b/bullet_train-integrations-stripe/Gemfile.lock @@ -22,6 +22,12 @@ PATH phonelib rails (>= 6.0.0) +PATH + remote: ../bullet_train-has_uuid + specs: + bullet_train-has_uuid (1.10.0) + rails (>= 6.0.0) + PATH remote: ../bullet_train-incoming_webhooks specs: @@ -31,6 +37,27 @@ PATH bullet_train-super_scaffolding rails (>= 6.0.0) +PATH + remote: ../bullet_train-roles + specs: + bullet_train-roles (1.10.0) + active_hash + activesupport + cancancan + +PATH + remote: ../bullet_train-scope_validator + specs: + bullet_train-scope_validator (1.10.0) + rails + +PATH + remote: ../bullet_train-super_load_and_authorize_resource + specs: + bullet_train-super_load_and_authorize_resource (1.10.0) + cancancan + rails (>= 6.0.0) + PATH remote: ../bullet_train-super_scaffolding specs: @@ -40,6 +67,14 @@ PATH masamune-ast (~> 2.0.2) rails (>= 6.0.0) +PATH + remote: ../bullet_train-themes + specs: + bullet_train-themes (1.10.0) + bullet_train-fields + nice_partials (~> 0.9) + rails (>= 6.0.0) + PATH remote: ../bullet_train specs: @@ -175,20 +210,8 @@ GEM bcrypt (3.1.19) bigdecimal (3.1.4) builder (3.2.4) - bullet_train-has_uuid (1.6.13) - rails (>= 6.0.0) - bullet_train-roles (1.6.13) - active_hash - activesupport - cancancan bullet_train-routes (1.0.0) rails (>= 6.0.0) - bullet_train-scope_validator (1.6.13) - bullet_train-super_load_and_authorize_resource (1.6.13) - cancancan - rails (>= 6.0.0) - bullet_train-themes (1.6.13) - rails (>= 6.0.0) cable_ready (5.0.3) actionpack (>= 5.2) actionview (>= 5.2) @@ -479,9 +502,14 @@ DEPENDENCIES bullet_train! bullet_train-api! bullet_train-fields! + bullet_train-has_uuid! bullet_train-incoming_webhooks! bullet_train-integrations-stripe! + bullet_train-roles! + bullet_train-scope_validator! + bullet_train-super_load_and_authorize_resource! bullet_train-super_scaffolding! + bullet_train-themes! minitest-reporters sprockets-rails sqlite3 (< 2) diff --git a/bullet_train-outgoing_webhooks/Gemfile b/bullet_train-outgoing_webhooks/Gemfile index ff5dfa766..0f96bd7ac 100644 --- a/bullet_train-outgoing_webhooks/Gemfile +++ b/bullet_train-outgoing_webhooks/Gemfile @@ -14,6 +14,11 @@ gem "bullet_train", path: "../bullet_train" gem "bullet_train-api", path: "../bullet_train-api" gem "bullet_train-fields", path: "../bullet_train-fields" gem "bullet_train-super_scaffolding", path: "../bullet_train-super_scaffolding" +gem "bullet_train-has_uuid", path: "../bullet_train-has_uuid" +gem "bullet_train-roles", path: "../bullet_train-roles" +gem "bullet_train-scope_validator", path: "../bullet_train-scope_validator" +gem "bullet_train-super_load_and_authorize_resource", path: "../bullet_train-super_load_and_authorize_resource" +gem "bullet_train-themes", path: "../bullet_train-themes" group :test do gem "minitest-reporters" diff --git a/bullet_train-outgoing_webhooks/Gemfile.lock b/bullet_train-outgoing_webhooks/Gemfile.lock index 9f4708c97..ae0be7360 100644 --- a/bullet_train-outgoing_webhooks/Gemfile.lock +++ b/bullet_train-outgoing_webhooks/Gemfile.lock @@ -22,6 +22,33 @@ PATH phonelib rails (>= 6.0.0) +PATH + remote: ../bullet_train-has_uuid + specs: + bullet_train-has_uuid (1.10.0) + rails (>= 6.0.0) + +PATH + remote: ../bullet_train-roles + specs: + bullet_train-roles (1.10.0) + active_hash + activesupport + cancancan + +PATH + remote: ../bullet_train-scope_validator + specs: + bullet_train-scope_validator (1.10.0) + rails + +PATH + remote: ../bullet_train-super_load_and_authorize_resource + specs: + bullet_train-super_load_and_authorize_resource (1.10.0) + cancancan + rails (>= 6.0.0) + PATH remote: ../bullet_train-super_scaffolding specs: @@ -31,6 +58,14 @@ PATH masamune-ast (~> 2.0.2) rails (>= 6.0.0) +PATH + remote: ../bullet_train-themes + specs: + bullet_train-themes (1.10.0) + bullet_train-fields + nice_partials (~> 0.9) + rails (>= 6.0.0) + PATH remote: ../bullet_train specs: @@ -154,20 +189,8 @@ GEM base64 (0.1.1) bcrypt (3.1.19) builder (3.2.4) - bullet_train-has_uuid (1.6.11) - rails (>= 6.0.0) - bullet_train-roles (1.6.11) - active_hash - activesupport - cancancan bullet_train-routes (1.0.0) rails (>= 6.0.0) - bullet_train-scope_validator (1.6.11) - bullet_train-super_load_and_authorize_resource (1.6.11) - cancancan - rails (>= 6.0.0) - bullet_train-themes (1.6.11) - rails (>= 6.0.0) cable_ready (5.0.3) actionpack (>= 5.2) actionview (>= 5.2) @@ -458,8 +481,13 @@ DEPENDENCIES bullet_train! bullet_train-api! bullet_train-fields! + bullet_train-has_uuid! bullet_train-outgoing_webhooks! + bullet_train-roles! + bullet_train-scope_validator! + bullet_train-super_load_and_authorize_resource! bullet_train-super_scaffolding! + bullet_train-themes! jbuilder minitest-reporters pg (~> 1.3) diff --git a/bullet_train-sortable/Gemfile b/bullet_train-sortable/Gemfile index 4831ebdda..dac96211e 100644 --- a/bullet_train-sortable/Gemfile +++ b/bullet_train-sortable/Gemfile @@ -12,6 +12,11 @@ gem "bullet_train", path: "../bullet_train" gem "bullet_train-api", path: "../bullet_train-api" gem "bullet_train-fields", path: "../bullet_train-fields" gem "bullet_train-super_scaffolding", path: "../bullet_train-super_scaffolding" +gem "bullet_train-has_uuid", path: "../bullet_train-has_uuid" +gem "bullet_train-roles", path: "../bullet_train-roles" +gem "bullet_train-scope_validator", path: "../bullet_train-scope_validator" +gem "bullet_train-super_load_and_authorize_resource", path: "../bullet_train-super_load_and_authorize_resource" +gem "bullet_train-themes", path: "../bullet_train-themes" group :test do gem "minitest-reporters" diff --git a/bullet_train-sortable/Gemfile.lock b/bullet_train-sortable/Gemfile.lock index 958886ebc..46865e850 100644 --- a/bullet_train-sortable/Gemfile.lock +++ b/bullet_train-sortable/Gemfile.lock @@ -22,6 +22,33 @@ PATH phonelib rails (>= 6.0.0) +PATH + remote: ../bullet_train-has_uuid + specs: + bullet_train-has_uuid (1.10.0) + rails (>= 6.0.0) + +PATH + remote: ../bullet_train-roles + specs: + bullet_train-roles (1.10.0) + active_hash + activesupport + cancancan + +PATH + remote: ../bullet_train-scope_validator + specs: + bullet_train-scope_validator (1.10.0) + rails + +PATH + remote: ../bullet_train-super_load_and_authorize_resource + specs: + bullet_train-super_load_and_authorize_resource (1.10.0) + cancancan + rails (>= 6.0.0) + PATH remote: ../bullet_train-super_scaffolding specs: @@ -31,6 +58,14 @@ PATH masamune-ast (~> 2.0.2) rails (>= 6.0.0) +PATH + remote: ../bullet_train-themes + specs: + bullet_train-themes (1.10.0) + bullet_train-fields + nice_partials (~> 0.9) + rails (>= 6.0.0) + PATH remote: ../bullet_train specs: @@ -163,20 +198,8 @@ GEM bcrypt (3.1.19) bigdecimal (3.1.4) builder (3.2.4) - bullet_train-has_uuid (1.6.13) - rails (>= 6.0.0) - bullet_train-roles (1.6.13) - active_hash - activesupport - cancancan bullet_train-routes (1.0.0) rails (>= 6.0.0) - bullet_train-scope_validator (1.6.13) - bullet_train-super_load_and_authorize_resource (1.6.13) - cancancan - rails (>= 6.0.0) - bullet_train-themes (1.6.13) - rails (>= 6.0.0) cable_ready (5.0.3) actionpack (>= 5.2) actionview (>= 5.2) @@ -486,8 +509,13 @@ DEPENDENCIES bullet_train! bullet_train-api! bullet_train-fields! + bullet_train-has_uuid! + bullet_train-roles! + bullet_train-scope_validator! bullet_train-sortable! + bullet_train-super_load_and_authorize_resource! bullet_train-super_scaffolding! + bullet_train-themes! minitest-reporters sprockets-rails sqlite3 (< 2) diff --git a/bullet_train-super_scaffolding/Gemfile b/bullet_train-super_scaffolding/Gemfile index c484b79ae..eadaada8a 100644 --- a/bullet_train-super_scaffolding/Gemfile +++ b/bullet_train-super_scaffolding/Gemfile @@ -11,6 +11,11 @@ gem "sprockets-rails" gem "bullet_train", path: "../bullet_train" gem "bullet_train-api", path: "../bullet_train-api" gem "bullet_train-fields", path: "../bullet_train-fields" +gem "bullet_train-has_uuid", path: "../bullet_train-has_uuid" +gem "bullet_train-roles", path: "../bullet_train-roles" +gem "bullet_train-scope_validator", path: "../bullet_train-scope_validator" +gem "bullet_train-super_load_and_authorize_resource", path: "../bullet_train-super_load_and_authorize_resource" +gem "bullet_train-themes", path: "../bullet_train-themes" group :test do gem "minitest-reporters" diff --git a/bullet_train-super_scaffolding/Gemfile.lock b/bullet_train-super_scaffolding/Gemfile.lock index 17e23fe7d..e431287a9 100644 --- a/bullet_train-super_scaffolding/Gemfile.lock +++ b/bullet_train-super_scaffolding/Gemfile.lock @@ -22,6 +22,41 @@ PATH phonelib rails (>= 6.0.0) +PATH + remote: ../bullet_train-has_uuid + specs: + bullet_train-has_uuid (1.10.0) + rails (>= 6.0.0) + +PATH + remote: ../bullet_train-roles + specs: + bullet_train-roles (1.10.0) + active_hash + activesupport + cancancan + +PATH + remote: ../bullet_train-scope_validator + specs: + bullet_train-scope_validator (1.10.0) + rails + +PATH + remote: ../bullet_train-super_load_and_authorize_resource + specs: + bullet_train-super_load_and_authorize_resource (1.10.0) + cancancan + rails (>= 6.0.0) + +PATH + remote: ../bullet_train-themes + specs: + bullet_train-themes (1.10.0) + bullet_train-fields + nice_partials (~> 0.9) + rails (>= 6.0.0) + PATH remote: ../bullet_train specs: @@ -147,20 +182,8 @@ GEM base64 (0.1.1) bcrypt (3.1.19) builder (3.2.4) - bullet_train-has_uuid (1.6.11) - rails (>= 6.0.0) - bullet_train-roles (1.6.11) - active_hash - activesupport - cancancan bullet_train-routes (1.0.0) rails (>= 6.0.0) - bullet_train-scope_validator (1.6.11) - bullet_train-super_load_and_authorize_resource (1.6.11) - cancancan - rails (>= 6.0.0) - bullet_train-themes (1.6.11) - rails (>= 6.0.0) cable_ready (5.0.3) actionpack (>= 5.2) actionview (>= 5.2) @@ -450,7 +473,12 @@ DEPENDENCIES bullet_train! bullet_train-api! bullet_train-fields! + bullet_train-has_uuid! + bullet_train-roles! + bullet_train-scope_validator! + bullet_train-super_load_and_authorize_resource! bullet_train-super_scaffolding! + bullet_train-themes! minitest-reporters sprockets-rails sqlite3 (< 2) diff --git a/bullet_train-themes-light/Gemfile b/bullet_train-themes-light/Gemfile index e06cb5192..018905f75 100644 --- a/bullet_train-themes-light/Gemfile +++ b/bullet_train-themes-light/Gemfile @@ -12,6 +12,12 @@ gem "bullet_train", path: "../bullet_train" gem "bullet_train-api", path: "../bullet_train-api" gem "bullet_train-fields", path: "../bullet_train-fields" gem "bullet_train-super_scaffolding", path: "../bullet_train-super_scaffolding" +gem "bullet_train-has_uuid", path: "../bullet_train-has_uuid" +gem "bullet_train-roles", path: "../bullet_train-roles" +gem "bullet_train-scope_validator", path: "../bullet_train-scope_validator" +gem "bullet_train-super_load_and_authorize_resource", path: "../bullet_train-super_load_and_authorize_resource" +gem "bullet_train-themes", path: "../bullet_train-themes" +gem "bullet_train-themes-tailwind_css", path: "../bullet_train-themes-tailwind_css" group :test do gem "minitest-reporters" diff --git a/bullet_train-themes-light/Gemfile.lock b/bullet_train-themes-light/Gemfile.lock index 58d5a37d4..f94ca9314 100644 --- a/bullet_train-themes-light/Gemfile.lock +++ b/bullet_train-themes-light/Gemfile.lock @@ -22,6 +22,33 @@ PATH phonelib rails (>= 6.0.0) +PATH + remote: ../bullet_train-has_uuid + specs: + bullet_train-has_uuid (1.10.0) + rails (>= 6.0.0) + +PATH + remote: ../bullet_train-roles + specs: + bullet_train-roles (1.10.0) + active_hash + activesupport + cancancan + +PATH + remote: ../bullet_train-scope_validator + specs: + bullet_train-scope_validator (1.10.0) + rails + +PATH + remote: ../bullet_train-super_load_and_authorize_resource + specs: + bullet_train-super_load_and_authorize_resource (1.10.0) + cancancan + rails (>= 6.0.0) + PATH remote: ../bullet_train-super_scaffolding specs: @@ -31,6 +58,21 @@ PATH masamune-ast (~> 2.0.2) rails (>= 6.0.0) +PATH + remote: ../bullet_train-themes-tailwind_css + specs: + bullet_train-themes-tailwind_css (1.10.0) + bullet_train-themes + rails (>= 6.0.0) + +PATH + remote: ../bullet_train-themes + specs: + bullet_train-themes (1.10.0) + bullet_train-fields + nice_partials (~> 0.9) + rails (>= 6.0.0) + PATH remote: ../bullet_train specs: @@ -165,24 +207,8 @@ GEM bcrypt (3.1.19) bigdecimal (3.1.4) builder (3.2.4) - bullet_train-has_uuid (1.6.13) - rails (>= 6.0.0) - bullet_train-roles (1.6.13) - active_hash - activesupport - cancancan bullet_train-routes (1.0.0) rails (>= 6.0.0) - bullet_train-scope_validator (1.6.13) - bullet_train-super_load_and_authorize_resource (1.6.13) - cancancan - rails (>= 6.0.0) - bullet_train-themes (1.6.13) - rails (>= 6.0.0) - bullet_train-themes-tailwind_css (1.6.13) - bullet_train - bullet_train-themes - rails (>= 6.0.0) cable_ready (5.0.3) actionpack (>= 5.2) actionview (>= 5.2) @@ -492,8 +518,14 @@ DEPENDENCIES bullet_train! bullet_train-api! bullet_train-fields! + bullet_train-has_uuid! + bullet_train-roles! + bullet_train-scope_validator! + bullet_train-super_load_and_authorize_resource! bullet_train-super_scaffolding! + bullet_train-themes! bullet_train-themes-light! + bullet_train-themes-tailwind_css! minitest-reporters sprockets-rails sqlite3 (< 2) diff --git a/bullet_train-themes-tailwind_css/Gemfile b/bullet_train-themes-tailwind_css/Gemfile index ba0921c1a..a1182929a 100644 --- a/bullet_train-themes-tailwind_css/Gemfile +++ b/bullet_train-themes-tailwind_css/Gemfile @@ -12,6 +12,11 @@ gem "bullet_train", path: "../bullet_train" gem "bullet_train-api", path: "../bullet_train-api" gem "bullet_train-fields", path: "../bullet_train-fields" gem "bullet_train-super_scaffolding", path: "../bullet_train-super_scaffolding" +gem "bullet_train-has_uuid", path: "../bullet_train-has_uuid" +gem "bullet_train-roles", path: "../bullet_train-roles" +gem "bullet_train-scope_validator", path: "../bullet_train-scope_validator" +gem "bullet_train-super_load_and_authorize_resource", path: "../bullet_train-super_load_and_authorize_resource" +gem "bullet_train-themes", path: "../bullet_train-themes" group :test do gem "minitest-reporters" diff --git a/bullet_train-themes-tailwind_css/Gemfile.lock b/bullet_train-themes-tailwind_css/Gemfile.lock index 125f31fcb..d89f7bf8d 100644 --- a/bullet_train-themes-tailwind_css/Gemfile.lock +++ b/bullet_train-themes-tailwind_css/Gemfile.lock @@ -22,6 +22,33 @@ PATH phonelib rails (>= 6.0.0) +PATH + remote: ../bullet_train-has_uuid + specs: + bullet_train-has_uuid (1.10.0) + rails (>= 6.0.0) + +PATH + remote: ../bullet_train-roles + specs: + bullet_train-roles (1.10.0) + active_hash + activesupport + cancancan + +PATH + remote: ../bullet_train-scope_validator + specs: + bullet_train-scope_validator (1.10.0) + rails + +PATH + remote: ../bullet_train-super_load_and_authorize_resource + specs: + bullet_train-super_load_and_authorize_resource (1.10.0) + cancancan + rails (>= 6.0.0) + PATH remote: ../bullet_train-super_scaffolding specs: @@ -31,6 +58,14 @@ PATH masamune-ast (~> 2.0.2) rails (>= 6.0.0) +PATH + remote: ../bullet_train-themes + specs: + bullet_train-themes (1.10.0) + bullet_train-fields + nice_partials (~> 0.9) + rails (>= 6.0.0) + PATH remote: ../bullet_train specs: @@ -164,20 +199,8 @@ GEM bcrypt (3.1.19) bigdecimal (3.1.4) builder (3.2.4) - bullet_train-has_uuid (1.6.13) - rails (>= 6.0.0) - bullet_train-roles (1.6.13) - active_hash - activesupport - cancancan bullet_train-routes (1.0.0) rails (>= 6.0.0) - bullet_train-scope_validator (1.6.13) - bullet_train-super_load_and_authorize_resource (1.6.13) - cancancan - rails (>= 6.0.0) - bullet_train-themes (1.6.13) - rails (>= 6.0.0) cable_ready (5.0.3) actionpack (>= 5.2) actionview (>= 5.2) @@ -487,7 +510,12 @@ DEPENDENCIES bullet_train! bullet_train-api! bullet_train-fields! + bullet_train-has_uuid! + bullet_train-roles! + bullet_train-scope_validator! + bullet_train-super_load_and_authorize_resource! bullet_train-super_scaffolding! + bullet_train-themes! bullet_train-themes-tailwind_css! minitest-reporters sprockets-rails diff --git a/bullet_train/Gemfile b/bullet_train/Gemfile index d079b169d..f32184ca0 100644 --- a/bullet_train/Gemfile +++ b/bullet_train/Gemfile @@ -20,6 +20,7 @@ gem "bullet_train-themes-light", path: "../bullet_train-themes-light" gem "bullet_train-has_uuid", path: "../bullet_train-has_uuid" gem "bullet_train-scope_validator", path: "../bullet_train-scope_validator" gem "bullet_train-themes", path: "../bullet_train-themes" +gem "bullet_train-themes-tailwind_css", path: "../bullet_train-themes-tailwind_css" group :test do gem "minitest-reporters" diff --git a/bullet_train/Gemfile.lock b/bullet_train/Gemfile.lock index 4174a0e4b..8a0b0a7eb 100644 --- a/bullet_train/Gemfile.lock +++ b/bullet_train/Gemfile.lock @@ -73,6 +73,13 @@ PATH masamune-ast (~> 2.0.2) rails (>= 6.0.0) +PATH + remote: ../bullet_train-themes-tailwind_css + specs: + bullet_train-themes-tailwind_css (1.10.0) + bullet_train-themes + rails (>= 6.0.0) + PATH remote: ../bullet_train-themes specs: @@ -199,10 +206,6 @@ GEM builder (3.2.4) bullet_train-routes (1.0.0) rails (>= 6.0.0) - bullet_train-themes-tailwind_css (1.6.13) - bullet_train - bullet_train-themes - rails (>= 6.0.0) cable_ready (5.0.1) actionpack (>= 5.2) actionview (>= 5.2) @@ -503,6 +506,7 @@ DEPENDENCIES bullet_train-super_scaffolding! bullet_train-themes! bullet_train-themes-light! + bullet_train-themes-tailwind_css! minitest-reporters pg (~> 1.3) pry