Skip to content

Commit

Permalink
Initial gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
amerine committed Mar 7, 2011
1 parent 8c5487e commit aeda5b5
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
2 changes: 2 additions & 0 deletions Rakefile
@@ -1,6 +1,8 @@
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'bundler'
Bundler::GemHelper.install_tasks

desc 'Default: run unit tests.'
task :default => :test
Expand Down
20 changes: 20 additions & 0 deletions in_place_editing.gemspec
@@ -0,0 +1,20 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)

Gem::Specification.new do |s|
s.name = "in_place_editing"
s.version = "1.0.0"
s.platform = Gem::Platform::RUBY
s.authors = ["David Heinemeier Hansson", "Jeremy Kemper", "Jose Fernandez", "Pawel Stradomski"]
s.email = ["mark@amerine.net"]
s.homepage = "https://github.com/amerine/in_place_editing"
s.summary = %q{In Place Editing Rails Plugin}
s.description = %q{In Place Editing Rails Plugin}

s.rubyforge_project = "in_place_editing"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end

0 comments on commit aeda5b5

Please sign in to comment.