Sha256: 55f58e7ebe8489adb43f45747ae758bd35a0eb5058e222b60e4c92ce9d90b390
Contents?: true
Size: 1.02 KB
Versions: 6
Compression:
Stored size: 1.02 KB
Contents
require 'pathname' require 'rubygems' require 'rake' require 'rake/rdoctask' 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-accepts_nested_attributes/version' AUTHOR = "Martin Gamsjäger" EMAIL = "gamsnjaga [a] gmail [d] com" GEM_NAME = "dm-accepts_nested_attributes" GEM_VERSION = DataMapper::NestedAttributes::VERSION GEM_DEPENDENCIES = [ ["dm-core", '>=0.9.11'], ['addressable', '~>2.0.2' ] ] GEM_CLEAN = %w[ log pkg coverage ] GEM_EXTRAS = { :has_rdoc => true, :extra_rdoc_files => %w[ README.textile LICENSE TODO History.txt ] } PROJECT_NAME = "dm-accepts_nested_attributes" PROJECT_URL = "http://github.com/snusnu/dm-accepts_nested_attributes/tree/master" PROJECT_DESCRIPTION = PROJECT_SUMMARY = %{ A DataMapper plugin that adds the possibility to perform nested model attribute assignment } Pathname.glob(ROOT.join('tasks/**/*.rb').to_s).each { |f| require f }
Version data entries
6 entries across 6 versions & 1 rubygems