dm-constraints 1.0.2 → 1.1.0.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Gemfile CHANGED
@@ -1,110 +1,42 @@
1
- # If you're working on more than one datamapper gem at a time, then it's
2
- # recommended to create a local Gemfile and use this instead of the git
3
- # sources. This will make sure that you are developing against your
4
- # other local datamapper sources that you currently work on. Gemfile.local
5
- # will behave identically to the standard Gemfile apart from the fact that
6
- # it fetches the datamapper gems from local paths. This means that you can use
7
- # the same environment variables, like ADAPTER(S) or PLUGIN(S) when running
8
- # bundle commands. Gemfile.local is added to .gitignore, so you don't need to
9
- # worry about accidentally checking local development paths into git.
10
- # In order to create a local Gemfile, all you need to do is run:
11
- #
12
- # bundle exec rake local_gemfile
13
- #
14
- # This will give you a Gemfile.local file that points to your local clones of
15
- # the various datamapper gems. It's assumed that all datamapper repo clones
16
- # reside in the same directory. You can use the Gemfile.local like so for
17
- # running any bundle command:
18
- #
19
- # BUNDLE_GEMFILE=Gemfile.local bundle foo
20
- #
21
- # You can also specify which adapter(s) should be part of the bundle by setting
22
- # an environment variable. This of course also works when using the Gemfile.local
23
- #
24
- # bundle foo # dm-sqlite-adapter
25
- # ADAPTER=mysql bundle foo # dm-mysql-adapter
26
- # ADAPTERS=sqlite,mysql bundle foo # dm-sqlite-adapter and dm-mysql-adapter
27
- #
28
- # Of course you can also use the ADAPTER(S) variable when using the Gemfile.local
29
- # and running specs against selected adapters.
30
- #
31
- # For easily working with adapters supported on your machine, it's recommended
32
- # that you first install all adapters that you are planning to use or work on
33
- # by doing something like
34
- #
35
- # ADAPTERS=sqlite,mysql,postgres bundle install
36
- #
37
- # This will clone the various repositories and make them available to bundler.
38
- # Once you have them installed you can easily switch between adapters for the
39
- # various development tasks. Running something like
40
- #
41
- # ADAPTER=mysql bundle exec rake spec
42
- #
43
- # will make sure that the dm-mysql-adapter is part of the bundle, and will be used
44
- # when running the specs.
45
- #
46
- # You can also specify which plugin(s) should be part of the bundle by setting
47
- # an environment variable. This also works when using the Gemfile.local
48
- #
49
- # bundle foo # dm-migrations
50
- # PLUGINS=dm-validations bundle foo # dm-migrations and dm-validations
51
- # PLUGINS=dm-validations,dm-types bundle foo # dm-migrations, dm-validations and dm-types
52
- #
53
- # Of course you can combine the PLUGIN(S) and ADAPTER(S) env vars to run specs
54
- # for certain adapter/plugin combinations.
55
- #
56
- # Finally, to speed up running specs and other tasks, it's recommended to run
57
- #
58
- # bundle lock
59
- #
60
- # after running 'bundle install' for the first time. This will make 'bundle exec' run
61
- # a lot faster compared to the unlocked version. With an unlocked bundle you would
62
- # typically just run 'bundle install' from time to time to fetch the latest sources from
63
- # upstream. When you locked your bundle, you need to run
64
- #
65
- # bundle install --relock
66
- #
67
- # to make sure to fetch the latest updates and then lock the bundle again. Gemfile.lock
68
- # is added to the .gitignore file, so you don't need to worry about accidentally checking
69
- # it into version control.
1
+ require 'pathname'
70
2
 
71
3
  source 'http://rubygems.org'
72
4
 
73
- DATAMAPPER = 'git://github.com/datamapper'
74
- DM_VERSION = '~> 1.0.2'
5
+ SOURCE = ENV.fetch('SOURCE', :git).to_sym
6
+ REPO_POSTFIX = SOURCE == :path ? '' : '.git'
7
+ DATAMAPPER = SOURCE == :path ? Pathname(__FILE__).dirname.parent : 'http://github.com/datamapper'
8
+ DM_VERSION = '~> 1.1.0.rc1'
75
9
 
