copy in and rename AttributeHelpers
authorHans Dieter Pearcey <hdp@weftsoar.net>
Thu, 25 Jun 2009 06:27:51 +0000 (02:27 -0400)
committerHans Dieter Pearcey <hdp@weftsoar.net>
Thu, 25 Jun 2009 15:35:48 +0000 (11:35 -0400)
commite3c07b1941867113a7fbc81f042857bb6b11ed83
tree7616de5de3ca3aa5290c87f0382b2222c1e64eba
parent1e3cd8cbeb48440273bd5b27b76bfb936d0523ac
copy in and rename AttributeHelpers
52 files changed:
lib/Moose/AttributeHelpers.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Bool.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Collection/Array.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Collection/Bag.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Collection/Hash.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Collection/ImmutableHash.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Collection/List.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Counter.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Meta/Method/Curried.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Meta/Method/Provided.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/MethodProvider/Array.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/MethodProvider/Bag.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/MethodProvider/Bool.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/MethodProvider/Counter.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/MethodProvider/Hash.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/MethodProvider/ImmutableHash.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/MethodProvider/List.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/MethodProvider/String.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Number.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/String.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Trait/Base.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Trait/Bool.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Trait/Collection.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Trait/Collection/Array.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Trait/Collection/Bag.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Trait/Collection/Hash.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Trait/Collection/ImmutableHash.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Trait/Collection/List.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Trait/Counter.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Trait/Number.pm [new file with mode: 0644]
lib/Moose/AttributeHelpers/Trait/String.pm [new file with mode: 0644]
t/070_attribute_helpers/000_load.t [new file with mode: 0644]
t/070_attribute_helpers/001_basic_counter.t [new file with mode: 0644]
t/070_attribute_helpers/002_basic_array.t [new file with mode: 0644]
t/070_attribute_helpers/003_basic_hash.t [new file with mode: 0644]
t/070_attribute_helpers/004_basic_number.t [new file with mode: 0644]
t/070_attribute_helpers/005_basic_list.t [new file with mode: 0644]
t/070_attribute_helpers/006_basic_bag.t [new file with mode: 0644]
t/070_attribute_helpers/007_basic_string.t [new file with mode: 0644]
t/070_attribute_helpers/010_array_from_role.t [new file with mode: 0644]
t/070_attribute_helpers/011_counter_with_defaults.t [new file with mode: 0644]
t/070_attribute_helpers/012_basic_bool.t [new file with mode: 0644]
t/070_attribute_helpers/020_remove_attribute.t [new file with mode: 0644]
t/070_attribute_helpers/100_collection_with_roles.t [new file with mode: 0644]
t/070_attribute_helpers/201_trait_counter.t [new file with mode: 0644]
t/070_attribute_helpers/202_trait_array.t [new file with mode: 0644]
t/070_attribute_helpers/203_trait_hash.t [new file with mode: 0644]
t/070_attribute_helpers/204_trait_number.t [new file with mode: 0644]
t/070_attribute_helpers/205_trait_list.t [new file with mode: 0644]
t/070_attribute_helpers/206_trait_bag.t [new file with mode: 0644]
t/070_attribute_helpers/207_trait_string.t [new file with mode: 0644]
t/070_attribute_helpers/208_trait_bool.t [new file with mode: 0644]