Skip to content

Commit

Permalink
Gemfile, Rakefile, gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
blaines committed Aug 10, 2012
1 parent 27f10c3 commit 9ee2084
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source 'https://rubygems.org'

# Specify your gem's dependencies in ferrum.gemspec
gemspec
2 changes: 2 additions & 0 deletions Rakefile
@@ -0,0 +1,2 @@
#!/usr/bin/env rake
require "bundler/gem_tasks"
17 changes: 17 additions & 0 deletions ferrum.gemspec
@@ -0,0 +1,17 @@
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ferrum/version', __FILE__)

Gem::Specification.new do |gem|
gem.authors = ["Blaine Schanfeldt"]
gem.email = ["ferrum@blaines.me"]
gem.description = %q{A framework for ruby Iron worker tasks.}
gem.summary = %q{A framework for ruby Iron worker tasks.}
gem.homepage = "https://github.com/blaines/ferrum"

gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "ferrum"
gem.require_paths = ["lib"]
gem.version = Ferrum::VERSION
end

0 comments on commit 9ee2084

Please sign in to comment.