snusnu / dm-is-protectable

A DataMapper plugin that allows to protect property assignment.

This URL has Read+Write access

snusnu (author)
Tue May 19 19:16:08 -0700 2009
commit  77ab0bf978f4a76f35a3e944f460963920528b05
tree    64bd22f7bcd5c55bdf0b579fd043324ef1c57926
parent  a4dab688bb8f7d2159df077ab3e23e2b2dcd5fb7
dm-is-protectable / Rakefile
100755 57 lines (44 sloc) 1.742 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
require 'spec'
require 'spec/rake/spectask'
require 'pathname'
 
ROOT = Pathname(__FILE__).dirname.expand_path
require ROOT + 'lib/dm-is-protectable/is/version'
 
AUTHOR = "Martin Gamsjaeger"
EMAIL = "gamsnjaga [a] gmail [d] com"
GEM_NAME = "dm-is-protectable"
GEM_VERSION = DataMapper::Is::Protectable::VERSION
 
GEM_DEPENDENCIES = [
  ["dm-core", ">=0.10.0"]
]
 
GEM_CLEAN = ["log", "pkg"]
GEM_EXTRAS = { :has_rdoc => false, :extra_rdoc_files => %w[ README.textile LICENSE TODO ] }
 
PROJECT_NAME = "datamapper"
PROJECT_URL = "http://github.com/snusnu/dm-is-protectable/tree/master"
PROJECT_DESCRIPTION = PROJECT_SUMMARY = <<-DESC
A DataMapper plugin that allows to protect property assignment.
DESC
 
require ROOT + 'tasks/hoe'
 
task :default => [ :spec ]
 
WIN32 = (RUBY_PLATFORM =~ /win32|mingw|cygwin/) rescue nil
SUDO = WIN32 ? '' : ('sudo' unless ENV['SUDOLESS'])
 
desc "Install #{GEM_NAME} #{GEM_VERSION}"
task :install => [ :package ] do
  sh "#{SUDO} gem install --local pkg/#{GEM_NAME}-#{GEM_VERSION} --no-update-sources", :verbose => false
end
 
desc "Uninstall #{GEM_NAME} #{GEM_VERSION} (default ruby)"
task :uninstall => [ :clobber ] do
  sh "#{SUDO} gem uninstall #{GEM_NAME} -v#{GEM_VERSION} -I -x", :verbose => false
end
 
desc 'Run specifications'
Spec::Rake::SpecTask.new(:spec) do |t|
  t.spec_opts << '--options' << 'spec/spec.opts' if File.exists?('spec/spec.opts')
  t.spec_files = Pathname.glob(Pathname.new(__FILE__).dirname + 'spec/**/*_spec.rb')
 
  begin
    t.rcov = ENV.has_key?('NO_RCOV') ? ENV['NO_RCOV'] != 'true' : true
    t.rcov_opts << '--exclude' << 'spec'
    t.rcov_opts << '--text-summary'
    t.rcov_opts << '--sort' << 'coverage' << '--sort-reverse'
  rescue Exception
    # rcov not installed
  end
end