Skip to content
This repository has been archived by the owner on Mar 21, 2023. It is now read-only.

Commit

Permalink
gem version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
subicura committed Jan 25, 2012
1 parent 65fe522 commit 77d84f6
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .document
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
lib/**/*.rb
bin/*
-
features/**/*.feature
LICENSE.txt
48 changes: 48 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# rcov generated
coverage

# rdoc generated
rdoc

# yard generated
doc
.yardoc

# bundler
.bundle

# jeweler generated
pkg

# Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
#
# * Create a file at ~/.gitignore
# * Include files you want ignored
# * Run: git config --global core.excludesfile ~/.gitignore
#
# After doing this, these files will be ignored in all your git projects,
# saving you from having to 'pollute' every project you touch with them
#
# Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
#
# For MacOS:
#
#.DS_Store

# For TextMate
#*.tmproj
#tmtags

# For emacs:
#*~
#\#*
#.\#*

# For vim:
#*.swp

# For redcar:
#.redcar

# For rubinius:
#*.rbc
File renamed without changes.
File renamed without changes.
17 changes: 16 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'rdoc/task'

begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "auto_migrations"
gemspec.summary = "auto database migration."
gemspec.description = "auto database migration."
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/subicura/auto_migrations"
gemspec.authors = ["subicura (originally by PJ Hyett)"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler -s http://gemcutter.org"
end

desc 'Default: run unit tests.'
task :default => :test
Expand Down

0 comments on commit 77d84f6

Please sign in to comment.