Skip to content

Commit

Permalink
Adding a gemspec for publishing to rubygems.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alastair Brunton committed Feb 9, 2012
1 parent d3ea23a commit 2da61a3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
*.gem
18 changes: 18 additions & 0 deletions bisto.gemspec
@@ -0,0 +1,18 @@
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

Gem::Specification.new do |s|
s.name = "bisto"
s.version = "0.0.4"
s.platform = Gem::Platform::RUBY
s.authors = ["Juris Galang", "Alastair Brunton"]
s.email = ["info@simplyexcited.co.uk"]
s.homepage = "http://github.com/pyrat/solon"
s.summary = "Associate Rails models with gravatar resources"
s.description = "Associate Rails models with gravatar resources"

s.required_rubygems_version = ">= 1.3.1"
s.require_path = 'lib'
s.files = `git ls-files`.split("\n")
end

0 comments on commit 2da61a3

Please sign in to comment.