~ubuntu-branches/ubuntu/saucy/ruby-validatable/saucy

« back to all changes in this revision

Viewing changes to .pc/move_some_rb_files_to_lib_validatable.patch/lib/validatable.rb

  • Committer: Package Import Robot
  • Author(s): Cédric Boutillier
  • Date: 2012-06-13 23:47:54 UTC
  • Revision ID: package-import@ubuntu.com-20120613234754-9rxi0taw1e5wke0w
Tags: 1.6.7-8
* Move secondary Ruby files into /usr/lib/ruby/vendor_ruby/validatable/ to
  avoid name clash (Closes: #673738).
  + override dh_install in rules to move the files
  + add debian/patches/move_some_rb_files_to_lib_validatable.patch to adapt
    require statements
* Set urgency to high, as this version solves an RC bug
* Adapt versions in Breaks: and Replaces: fields to match the last version
  of the package not following the new Ruby policy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
require 'forwardable'
 
2
require File.expand_path(File.dirname(__FILE__) + '/object_extension')
 
3
require File.expand_path(File.dirname(__FILE__) + '/errors')
 
4
require File.expand_path(File.dirname(__FILE__) + '/validatable_class_methods')
 
5
require File.expand_path(File.dirname(__FILE__) + '/macros')
 
6
require File.expand_path(File.dirname(__FILE__) + '/validatable_instance_methods')
 
7
require File.expand_path(File.dirname(__FILE__) + '/included_validation')
 
8
require File.expand_path(File.dirname(__FILE__) + '/child_validation')
 
9
require File.expand_path(File.dirname(__FILE__) + '/understandable')
 
10
require File.expand_path(File.dirname(__FILE__) + '/requireable')
 
11
require File.expand_path(File.dirname(__FILE__) + '/validations/validation_base')
 
12
require File.expand_path(File.dirname(__FILE__) + '/validations/validates_format_of')
 
13
require File.expand_path(File.dirname(__FILE__) + '/validations/validates_presence_of')
 
14
require File.expand_path(File.dirname(__FILE__) + '/validations/validates_acceptance_of')
 
15
require File.expand_path(File.dirname(__FILE__) + '/validations/validates_confirmation_of')
 
16
require File.expand_path(File.dirname(__FILE__) + '/validations/validates_length_of')
 
17
require File.expand_path(File.dirname(__FILE__) + '/validations/validates_true_for')
 
18
require File.expand_path(File.dirname(__FILE__) + '/validations/validates_numericality_of')
 
19
require File.expand_path(File.dirname(__FILE__) + '/validations/validates_each')
 
 
b'\\ No newline at end of file'