76
- group :runtime do # Runtime dependencies (as in the gemspec)
10
+ group :runtime do
77
11
 
78
12
  if ENV['EXTLIB']
79
- gem 'extlib', '~> 0.9.15', :git => "#{DATAMAPPER}/extlib.git"
13
+ gem 'extlib', '~> 0.9.15', SOURCE => "#{DATAMAPPER}/extlib#{REPO_POSTFIX}", :require => nil
80
14
  else
81
- gem 'activesupport', '~> 3.0.0', :git => 'git://github.com/rails/rails.git', :branch => '3-0-stable', :require => nil
15
+ gem 'activesupport', '~> 3.0.4', :require => nil
16
+ gem 'i18n', '~> 0.5.0'
82
17
  end
83
18
 
84
- gem 'dm-core', DM_VERSION, :git => "#{DATAMAPPER}/dm-core.git"
19
+ gem 'dm-core', DM_VERSION, SOURCE => "#{DATAMAPPER}/dm-core#{REPO_POSTFIX}"
85
20
 
86
21
  end
87
22
 
88
- group(:development) do # Development dependencies (as in the gemspec)
23
+ group :development do
89
24
 
90
- gem 'rake', '~> 0.8.7'
91
- gem 'rspec', '~> 1.3', :git => 'git://github.com/snusnu/rspec', :branch => 'heckle_fix_plus_gemfile'
92
- gem 'jeweler', '~> 1.4'
25
+ gem 'jeweler', '~> 1.5.2'
26
+ gem 'rake', '~> 0.8.7'
27
+ gem 'rspec', '~> 1.3.1'
93
28
 
94
29
  end
95
30
 
96
- group :quality do # These gems contain rake tasks that check the quality of the source code
31
+ group :quality do
97
32
 
98
- gem 'metric_fu', '~> 1.3'
99
- gem 'rcov', '~> 0.9.8'
100
- gem 'reek', '~> 1.2.8'
101
- gem 'roodi', '~> 2.1'
102
- gem 'yard', '~> 0.5'
103
- gem 'yardstick', '~> 0.1'
33
+ gem 'rcov', '~> 0.9.9', :platforms => :mri_18
34
+ gem 'yard', '~> 0.6'
35
+ gem 'yardstick', '~> 0.2'
104
36
 
105
37
  end
106
38
 
107
- group :datamapper do # We need this because we want to pin these dependencies to their git master sources
39
+ group :datamapper do
108
40
 
109
41
  adapters = ENV['ADAPTER'] || ENV['ADAPTERS']
110
42
  adapters = adapters.to_s.tr(',', ' ').split.uniq - %w[ in_memory ]
@@ -114,27 +46,27 @@ group :datamapper do # We need this because we want to pin these dependencies to
114
46
 
115
47
  if (do_adapters = DM_DO_ADAPTERS & adapters).any?
116
48
  options = {}
117
- options[:git] = "#{DATAMAPPER}/do.git" if ENV['DO_GIT'] == 'true'
49
+ options[:git] = "#{DATAMAPPER}/do#{REPO_POSTFIX}" if ENV['DO_GIT'] == 'true'
118
50
 
119
- gem 'data_objects', DO_VERSION, options.dup
51
+ gem 'data_objects', DO_VERSION, options.dup
120
52
 
121
53
  do_adapters.each do |adapter|
122
54
  adapter = 'sqlite3' if adapter == 'sqlite'
123
55
  gem "do_#{adapter}", DO_VERSION, options.dup
124
56
  end
125
57
 
126
- gem 'dm-do-adapter', DM_VERSION, :git => "#{DATAMAPPER}/dm-do-adapter.git"
58
+ gem 'dm-do-adapter', DM_VERSION, SOURCE => "#{DATAMAPPER}/dm-do-adapter#{REPO_POSTFIX}"
127
59
  end
128
60
 
129
61
  adapters.each do |adapter|
