# -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = "attr" s.version = "0.0.2" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Ryan Scott Lewis"] s.date = "2012-10-09" s.description = "This gem allows you to easily extend the `attr_reader`, `attr_writer`, and `attr_accessor` Module methods." s.email = "ryan@rynet.us" s.files = [".gitignore", "Gemfile", "Rakefile", "VERSION", "attr.gemspec", "lib/wallpaper.rb", "spec/spec_helper.rb", "spec/wallpaper_spec.rb", "wallpaper.gemspec"] s.homepage = "http://github.com/c00lryguy/attr" s.post_install_message = "This is a placeholder gem... for now. Check back in a few versions!" s.require_paths = ["lib"] s.rubygems_version = "1.8.24" s.summary = "Easily extend the `attr_reader`, `attr_writer`, and `attr_accessor` Module methods." if s.respond_to? :specification_version then s.specification_version = 3 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_runtime_dependency(%q, ["~> 1"]) else s.add_dependency(%q, ["~> 1"]) end else s.add_dependency(%q, ["~> 1"]) end end