Sha256: c65c5d663a45a780641bc3dd415612a694bbbeb9fe1500153c729ec284bfb8cf

Contents?: true

Size: 985 Bytes

Versions: 7

Compression:

Stored size: 985 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "maskable_attribute/version"

Gem::Specification.new do |s|
  s.name        = "maskable_attribute"
  s.version     = MaskableAttribute::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Bill Transue"]
  s.email       = ["transue@gmail.com "]
  s.homepage    = "https://github.com/billy-ran-away/maskable_attribute"
  s.summary     = %q{Allows Ruby on Rails to have a maskable attribute.}
  s.description = %q{A maskable attribute is an attribute that is made up of other attributes (masks), this ordering is set in the masked attribute and preserved across updates.}

  s.rubyforge_project = "maskable_attribute"
  s.add_dependency "rails", ">= 2.3.10"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
maskable_attribute-0.0.8 maskable_attribute.gemspec
maskable_attribute-0.0.7 maskable_attribute.gemspec
maskable_attribute-0.0.6 maskable_attribute.gemspec
maskable_attribute-0.0.5 maskable_attribute.gemspec
maskable_attribute-0.0.3 maskable_attribute.gemspec
maskable_attribute-0.0.2 maskable_attribute.gemspec
maskable_attribute-0.0.1 maskable_attribute.gemspec