Skip to content

Commit

Permalink
Merge branch 'master' of git@github.com:sam/dm-more
Browse files Browse the repository at this point in the history
* 'master' of git@github.com:sam/dm-more:
  rake install_gems should be working again
  • Loading branch information
wycats committed Apr 15, 2008
2 parents cb47191 + 09e2bca commit f93fedd
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 4 deletions.
Empty file added LICENSE
Empty file.
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ require 'fileutils'
include FileUtils

gems = %w[
dm-merb
dm-migrations
dm-serializer
dm-validations
merb-datamapper
]

PROJECT = "dm-more"
Expand Down Expand Up @@ -61,12 +61,12 @@ end
desc "Build the dm-more gems"
task :build_gems do
gems.each do |dir|
Dir.chdir(dir){ sh "rake package" }
Dir.chdir(dir){ sh "rake gem" }
end
end

desc "Install the dm-more gems"
task :install_gems do
task :install_gems => :build_gems do
gems.each do |dir|
Dir.chdir(dir){ sh "#{SUDO} rake install" }
end
Expand Down
20 changes: 20 additions & 0 deletions dm-migrations/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 2007 Paul Sadauskas

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Empty file added dm-migrations/README
Empty file.
Empty file added dm-migrations/TODO
Empty file.
2 changes: 1 addition & 1 deletion dm-serializer/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ VERSION = "0.9.0"
AUTHOR = "Guy van den Berg"
EMAIL = "vandenberg.guy@gmail.com"
HOMEPAGE = "http://github.com/sam/dm-more/tree/master/dm-serializer"
SUMMARY = "DataMapper plugin for doing serialization"
SUMMARY = "DataMapper plugin for serializing DataMapper objects"

spec = Gem::Specification.new do |s|
s.name = NAME
Expand Down

0 comments on commit f93fedd

Please sign in to comment.