Sha256: 7db0cd3434f8922b7d123c150d05ca470ea621a2fc62c4bedb610d6a4aeb3fcf
Contents?: true
Size: 937 Bytes
Versions: 2
Compression:
Stored size: 937 Bytes
Contents
require 'pathname' 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-is-nested_set/is/version' AUTHOR = 'Sindre Aarsaether' EMAIL = 'sindre [a] identu [d] no' GEM_NAME = 'dm-is-nested_set' GEM_VERSION = DataMapper::Is::NestedSet::VERSION GEM_DEPENDENCIES = [['dm-core', GEM_VERSION], ['dm-adjust', GEM_VERSION]] GEM_CLEAN = %w[ log pkg coverage ] GEM_EXTRAS = { :has_rdoc => true, :extra_rdoc_files => %w[ README.rdoc LICENSE TODO History.rdoc ] } PROJECT_NAME = 'datamapper' PROJECT_URL = "http://github.com/datamapper/dm-more/tree/master/#{GEM_NAME}" PROJECT_DESCRIPTION = PROJECT_SUMMARY = 'DataMapper plugin allowing the creation of nested sets from data models' [ ROOT, ROOT.parent ].each do |dir| Pathname.glob(dir.join('tasks/**/*.rb').to_s).each { |f| require f } end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dm-is-nested_set-0.10.1 | Rakefile |
dm-is-nested_set-0.10.0 | Rakefile |