Sha256: fc7b41913c3670774189c06a5e5e3b85a6a27dc31d217024b4e89862aa835bd9

Contents?: true

Size: 1.07 KB

Versions: 3

Compression:

Stored size: 1.07 KB

Contents

Gem::Specification.new do |spec|
  spec.name = "support_table_data"
  spec.version = File.read(File.expand_path("../VERSION", __FILE__)).strip
  spec.authors = ["Brian Durand"]
  spec.email = ["bbdurand@gmail.com"]

  spec.summary = "Extension for ActiveRecord models to manage synchronizing data in support/lookup tables across environments. Also provides the ability to directly reference and test for specific rows in these tables."

  spec.homepage = "https://github.com/bdurand/support_table_data"
  spec.license = "MIT"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  ignore_files = %w[
    .
    Appraisals
    Gemfile
    Gemfile.lock
    Rakefile
    bin/
    gemfiles/
    spec/
  ]
  spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| ignore_files.any? { |path| f.start_with?(path) } }
  end

  spec.require_paths = ["lib"]

  spec.add_dependency "activerecord"

  spec.add_development_dependency "bundler"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
support_table_data-1.1.1 support_table_data.gemspec
support_table_data-1.1.0 support_table_data.gemspec
support_table_data-1.0.0 support_table_data.gemspec