130
- gem "dm-#{adapter}-adapter", DM_VERSION, :git => "#{DATAMAPPER}/dm-#{adapter}-adapter.git"
62
+ gem "dm-#{adapter}-adapter", DM_VERSION, SOURCE => "#{DATAMAPPER}/dm-#{adapter}-adapter#{REPO_POSTFIX}"
131
63
  end
132
64
 
133
65
  plugins = ENV['PLUGINS'] || ENV['PLUGIN']
134
66
  plugins = plugins.to_s.tr(',', ' ').split.push('dm-migrations').uniq
135
67
 
136
68
  plugins.each do |plugin|
137
- gem plugin, DM_VERSION, :git => "#{DATAMAPPER}/#{plugin}.git"
69
+ gem plugin, DM_VERSION, SOURCE => "#{DATAMAPPER}/#{plugin}#{REPO_POSTFIX}"
138
70
  end
139
71
 
140
72
  end
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010 Dirkjan Bussink
1
+ Copyright (c) 2011 Dirkjan Bussink
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
 
4
4
  begin
5
- gem 'jeweler', '~> 1.4'
5
+ gem 'jeweler', '~> 1.5.2'
6
6
  require 'jeweler'
7
7
 
8
8
  Jeweler::Tasks.new do |gem|
@@ -15,11 +15,6 @@ begin
15
15
  gem.has_rdoc = 'yard'
16
16
 
17
17
  gem.rubyforge_project = 'datamapper'
18
-
19
- gem.add_dependency 'dm-core', '~> 1.0.2'
20
- gem.add_dependency 'dm-migrations', '~> 1.0.2'
21
-
22
- gem.add_development_dependency 'rspec', '~> 1.3'
23
18
  end
24
19
 
25
20
  Jeweler::GemcutterTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.2
1
+ 1.1.0.rc1
@@ -1,86 +1,88 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{dm-constraints}
8
- s.version = "1.0.2"
8
+ s.version = "1.1.0.rc1"
9
9
 
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
10
+ s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Dirkjan Bussink"]
12
- s.date = %q{2010-09-07}
12
+ s.date = %q{2011-02-28}
13
13
  s.description = %q{DataMapper plugin constraining relationships}
14
14
  s.email = %q{d.bussink [a] gmail [d] com}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
17
- "README.rdoc"
17
+ "README.rdoc"
18
18
  ]
19
19
  s.files = [
20
- ".gitignore",
21
- "Gemfile",
22
- "LICENSE",
23
- "README.rdoc",
24
- "Rakefile",
25
- "VERSION",
26
- "dm-constraints.gemspec",
27
- "lib/dm-constraints.rb",
28
- "lib/dm-constraints/adapters/dm-abstract-adapter.rb",
29
- "lib/dm-constraints/adapters/dm-do-adapter.rb",
30
- "lib/dm-constraints/adapters/dm-mysql-adapter.rb",
31
- "lib/dm-constraints/adapters/dm-oracle-adapter.rb",
32
- "lib/dm-constraints/adapters/dm-postgres-adapter.rb",
33
- "lib/dm-constraints/adapters/dm-sqlite-adapter.rb",
34
- "lib/dm-constraints/adapters/dm-sqlserver-adapter.rb",
35
- "lib/dm-constraints/delete_constraint.rb",
36
- "lib/dm-constraints/migrations.rb",
37
- "lib/dm-constraints/relationships.rb",
38
- "spec/integration/constraints_spec.rb",
39
- "spec/isolated/require_after_setup_spec.rb",
40
- "spec/isolated/require_before_setup_spec.rb",
41
- "spec/isolated/require_spec.rb",
42
- "spec/rcov.opts",
43
- "spec/spec.opts",
44
- "spec/spec_helper.rb",
45
- "tasks/ci.rake",
46
- "tasks/local_gemfile.rake",
47
- "tasks/metrics.rake",
48
- "tasks/spec.rake",
49
- "tasks/yard.rake",
50
- "tasks/yardstick.rake"
20
+ "Gemfile",
21
+ "LICENSE",
22
+ "README.rdoc",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "dm-constraints.gemspec",
26
+ "lib/dm-constraints.rb",
27
+ "lib/dm-constraints/adapters/dm-abstract-adapter.rb",
28
+ "lib/dm-constraints/adapters/dm-do-adapter.rb",
29
+ "lib/dm-constraints/adapters/dm-mysql-adapter.rb",
30
+ "lib/dm-constraints/adapters/dm-oracle-adapter.rb",
31
+ "lib/dm-constraints/adapters/dm-postgres-adapter.rb",
32
+ "lib/dm-constraints/adapters/dm-sqlite-adapter.rb",
33
+ "lib/dm-constraints/adapters/dm-sqlserver-adapter.rb",
34
+ "lib/dm-constraints/delete_constraint.rb",
35
+ "lib/dm-constraints/migrations.rb",
36
+ "lib/dm-constraints/relationships.rb",
37
+ "spec/integration/constraints_spec.rb",
38
+ "spec/isolated/require_after_setup_spec.rb",
39
+ "spec/isolated/require_before_setup_spec.rb",
40
+ "spec/isolated/require_spec.rb",
41
+ "spec/rcov.opts",
42
+ "spec/spec.opts",
43
+ "spec/spec_helper.rb",
44
+ "tasks/spec.rake",
45
+ "tasks/yard.rake",
46
+ "tasks/yardstick.rake"
51
47
  ]
