Sha256: f26006c3a7640c3ed09c7f46c8933c66ce7e3372538ae20445eeef9e0dd863c5
Contents?: true
Size: 893 Bytes
Versions: 3
Compression:
Stored size: 893 Bytes
Contents
require 'pathname' require 'rubygems' ROOT = Pathname(__FILE__).dirname.expand_path JRUBY = RUBY_PLATFORM =~ /java/ WINDOWS = Gem.win_platform? SUDO = (WINDOWS || JRUBY) ? '' : ('sudo' unless ENV['SUDOLESS']) require ROOT + 'lib/dm-ar-finders/version' AUTHOR = 'John W Higgins' EMAIL = 'john [a] wishVPS [d] com' GEM_NAME = 'dm-ar-finders' GEM_VERSION = DataMapper::ARFinders::VERSION GEM_DEPENDENCIES = [['dm-core', "~>#{GEM_VERSION}"]] GEM_CLEAN = %w[ log pkg coverage ] GEM_EXTRAS = { :has_rdoc => true, :extra_rdoc_files => %w[ README.txt LICENSE TODO History.txt ] } PROJECT_NAME = 'datamapper' PROJECT_URL = "http://github.com/sam/dm-more/tree/master/#{GEM_NAME}" PROJECT_DESCRIPTION = PROJECT_SUMMARY = 'DataMapper plugin providing ActiveRecord-style finders' [ ROOT, ROOT.parent ].each do |dir| Pathname.glob(dir.join('tasks/**/*.rb').to_s).each { |f| require f } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dm-ar-finders-0.9.10 | Rakefile |
dm-ar-finders-0.9.8 | Rakefile |
dm-ar-finders-0.9.9 | Rakefile |