Skip to content

Commit

Permalink
Added a gemspec so I can use this for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Moore committed Mar 27, 2012
1 parent e4c0b60 commit e59477c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions mixology.gemspec
@@ -0,0 +1,21 @@
Gem::Specification.new do |s|
s.name = "mixology"
s.description = "Mixology enables objects to mixin and unmix modules."
s.author = "anonymous z, Pat Farley, Dan Manges"
s.description = s.summary
s.homepage = "http://mixology.rubyforge.org"
s.rubyforge_project = "mixology"
s.has_rdoc = false
s.autorequire = "mixology"
s.files = FileList['ext/**/*.{c,rb}', '{lib,test}/**/*.rb', '^[A-Z]+$', 'Rakefile'].to_a
if RUBY_PLATFORM =~ /mswin/
s.platform = Gem::Platform::WIN32
s.files += ["lib/mixology.so"]
elsif RUBY_PLATFORM =~ /java/
s.platform = "java"
s.files += ["lib/mixology.jar"]
else
s.platform = Gem::Platform::RUBY
s.extensions = FileList["ext/**/extconf.rb"].to_a
end
end

0 comments on commit e59477c

Please sign in to comment.