adding active_hash, moving that way

This commit is contained in:
Torsten 2022-12-10 18:38:24 +02:00
parent 2e505d8402
commit d822c20d0e
4 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,7 @@ PATH
remote: .
specs:
merged (0.1.0)
active_hash
git
haml-rails
rails (>= 7.0.4)
@ -55,6 +56,8 @@ GEM
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.1, >= 1.2.0)
active_hash (3.1.1)
activesupport (>= 5.0.0)
activejob (7.0.4)
activesupport (= 7.0.4)
globalid (>= 0.3.6)

View File

@ -0,0 +1 @@
ActiveFile::Base.set_root_path "config"

View File

@ -1,3 +1,5 @@
require "active_hash"
module Merged
class Engine < ::Rails::Engine
isolate_namespace Merged

View File

@ -22,4 +22,5 @@ Gem::Specification.new do |spec|
spec.add_dependency "haml-rails"
spec.add_dependency "git"
spec.add_dependency "redcarpet"
spec.add_dependency "active_hash"
end