# -*- encoding: utf-8 -*- # stub: abstract_feature_branch 1.3.2 ruby lib Gem::Specification.new do |s| s.name = "abstract_feature_branch".freeze s.version = "1.3.2".freeze s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= s.require_paths = ["lib".freeze] s.authors = ["Annas \"Andy\" Maleh".freeze] s.date = "2022-12-12" s.description = "abstract_feature_branch is a Rails gem that enables developers to easily branch by abstraction as per this pattern:\nhttp://paulhammant.com/blog/branch_by_abstraction.html\n\nIt is a productivity and fault tolerance enhancing team practice.\n\nIt provides the ability to wrap blocks of code with an abstract feature branch name, and then\nspecify in a configuration file which features to be switched on or off.\n\nThe goal is to build out upcoming features in the same source code repository branch, regardless of whether all are\ncompleted by the next release date or not, thus increasing team productivity by preventing integration delays.\nDevelopers then disable in-progress features until they are ready to be switched on in production, yet enable them\nlocally and in staging environments for in-progress testing.\n\nThis gives developers the added benefit of being able to switch a feature off after release should big problems arise\nfor a high risk feature.\n\nabstract_feature_branch additionally supports DDD's pattern of\nBounded Contexts by allowing developers to configure\ncontext-specific feature files if needed.\n".freeze s.extra_rdoc_files = ["CHANGELOG.md".freeze, "LICENSE.txt".freeze, "README.md".freeze] s.files = ["CHANGELOG.md".freeze, "LICENSE.txt".freeze, "README.md".freeze, "VERSION".freeze, "abstract_feature_branch.gemspec".freeze, "lib/abstract_feature_branch.rb".freeze, "lib/abstract_feature_branch/configuration.rb".freeze, "lib/abstract_feature_branch/file_beautifier.rb".freeze, "lib/abstract_feature_branch/redis/connection_pool_to_redis_adapter.rb".freeze, "lib/ext/feature_branch.rb".freeze, "lib/generators/abstract_feature_branch/context_generator.rb".freeze, "lib/generators/abstract_feature_branch/install_generator.rb".freeze, "lib/generators/templates/config/features.example.yml".freeze, "lib/generators/templates/config/features.local.yml".freeze, "lib/generators/templates/config/features.yml".freeze, "lib/generators/templates/config/initializers/abstract_feature_branch.rb".freeze, "lib/generators/templates/lib/tasks/abstract_feature_branch.rake".freeze] s.homepage = "http://github.com/AndyObtiva/abstract_feature_branch".freeze s.licenses = ["MIT".freeze] s.post_install_message = "\nRails-only post-install instructions:\n\n1) Run the following command to generate the Rails initializer and basic feature files:\n\nrails g abstract_feature_branch:install\n\n2) Optionally, you may run this command to generate feature files per context:\n\nrails g abstract_feature_branch:context context_path\n \n3) Optionally, install Redis server with [Homebrew](https://brew.sh/) by running:\n\nbrew install redis\n\n4) Optionally, install redis client gem (required with Redis server) by adding the following line to Gemfile above abstract_feature_branch:\n\ngem 'redis', '~> 5.0.5'\n\nAfterwards, run:\n\nbundle\n\n5) Optionally, customize configuration in config/initializers/abstract_feature_branch.rb\n\n(can be useful for changing location of feature files in Rails application,\nconfiguring Redis with a Redis or ConnectionPool instance to use for overrides and per-user feature enablement,\nand/or troubleshooting specific Rails environment feature configurations)\n\n".freeze s.rubygems_version = "3.5.10".freeze s.summary = "abstract_feature_branch is a Rails gem that enables developers to easily branch by abstraction as per this pattern: http://paulhammant.com/blog/branch_by_abstraction.html".freeze s.specification_version = 4 s.add_runtime_dependency(%q.freeze, ["~> 1.0.0".freeze]) s.add_development_dependency(%q.freeze, ["~> 2.3.9".freeze]) s.add_development_dependency(%q.freeze, [">= 2.1.4".freeze]) s.add_development_dependency(%q.freeze, ["= 2.14.1".freeze]) s.add_development_dependency(%q.freeze, ["= 5.1.0".freeze]) s.add_development_dependency(%q.freeze, ["= 3.3.4".freeze]) end