1package Prophet::Resolver::AlwaysSource;
2{
3  $Prophet::Resolver::AlwaysSource::VERSION = '0.751';
4}
5use Any::Moose;
6use Prophet::Change;
7extends 'Prophet::Resolver';
8
9sub run {
10    my $self               = shift;
11    my $conflicting_change = shift;
12    return 0 if $conflicting_change->file_op_conflict;
13
14    my $resolution = Prophet::Change->new_from_conflict($conflicting_change);
15    return $resolution;
16}
17
18__PACKAGE__->meta->make_immutable;
19no Any::Moose;
20
211;
22
23__END__
24
25=pod
26
27=head1 NAME
28
29Prophet::Resolver::AlwaysSource
30
31=head1 VERSION
32
33version 0.751
34
35=head1 AUTHORS
36
37=over 4
38
39=item *
40
41Jesse Vincent <jesse@bestpractical.com>
42
43=item *
44
45Chia-Liang Kao <clkao@bestpractical.com>
46
47=item *
48
49Christine Spang <christine@spang.cc>
50
51=back
52
53=head1 COPYRIGHT AND LICENSE
54
55This software is Copyright (c) 2009 by Best Practical Solutions.
56
57This is free software, licensed under:
58
59  The MIT (X11) License
60
61=head1 BUGS AND LIMITATIONS
62
63You can make new bug reports, and view existing ones, through the
64web interface at L<https://rt.cpan.org/Public/Dist/Display.html?Name=Prophet>.
65
66=head1 CONTRIBUTORS
67
68=over 4
69
70=item *
71
72Alex Vandiver <alexmv@bestpractical.com>
73
74=item *
75
76Casey West <casey@geeknest.com>
77
78=item *
79
80Cyril Brulebois <kibi@debian.org>
81
82=item *
83
84Florian Ragwitz <rafl@debian.org>
85
86=item *
87
88Ioan Rogers <ioanr@cpan.org>
89
90=item *
91
92Jonas Smedegaard <dr@jones.dk>
93
94=item *
95
96Kevin Falcone <falcone@bestpractical.com>
97
98=item *
99
100Lance Wicks <lw@judocoach.com>
101
102=item *
103
104Nelson Elhage <nelhage@mit.edu>
105
106=item *
107
108Pedro Melo <melo@simplicidade.org>
109
110=item *
111
112Rob Hoelz <rob@hoelz.ro>
113
114=item *
115
116Ruslan Zakirov <ruz@bestpractical.com>
117
118=item *
119
120Shawn M Moore <sartak@bestpractical.com>
121
122=item *
123
124Simon Wistow <simon@thegestalt.org>
125
126=item *
127
128Stephane Alnet <stephane@shimaore.net>
129
130=item *
131
132Unknown user <nobody@localhost>
133
134=item *
135
136Yanick Champoux <yanick@babyl.dyndns.org>
137
138=item *
139
140franck cuny <franck@lumberjaph.net>
141
142=item *
143
144robertkrimen <robertkrimen@gmail.com>
145
146=item *
147
148sunnavy <sunnavy@bestpractical.com>
149
150=back
151
152=cut
153