Sha256: 126890be34b9bb73a2968d0849f47698e4c881b9fc367bad71d45e93a4ba4520
Contents?: true
Size: 949 Bytes
Versions: 3
Compression:
Stored size: 949 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-cli/version' AUTHOR = 'Wayne E. Seguin' EMAIL = 'wayneeseguin [a] gmail [d] com' GEM_NAME = 'dm-cli' GEM_VERSION = DataMapper::CLI::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 ], :executables => %w[ dm ], :bindir => 'bin' } PROJECT_NAME = 'datamapper' PROJECT_URL = "http://github.com/sam/dm-more/tree/master/#{GEM_NAME}" PROJECT_DESCRIPTION = PROJECT_SUMMARY = 'DataMapper plugin allowing interaction with models through a CLI' [ 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-cli-0.9.10 | Rakefile |
dm-cli-0.9.8 | Rakefile |
dm-cli-0.9.9 | Rakefile |