52
- s.has_rdoc = %q{yard}
53
48
  s.homepage = %q{http://github.com/datamapper/dm-constraints}
54
- s.rdoc_options = ["--charset=UTF-8"]
55
49
  s.require_paths = ["lib"]
56
50
  s.rubyforge_project = %q{datamapper}
57
- s.rubygems_version = %q{1.3.7}
51
+ s.rubygems_version = %q{1.5.2}
58
52
  s.summary = %q{DataMapper plugin constraining relationships}
59
53
  s.test_files = [
60
54
  "spec/integration/constraints_spec.rb",
61
- "spec/isolated/require_after_setup_spec.rb",
62
- "spec/isolated/require_before_setup_spec.rb",
63
- "spec/isolated/require_spec.rb",
64
- "spec/spec_helper.rb"
55
+ "spec/isolated/require_after_setup_spec.rb",
56
+ "spec/isolated/require_before_setup_spec.rb",
57
+ "spec/isolated/require_spec.rb",
58
+ "spec/spec_helper.rb"
65
59
  ]
66
60
 
67
61
  if s.respond_to? :specification_version then
68
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
69
62
  s.specification_version = 3
70
63
 
71
64
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
72
- s.add_runtime_dependency(%q<dm-core>, ["~> 1.0.2"])
73
- s.add_runtime_dependency(%q<dm-migrations>, ["~> 1.0.2"])
74
- s.add_development_dependency(%q<rspec>, ["~> 1.3"])
65
+ s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.4"])
66
+ s.add_runtime_dependency(%q<i18n>, ["~> 0.5.0"])
67
+ s.add_runtime_dependency(%q<dm-core>, ["~> 1.1.0.rc1"])
68
+ s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
69
+ s.add_development_dependency(%q<rake>, ["~> 0.8.7"])
70
+ s.add_development_dependency(%q<rspec>, ["~> 1.3.1"])
75
71
  else
76
- s.add_dependency(%q<dm-core>, ["~> 1.0.2"])
77
- s.add_dependency(%q<dm-migrations>, ["~> 1.0.2"])
78
- s.add_dependency(%q<rspec>, ["~> 1.3"])
72
+ s.add_dependency(%q<activesupport>, ["~> 3.0.4"])
73
+ s.add_dependency(%q<i18n>, ["~> 0.5.0"])
74
+ s.add_dependency(%q<dm-core>, ["~> 1.1.0.rc1"])
75
+ s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
76
+ s.add_dependency(%q<rake>, ["~> 0.8.7"])
77
+ s.add_dependency(%q<rspec>, ["~> 1.3.1"])
79
78
  end
80
79
  else
81
- s.add_dependency(%q<dm-core>, ["~> 1.0.2"])
82
- s.add_dependency(%q<dm-migrations>, ["~> 1.0.2"])
83
- s.add_dependency(%q<rspec>, ["~> 1.3"])
80
+ s.add_dependency(%q<activesupport>, ["~> 3.0.4"])
81
+ s.add_dependency(%q<i18n>, ["~> 0.5.0"])
82
+ s.add_dependency(%q<dm-core>, ["~> 1.1.0.rc1"])
83
+ s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
84
+ s.add_dependency(%q<rake>, ["~> 0.8.7"])
85
+ s.add_dependency(%q<rspec>, ["~> 1.3.1"])
84
86
  end
85
87
  end
86
88
 
@@ -6,8 +6,43 @@ module DataMapper
6
6
 
7
7
  module OracleAdapter
8
8
  include DataObjectsAdapter
9
- end
10
9
 
10
+ # oracle does not provide the information_schema table
11
+ # To question intenal state like postgres or mysql
12
+ # @see DataMapper::Constraints::Adapters::DataObjectsAdapter
13
+ # @api private
14
+ def constraint_exists?(storage_name, constraint_name)
15
+ statement = <<-SQL.compress_lines
16
+ SELECT COUNT(*)
17
+ FROM USER_CONSTRAINTS
18
+ WHERE table_name = ?
19
+ AND constraint_name = ?
20
+ SQL
21
+
22
+ select(statement, storage_name, constraint_name).first > 0
23
+ end
24
+
25
+
26
+ # @see DataMapper::Constraints::Adapters::DataObjectsAdapter#create_constraints_statement
27
+ def create_constraints_statement(storage_name, constraint_name, constraint_type, foreign_keys, reference_storage_name, reference_keys)
28
+ <<-SQL.compress_lines
29
+ ALTER TABLE #{quote_name(storage_name)}
30
+ ADD CONSTRAINT #{quote_name(constraint_name)}
31
+ FOREIGN KEY (#{foreign_keys.join(', ')})
32
+ REFERENCES #{quote_name(reference_storage_name)} (#{reference_keys.join(', ')})
33
+ INITIALLY DEFERRED DEFERRABLE
34
+ SQL
35
+ end
36
+
37
+ def destroy_constraints_statement(storage_name, constraint_name)
38
+ <<-SQL.compress_lines
39
+ ALTER TABLE #{quote_name(storage_name)}
40
+ DROP CONSTRAINT #{quote_name(constraint_name)}
41
+ CASCADE
42
+ SQL
43
+ end
44
+
45
+ end
11
46
  end
12
47
  end
13
48
  end
@@ -90,7 +90,7 @@ module DataMapper
90
90
  #
91
91
  # @api semi-public
92
92
  def check_delete_constraints
93
- relationships.each_value do |relationship|
93
+ relationships.each do |relationship|
94
94
  next unless relationship.respond_to?(:constraint)
95
95
  next unless association = relationship.get(self)
96
96
 
@@ -47,7 +47,7 @@ module DataMapper
47
47
  adapter = DataMapper.repository(repository_name).adapter
48
48
  return unless adapter.respond_to?(method)
49
49
 
50
- relationships(repository_name).each_value do |relationship|
50
+ relationships(repository_name).each do |relationship|
51
51
  adapter.send(method, relationship)
52
52
  end
53
53
  end
@@ -78,7 +78,8 @@ describe 'DataMapper::Constraints', "(with #{DataMapper::Spec.adapter_name})" do
78
78
 
79
79
  supported_by :postgres, :mysql do
80
80
  it 'should not be able to create related objects with a failing foreign key constraint' do
81
- pending_if 'JRuby throws a DataObjects::SQLError for integrity errors, which is wrong', RUBY_ENGINE == 'jruby' do
81
+ jruby = Object.const_defined?('RUBY_ENGINE') ? RUBY_ENGINE == 'jruby' : false
82
+ pending_if 'JRuby throws a DataObjects::SQLError for integrity errors, which is wrong', jruby do
82
83
  article = Article.create(:title => 'Man on the Moon')
83
84
  lambda { Comment.create(:body => 'So true!', :article_id => article.id + 1) }.should raise_error(DataObjects::IntegrityError)
84
85
  end
data/tasks/spec.rake CHANGED
@@ -35,7 +35,4 @@ rescue LoadError
35
35
  end
36
36
  end
37
37
 
38
- task :spec => :check_dependencies
39
- task :rcov => :check_dependencies
40
-
41
38
  task :default => :spec
metadata CHANGED
@@ -1,12 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dm-constraints
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 1
7
- - 0
8
- - 2
9
- version: 1.0.2
4
+ prerelease: 6
5
+ version: 1.1.0.rc1
10
6
  platform: ruby
11
7
  authors:
12
8
  - Dirkjan Bussink
@@ -14,53 +10,75 @@ autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
12
 
17
- date: 2010-09-07 00:00:00 -07:00
13
+ date: 2011-02-28 00:00:00 -08:00
18
14
  default_executable:
19
15
  dependencies:
20
16
  - !ruby/object:Gem::Dependency
21
- name: dm-core
22
- prerelease: false
17
+ name: activesupport
23
18
  requirement: &id001 !ruby/object:Gem::Requirement
24
19
  none: false
25
20
  requirements:
26
21
  - - ~>
27
22
  - !ruby/object:Gem::Version
28
- segments:
29
- - 1
30
- - 0
31
- - 2
32
- version: 1.0.2
23
+ version: 3.0.4
33
24
  type: :runtime
25
+ prerelease: false
34
26
  version_requirements: *id001
35
27
  - !ruby/object:Gem::Dependency
36
- name: dm-migrations
37
- prerelease: false
28
+ name: i18n
38
29
  requirement: &id002 !ruby/object:Gem::Requirement
39
30
  none: false
40
31
  requirements:
41
32
  - - ~>
42
33
  - !ruby/object:Gem::Version
43
- segments:
44
- - 1
45
- - 0
46
- - 2
47
- version: 1.0.2
34
+ version: 0.5.0
48
35
  type: :runtime
36
+ prerelease: false
49
37
  version_requirements: *id002
50
38
  - !ruby/object:Gem::Dependency
51
- name: rspec
52
- prerelease: false
39
+ name: dm-core
53
40
  requirement: &id003 !ruby/object:Gem::Requirement
54
41
  none: false
55
42
  requirements:
56
43
  - - ~>
57
44
  - !ruby/object:Gem::Version
58
- segments:
59
- - 1
60
- - 3
61
- version: "1.3"
62
- type: :development
45
+ version: 1.1.0.rc1
46
+ type: :runtime
47
+ prerelease: false
63
48
  version_requirements: *id003
49
+ - !ruby/object:Gem::Dependency
50
+ name: jeweler
51
+ requirement: &id004 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ~>
55
+ - !ruby/object:Gem::Version
56
+ version: 1.5.2
57
+ type: :development
58
+ prerelease: false
59
+ version_requirements: *id004
60
+ - !ruby/object:Gem::Dependency
61
+ name: rake
62
+ requirement: &id005 !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - ~>
66
+ - !ruby/object:Gem::Version
67
+ version: 0.8.7
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: *id005
71
+ - !ruby/object:Gem::Dependency
72
+ name: rspec
73
+ requirement: &id006 !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ~>
77
+ - !ruby/object:Gem::Version
78
+ version: 1.3.1
79
+ type: :development
80
+ prerelease: false
81
+ version_requirements: *id006
64
82
  description: DataMapper plugin constraining relationships
65
83
  email: d.bussink [a] gmail [d] com
66
84
  executables: []
@@ -71,7 +89,6 @@ extra_rdoc_files:
71
89
  - LICENSE
72
90
  - README.rdoc
73
91
  files:
74
- - .gitignore
75
92
  - Gemfile
76
93
  - LICENSE
77
94
  - README.rdoc
@@ -96,19 +113,16 @@ files:
96
113
  - spec/rcov.opts
97
114
  - spec/spec.opts
98
115
  - spec/spec_helper.rb
99
- - tasks/ci.rake
100
- - tasks/local_gemfile.rake
101
- - tasks/metrics.rake
102
116
  - tasks/spec.rake
103
117
  - tasks/yard.rake
104
118
  - tasks/yardstick.rake
105
- has_rdoc: yard
119
+ has_rdoc: true
106
120
  homepage: http://github.com/datamapper/dm-constraints
107
121
  licenses: []
108
122
 
109
123
  post_install_message:
110
- rdoc_options:
111
- - --charset=UTF-8
124
+ rdoc_options: []
125
+
112
126
  require_paths:
113
127
  - lib
114
128
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -116,21 +130,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
116
130
  requirements:
117
131
  - - ">="
118
132
  - !ruby/object:Gem::Version
119
- segments:
120
- - 0
121
133
  version: "0"
122
134
  required_rubygems_version: !ruby/object:Gem::Requirement
123
135
  none: false
124
136
  requirements:
125
- - - ">="
137
+ - - ">"
126
138
  - !ruby/object:Gem::Version
127
- segments:
128
- - 0
129
- version: "0"
139
+ version: 1.3.1
130
140
  requirements: []
131
141
 
132
142
  rubyforge_project: datamapper
133
- rubygems_version: 1.3.7
143
+ rubygems_version: 1.5.2
134
144
  signing_key:
135
145
  specification_version: 3
136
146
  summary: DataMapper plugin constraining relationships
data/.gitignore DELETED
@@ -1,38 +0,0 @@
1
- ## MAC OS
2
- .DS_Store
3
-
4
- ## TEXTMATE
5
- *.tmproj
6
- tmtags
7
-
8
- ## EMACS
9
- *~
10
- \#*
11
- .\#*
12
-
13
- ## VIM
14
- *.swp
15
-
16
- ## Rubinius
17
- *.rbc
18
-
19
- ## PROJECT::GENERAL
20
- *.gem
21
- coverage
22
- rdoc
23
- pkg
24
- tmp
25
- doc
26
- log
27
- .yardoc
28
- measurements
29
-
30
- ## BUNDLER
31
- .bundle
32
- Gemfile.local
33
- Gemfile.lock
34
- Gemfile.local.lock
35
-
36
- ## PROJECT::SPECIFIC
37
- spec/db/
38
- spec/log/
data/tasks/ci.rake DELETED
@@ -1 +0,0 @@
1
- task :ci => [ :verify_measurements, 'metrics:all' ]
@@ -1,16 +0,0 @@
1
- desc "Support bundling from local source code (allows BUNDLE_GEMFILE=Gemfile.local bundle foo)"
2
- task :local_gemfile do |t|
3
-
4
- root = Pathname(__FILE__).dirname.parent
5
- datamapper = root.parent
6
-
7
- root.join('Gemfile.local').open('w') do |f|
8
- root.join('Gemfile').open.each do |line|
9
- line.sub!(/DATAMAPPER = 'git:\/\/github.com\/datamapper'/, "DATAMAPPER = '#{datamapper}'")
10
- line.sub!(/:git => \"#\{DATAMAPPER\}\/(.+?)(?:\.git)?\"/, ':path => "#{DATAMAPPER}/\1"')
11
- line.sub!(/do_options\[:git\] = \"#\{DATAMAPPER\}\/(.+?)(?:\.git)?\"/, 'do_options[:path] = "#{DATAMAPPER}/\1"')
12
- f.puts line
13
- end
14
- end
15
-
16
- end
data/tasks/metrics.rake DELETED
@@ -1,36 +0,0 @@
1
- begin
2
- require 'metric_fu'
3
- rescue LoadError
4
- namespace :metrics do
5
- task :all do
6
- abort 'metric_fu is not available. In order to run metrics:all, you must: gem install metric_fu'
7
- end
8
- end
9
- end
10
-
11
- begin
12
- require 'reek/adapters/rake_task'
13
-
14
- Reek::RakeTask.new do |t|
15
- t.fail_on_error = true
16
- t.verbose = false
17
- t.source_files = 'lib/**/*.rb'
18
- end
19
- rescue LoadError
20
- task :reek do
21
- abort 'Reek is not available. In order to run reek, you must: gem install reek'
22
- end
23
- end
24
-
25
- begin
26
- require 'roodi'
27
- require 'roodi_task'
28
-
29
- RoodiTask.new do |t|
30
- t.verbose = false
31
- end
32
- rescue LoadError
33
- task :roodi do
34
- abort 'Roodi is not available. In order to run roodi, you must: gem install roodi'
35
- end
36
- end