--- !ruby/object:Gem::Specification
name: abstract_feature_branch
version: !ruby/object:Gem::Version
  version: 1.2.0
platform: ruby
authors:
- Annas "Andy" Maleh
autorequire: 
bindir: bin
cert_chain: []
date: 2014-01-19 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
  name: deep_merge
  requirement: !ruby/object:Gem::Requirement
    requirements:
    - - '='
      - !ruby/object:Gem::Version
        version: 1.0.0
  type: :runtime
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    requirements:
    - - '='
      - !ruby/object:Gem::Version
        version: 1.0.0
- !ruby/object:Gem::Dependency
  name: redis
  requirement: !ruby/object:Gem::Requirement
    requirements:
    - - ~>
      - !ruby/object:Gem::Version
        version: 3.0.0
  type: :runtime
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    requirements:
    - - ~>
      - !ruby/object:Gem::Version
        version: 3.0.0
- !ruby/object:Gem::Dependency
  name: jeweler
  requirement: !ruby/object:Gem::Requirement
    requirements:
    - - '='
      - !ruby/object:Gem::Version
        version: 1.8.8
  type: :development
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    requirements:
    - - '='
      - !ruby/object:Gem::Version
        version: 1.8.8
description: |
  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

  It is a productivity and fault tolerance enhancing team practice that has been utilized by professional software development
  teams at large corporations, such as Sears and Groupon.

  It provides the ability to wrap blocks of code with an abstract feature branch name, and then
  specify in a configuration file which features to be switched on or off.

  The goal is to build out upcoming features in the same source code repository branch, regardless of whether all are
  completed by the next release date or not, thus increasing team productivity by preventing integration delays.
  Developers then disable in-progress features until they are ready to be switched on in production, yet enable them
  locally and in staging environments for in-progress testing.

  This gives developers the added benefit of being able to switch a feature off after release should big problems arise
  for a high risk feature.

  abstract_feature_branch additionally supports DDD's pattern of
  Bounded Contexts by allowing developers to configure
  context-specific feature files if needed.
email: 
executables: []
extensions: []
extra_rdoc_files:
- LICENSE.txt
- README.md
files:
- .coveralls.yml
- .travis.yml
- LICENSE.txt
- README.md
- RELEASE_NOTES.md
- VERSION
- abstract_feature_branch.gemspec
- config/features/admin.local.yml
- config/features/admin.yml
- config/features/internal/wiki.local.yml
- config/features/internal/wiki.yml
- config/features/public.local.yml
- config/features/public.yml
- lib/abstract_feature_branch.rb
- lib/abstract_feature_branch/file_beautifier.rb
- lib/ext/feature_branch.rb
- lib/generators/abstract_feature_branch/context_generator.rb
- lib/generators/abstract_feature_branch/install_generator.rb
- lib/generators/templates/config/features.example.yml
- lib/generators/templates/config/features.local.yml
- lib/generators/templates/config/features.yml
- lib/generators/templates/config/initializers/abstract_feature_branch.rb
- lib/generators/templates/lib/tasks/abstract_feature_branch.rake
- ruby187.Gemfile
- ruby187.Gemfile.lock
- spec/abstract_feature_branch/file_beautifier_spec.rb
- spec/ext/feature_branch__feature_branch_per_user_spec.rb
- spec/ext/feature_branch__feature_branch_spec.rb
- spec/ext/feature_branch__feature_enabled_spec.rb
- spec/fixtures/application_development_config/config/features.reference.yml
- spec/fixtures/application_no_config/no_config
- spec/fixtures/application_rails_config/config/features.local.yml
- spec/fixtures/application_rails_config/config/features.yml
- spec/fixtures/application_ugly_config_reference/config/another_application_configuration.yml
- spec/fixtures/application_ugly_config_reference/config/database.yml
- spec/fixtures/application_ugly_config_reference/config/features.local.yml
- spec/fixtures/application_ugly_config_reference/config/features.yml
- spec/fixtures/application_ugly_config_reference/config/features/admin.local.yml
- spec/fixtures/application_ugly_config_reference/config/features/admin.yml
- spec/fixtures/application_ugly_config_reference/config/features/empty.local.yml
- spec/fixtures/application_ugly_config_reference/config/features/feature_empty_config.local.yml
- spec/fixtures/application_ugly_config_reference/config/features/including_comments.local.yml
- spec/fixtures/application_ugly_config_reference/config/features/internal/wiki.local.yml
- spec/fixtures/application_ugly_config_reference/config/features/internal/wiki.yml
- spec/fixtures/application_ugly_config_reference/config/features/public.local.yml
- spec/fixtures/application_ugly_config_reference/config/features/public.yml
homepage: http://github.com/AndyObtiva/abstract_feature_branch
licenses:
- MIT
metadata: {}
post_install_message: 
rdoc_options: []
require_paths:
- lib
required_ruby_version: !ruby/object:Gem::Requirement
  requirements:
  - - '>='
    - !ruby/object:Gem::Version
      version: '0'
required_rubygems_version: !ruby/object:Gem::Requirement
  requirements:
  - - '>='
    - !ruby/object:Gem::Version
      version: '0'
requirements: []
rubyforge_project: 
rubygems_version: 2.0.6
signing_key: 
specification_version: 4
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'
test_files: []