2022-11-28 18:22:50 +01:00
require_relative " lib/merged/version "
Gem :: Specification . new do | spec |
spec . name = " merged "
spec . version = Merged :: VERSION
spec . authors = [ " Torsten " ]
spec . email = [ " torsten@rubydesign.fi " ]
2022-11-28 19:17:17 +01:00
spec . homepage = " https://github.com/HubFeenixMakers/merged "
spec . summary = " A file based cmas the integrates with rails workflow "
spec . description = " Changes propagate in the normal development cycle, with git, possible branches, possible staging, possible reviews and controlled deploys. "
spec . license = " MIT "
2022-11-28 18:22:50 +01:00
spec . metadata [ " homepage_uri " ] = spec . homepage
2022-11-28 19:17:17 +01:00
spec . metadata [ " source_code_uri " ] = " https://github.com/HubFeenixMakers/merged "
spec . metadata [ " changelog_uri " ] = " https://github.com/HubFeenixMakers/merged "
2022-11-28 18:22:50 +01:00
spec . files = Dir . chdir ( File . expand_path ( __dir__ ) ) do
Dir [ " {app,config,db,lib}/**/* " , " MIT-LICENSE " , " Rakefile " , " README.md " ]
end
spec . add_dependency " rails " , " >= 7.0.4 "
2022-11-29 00:13:05 +01:00
spec . add_dependency " haml-rails "
2022-12-03 20:25:12 +01:00
spec . add_dependency " git "
2022-11-28 18:22:50 +01:00
end