Skip to content

Commit

Permalink
Add basic gemspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasoncodes committed Oct 16, 2010
1 parent 36b4397 commit 76841a2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions has_details.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
spec = Gem::Specification.new do |s|
s.name = 'has_details'
s.version = '0.0.1'
s.summary = "Attribute serialization for ActiveRecord."
s.description = %{HasDetails is a Rails plugin to allow you to serialize an arbitrary amount of (optional) attributes into a column.}
s.files = Dir['lib/**/*.rb'] + Dir['test/**/*.rb']
s.require_path = 'lib'
s.authors = %w(Marten\ Veldthuis Jason\ Weathered)
s.email = %w(marten@veldthuis.com jason@jasoncodes.com)
s.homepage = "http://github.com/jasoncodes/has_details"
s.add_runtime_dependency 'activerecord', %w(~>2.3.0)
end

0 comments on commit 76841a2

Please sign in to comment.