dm-rspec 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,6 @@
1
+ ### version 0.2.4 / 2013-02-07
2
+ * New matcher: validate\_length\_of (GavinJoyce)
3
+
1
4
  ### version 0.2.3 / 2012-07-24
2
5
  * Fix bug: display property name for have\_property matcher.
3
6
 
@@ -0,0 +1,165 @@
1
+ GNU LESSER GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+
9
+ This version of the GNU Lesser General Public License incorporates
10
+ the terms and conditions of version 3 of the GNU General Public
11
+ License, supplemented by the additional permissions listed below.
12
+
13
+ 0. Additional Definitions.
14
+
15
+ As used herein, "this License" refers to version 3 of the GNU Lesser
16
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
17
+ General Public License.
18
+
19
+ "The Library" refers to a covered work governed by this License,
20
+ other than an Application or a Combined Work as defined below.
21
+
22
+ An "Application" is any work that makes use of an interface provided
23
+ by the Library, but which is not otherwise based on the Library.
24
+ Defining a subclass of a class defined by the Library is deemed a mode
25
+ of using an interface provided by the Library.
26
+
27
+ A "Combined Work" is a work produced by combining or linking an
28
+ Application with the Library. The particular version of the Library
29
+ with which the Combined Work was made is also called the "Linked
30
+ Version".
31
+
32
+ The "Minimal Corresponding Source" for a Combined Work means the
33
+ Corresponding Source for the Combined Work, excluding any source code
34
+ for portions of the Combined Work that, considered in isolation, are
35
+ based on the Application, and not on the Linked Version.
36
+
37
+ The "Corresponding Application Code" for a Combined Work means the
38
+ object code and/or source code for the Application, including any data
39
+ and utility programs needed for reproducing the Combined Work from the
40
+ Application, but excluding the System Libraries of the Combined Work.
41
+
42
+ 1. Exception to Section 3 of the GNU GPL.
43
+
44
+ You may convey a covered work under sections 3 and 4 of this License
45
+ without being bound by section 3 of the GNU GPL.
46
+
47
+ 2. Conveying Modified Versions.
48
+
49
+ If you modify a copy of the Library, and, in your modifications, a
50
+ facility refers to a function or data to be supplied by an Application
51
+ that uses the facility (other than as an argument passed when the
52
+ facility is invoked), then you may convey a copy of the modified
53
+ version:
54
+
55
+ a) under this License, provided that you make a good faith effort to
56
+ ensure that, in the event an Application does not supply the
57
+ function or data, the facility still operates, and performs
58
+ whatever part of its purpose remains meaningful, or
59
+
60
+ b) under the GNU GPL, with none of the additional permissions of
61
+ this License applicable to that copy.
62
+
63
+ 3. Object Code Incorporating Material from Library Header Files.
64
+
65
+ The object code form of an Application may incorporate material from
66
+ a header file that is part of the Library. You may convey such object
67
+ code under terms of your choice, provided that, if the incorporated
68
+ material is not limited to numerical parameters, data structure
69
+ layouts and accessors, or small macros, inline functions and templates
70
+ (ten or fewer lines in length), you do both of the following:
71
+
72
+ a) Give prominent notice with each copy of the object code that the
73
+ Library is used in it and that the Library and its use are
74
+ covered by this License.
75
+
76
+ b) Accompany the object code with a copy of the GNU GPL and this license
77
+ document.
78
+
79
+ 4. Combined Works.
80
+
81
+ You may convey a Combined Work under terms of your choice that,
82
+ taken together, effectively do not restrict modification of the
83
+ portions of the Library contained in the Combined Work and reverse
84
+ engineering for debugging such modifications, if you also do each of
85
+ the following:
86
+
87
+ a) Give prominent notice with each copy of the Combined Work that
88
+ the Library is used in it and that the Library and its use are
89
+ covered by this License.
90
+
91
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
92
+ document.
93
+
94
+ c) For a Combined Work that displays copyright notices during
95
+ execution, include the copyright notice for the Library among
96
+ these notices, as well as a reference directing the user to the
97
+ copies of the GNU GPL and this license document.
98
+
99
+ d) Do one of the following:
100
+
101
+ 0) Convey the Minimal Corresponding Source under the terms of this
102
+ License, and the Corresponding Application Code in a form
103
+ suitable for, and under terms that permit, the user to
104
+ recombine or relink the Application with a modified version of
105
+ the Linked Version to produce a modified Combined Work, in the
106
+ manner specified by section 6 of the GNU GPL for conveying
107
+ Corresponding Source.
108
+
109
+ 1) Use a suitable shared library mechanism for linking with the
110
+ Library. A suitable mechanism is one that (a) uses at run time
111
+ a copy of the Library already present on the user's computer
112
+ system, and (b) will operate properly with a modified version
113
+ of the Library that is interface-compatible with the Linked
114
+ Version.
115
+
116
+ e) Provide Installation Information, but only if you would otherwise
117
+ be required to provide such information under section 6 of the
118
+ GNU GPL, and only to the extent that such information is
119
+ necessary to install and execute a modified version of the
120
+ Combined Work produced by recombining or relinking the
121
+ Application with a modified version of the Linked Version. (If
122
+ you use option 4d0, the Installation Information must accompany
123
+ the Minimal Corresponding Source and Corresponding Application
124
+ Code. If you use option 4d1, you must provide the Installation
125
+ Information in the manner specified by section 6 of the GNU GPL
126
+ for conveying Corresponding Source.)
127
+
128
+ 5. Combined Libraries.
129
+
130
+ You may place library facilities that are a work based on the
131
+ Library side by side in a single library together with other library
132
+ facilities that are not Applications and are not covered by this
133
+ License, and convey such a combined library under terms of your
134
+ choice, if you do both of the following:
135
+
136
+ a) Accompany the combined library with a copy of the same work based
137
+ on the Library, uncombined with any other library facilities,
138
+ conveyed under the terms of this License.
139
+
140
+ b) Give prominent notice with the combined library that part of it
141
+ is a work based on the Library, and explaining where to find the
142
+ accompanying uncombined form of the same work.
143
+
144
+ 6. Revised Versions of the GNU Lesser General Public License.
145
+
146
+ The Free Software Foundation may publish revised and/or new versions
147
+ of the GNU Lesser General Public License from time to time. Such new
148
+ versions will be similar in spirit to the present version, but may
149
+ differ in detail to address new problems or concerns.
150
+
151
+ Each version is given a distinguishing version number. If the
152
+ Library as you received it specifies that a certain numbered version
153
+ of the GNU Lesser General Public License "or any later version"
154
+ applies to it, you have the option of following the terms and
155
+ conditions either of that published version or of any later version
156
+ published by the Free Software Foundation. If the Library as you
157
+ received it does not specify a version number of the GNU Lesser
158
+ General Public License, you may choose any version of the GNU Lesser
159
+ General Public License ever published by the Free Software Foundation.
160
+
161
+ If the Library as you received it specifies that a proxy can decide
162
+ whether future versions of the GNU Lesser General Public License shall
163
+ apply, that proxy's public statement of acceptance of any version is
164
+ permanent authorization for you to choose that version for the
165
+ Library.
@@ -10,14 +10,16 @@ A set of rspec matchers to test DataMapper models like you test ActiveRecord mod
10
10
 
11
11
 
12
12
  ## Usage
13
-
13
+
14
14
  Add the next to your `spec_helper`:
15
15
 
16
- require 'dm-rspec'
17
-
18
- RSpec.configure do |config|
19
- config.include(DataMapper::Matchers)
20
- end
16
+ ```ruby
17
+ require 'dm-rspec'
18
+
19
+ RSpec.configure do |config|
20
+ config.include(DataMapper::Matchers)
21
+ end
22
+ ```
21
23
 
22
24
  In your spec files you can use the next matchers to test appropriate DataMapper's validations:
23
25
 
@@ -37,50 +39,61 @@ In your spec files you can use the next matchers to test appropriate DataMapper'
37
39
 
38
40
  Assume you have the next data mapper models:
39
41
 
40
- class Book
41
- include DataMapper::Resource
42
- property :id, Serial
43
- property :name, String
44
- belongs_to :author
45
- has n, :genres, :through => Resource
46
- validates_presence_of :name
47
- end
48
-
49
- class Author
50
- include DataMapper::Resource
51
- property :id, Serial
52
- has n, :books
53
- end
54
-
55
- class Genre
56
- include DataMapper::Resource
57
- property :id, Serial
58
- property :name, String
59
- has n, :books, :through => Resource
60
- end
42
+ ```ruby
43
+ class Book
44
+ include DataMapper::Resource
61
45
 
62
- You specs can contain the next:
46
+ property :id , Serial
47
+ property :name, String
48
+
49
+ belongs_to :author
50
+ has n, :genres, :through => Resource
63
51
 
64
- specify {Book.should have_property :name}
65
- specify {Book.should belong_to :author}
66
- specify {Author.should have_many :books}
67
- specify {Genre.should have_many_and_belong_to :books}
68
- specify {Book.should have_many_and_belong_to :genres}
52
+ validates_presence_of :name
53
+ end
69
54
 
70
- specify {Book.should validate_presence_of :name}
55
+ class Author
56
+ include DataMapper::Resource
71
57
 
72
- it 'has errors' do
73
- book = Book.new(:name => 'fails on two validations')
74
- book.valid?
75
- book.should have(2).errors_on(:name)
76
- end
58
+ property :id, Serial
77
59
 
78
- They can look like below as well:
60
+ has n, :books
61
+ end
79
62
 
80
- describe Book do
81
- it { should have_property :name }
82
- it { should belongs_to :author }
83
- end
63
+ class Genre
64
+ include DataMapper::Resource
65
+
66
+ property :id , Serial
67
+ property :name, String
68
+
69
+ has n, :books, :through => Resource
70
+ end
71
+ ```
72
+
73
+ You specs can contain the next:
74
+
75
+ ```ruby
76
+ describe Book do
77
+ it { should have_property :name }
78
+ it { should belong_to :author }
79
+ it { should have_many_and_belong_to :genres }
80
+ it { should validate_presence_of :name }
81
+
82
+ it 'should have errors' do
83
+ book = Book.new(:name => 'fails on two validations')
84
+ book.valid?
85
+ book.should have(2).errors_on(:name)
86
+ end
87
+ end
88
+
89
+ describe Author do
90
+ it { should have_many :books }
91
+ end
92
+
93
+ describe Genre do
94
+ it { should have_many_and_belong_to :books }
95
+ end
96
+ ```
84
97
 
85
98
 
86
99
 
@@ -94,7 +107,7 @@ Implement the next rspec matchers:
94
107
 
95
108
 
96
109
  ## Contributing to dm-rspec
97
-
110
+
98
111
  * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
99
112
  * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
100
113
  * Fork the project
@@ -103,6 +116,14 @@ Implement the next rspec matchers:
103
116
  * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
104
117
  * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
105
118
 
119
+ ## Credits
120
+
121
+ * [Sergey Potapov](https://github.com/greyblake) - creator and maintainer
122
+ * [Victor Deryagin](https://github.com/vderyagin)
123
+ * [George Hindle](https://github.com/ghindle)
124
+ * [Adam Meghji](https://github.com/adammeghji)
125
+ * [Gavin Joyce](https://github.com/GavinJoyce) - validate_length_of matcher
126
+
106
127
 
107
128
  ## License
108
129
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.3
1
+ 0.2.4
@@ -17,3 +17,4 @@ require 'dm/matchers/validation_matcher'
17
17
  require 'dm/matchers/validate_presence_of'
18
18
  require 'dm/matchers/validate_uniqueness_of'
19
19
  require 'dm/matchers/validate_format_of'
20
+ require 'dm/matchers/validate_length_of'
@@ -0,0 +1,75 @@
1
+ module DataMapper
2
+ module Matchers
3
+ def validate_length_of(property)
4
+ ValidateLengthOf.new(property)
5
+ end
6
+
7
+ class ValidateLengthOf < ValidationMatcher
8
+ set_validation_subject "length"
9
+
10
+ def maximum(maximum)
11
+ @maximum = maximum
12
+ self
13
+ end
14
+
15
+ def max(maximum)
16
+ maximum(maximum)
17
+ end
18
+
19
+ def length(maximum)
20
+ maximum(maximum)
21
+ end
22
+
23
+ def minimum(minimum)
24
+ @minimum = minimum
25
+ self
26
+ end
27
+
28
+ def min(minimum)
29
+ minimum(minimum)
30
+ end
31
+
32
+ def within(range)
33
+ @within = range
34
+ self
35
+ end
36
+
37
+ def in(range)
38
+ within(range)
39
+ end
40
+
41
+ def is(is)
42
+ @is = is
43
+ self
44
+ end
45
+
46
+ def equals(equals)
47
+ is(equals)
48
+ end
49
+
50
+ def matches?(model)
51
+ model_class = model.is_a?(Class) ? model : model.class
52
+ validators = model_class.validators.contexts[:default]
53
+
54
+ validators = validators.select do |validator|
55
+ validator.is_a? DataMapper::Validations::LengthValidator and validator.field_name == @property
56
+ end
57
+ validator = validators.last
58
+
59
+ return false unless validator
60
+
61
+ if @maximum
62
+ return validator.options[:maximum] == @maximum
63
+ elsif @minimum
64
+ return validator.options[:minimum] == @minimum
65
+ elsif @within
66
+ return validator.options[:within] == @within
67
+ elsif @is
68
+ return validator.options[:is] == @is
69
+ else
70
+ return false
71
+ end
72
+ end
73
+ end
74
+ end
75
+ end
@@ -0,0 +1,50 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'validate_length_of' do
4
+ context '#should' do
5
+ it 'validates length' do
6
+ lambda { Publisher.should validate_length_of(:name).length(128) }.should_pass
7
+ lambda { Publisher.should validate_length_of(:name).length(129) }.should_fail
8
+ end
9
+ it 'validates maximum' do
10
+ lambda { Publisher.should validate_length_of(:name).maximum(128) }.should_pass
11
+ lambda { Publisher.should validate_length_of(:name).maximum(129) }.should_fail
12
+
13
+ lambda { Publisher.should validate_length_of(:address).maximum(2000) }.should_pass
14
+ lambda { Publisher.should validate_length_of(:address).maximum(1024) }.should_fail
15
+ end
16
+ it 'validates max' do
17
+ lambda { Publisher.should validate_length_of(:name).max(128) }.should_pass
18
+ lambda { Publisher.should validate_length_of(:name).max(129) }.should_fail
19
+ end
20
+
21
+ it 'validates minimum' do
22
+ lambda { Publisher.should validate_length_of(:city).minimum(2) }.should_pass
23
+ lambda { Publisher.should validate_length_of(:city).minimum(3) }.should_fail
24
+ end
25
+ it 'validates min' do
26
+ lambda { Publisher.should validate_length_of(:city).min(2) }.should_pass
27
+ lambda { Publisher.should validate_length_of(:city).min(1) }.should_fail
28
+ end
29
+
30
+ it 'validates within' do
31
+ lambda { Publisher.should validate_length_of(:phone).within(5..15) }.should_pass
32
+ lambda { Publisher.should validate_length_of(:phone).within(4..15) }.should_fail
33
+ lambda { Publisher.should validate_length_of(:phone).within(5..14) }.should_fail
34
+ lambda { Publisher.should validate_length_of(:phone).within(5) }.should_fail
35
+ end
36
+ it 'validates in' do
37
+ lambda { Publisher.should validate_length_of(:phone).in(5..15) }.should_pass
38
+ lambda { Publisher.should validate_length_of(:phone).in(4..16) }.should_fail
39
+ end
40
+
41
+ it 'validates equals' do
42
+ lambda { Publisher.should validate_length_of(:zip).equals(6) }.should_pass
43
+ lambda { Publisher.should validate_length_of(:zip).equals(7) }.should_fail
44
+ end
45
+ it 'validates is' do
46
+ lambda { Publisher.should validate_length_of(:zip).is(6) }.should_pass
47
+ lambda { Publisher.should validate_length_of(:zip).is(7) }.should_fail
48
+ end
49
+ end
50
+ end
@@ -26,7 +26,7 @@ end
26
26
  def fail()
27
27
  raise_error(RSpec::Expectations::ExpectationNotMetError)
28
28
  end
29
-
29
+
30
30
  def fail_with(message)
31
31
  raise_error(RSpec::Expectations::ExpectationNotMetError,message)
32
32
  end
@@ -36,6 +36,9 @@ class Proc
36
36
  def should_pass
37
37
  lambda { self.call }.should_not raise_error
38
38
  end
39
+ def should_fail
40
+ lambda { self.call }.should raise_error
41
+ end
39
42
  end
40
43
 
41
44
 
@@ -68,7 +71,7 @@ end
68
71
 
69
72
  class Genre
70
73
  include DataMapper::Resource
71
- property :id, Serial
74
+ property :id , Serial
72
75
  property :name, String
73
76
  has n, :books, :through => Resource
74
77
  validates_uniqueness_of :name, :message => 'Genre name must be unique!'
@@ -91,7 +94,7 @@ class Tagging
91
94
  belongs_to :book
92
95
  end
93
96
 
94
- # To test validates_presence_of
97
+ # To test validate_presence_of
95
98
  class Person
96
99
  include DataMapper::Resource
97
100
  property :id, Serial
@@ -107,5 +110,20 @@ class Foreword
107
110
  property :id, Serial
108
111
  end
109
112
 
113
+ # To test validate_length_of
114
+ class Publisher
115
+ include DataMapper::Resource
116
+ property :id , Serial
117
+ property :name , String, :length => 128
118
+ property :address, String, :length => 1024
119
+ property :phone , String, :length => 5..15
120
+ property :zip , String
121
+ property :city , String
122
+
123
+ validates_length_of :address, :maximum => 2000 #This overrides the previous :length
124
+ validates_length_of :zip, :is => 6
125
+ validates_length_of :city, :minimum => 2
126
+ end
127
+
110
128
  DataMapper.finalize
111
129
  DataMapper.auto_migrate!
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dm-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-24 00:00:00.000000000 Z
12
+ date: 2013-02-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: dm-core
@@ -194,13 +194,12 @@ extensions: []
194
194
  extra_rdoc_files:
195
195
  - README.markdown
196
196
  files:
197
- - .document
198
197
  - .rspec
199
198
  - CHANGELOG.markdown
200
- - GPL-LICENSE.txt
201
199
  - Gemfile
202
200
  - Gemfile.lock
203
201
  - Guardfile
202
+ - LGPL-LICENSE.txt
204
203
  - README.markdown
205
204
  - Rakefile
206
205
  - VERSION
@@ -213,6 +212,7 @@ files:
213
212
  - lib/dm/matchers/have_one.rb
214
213
  - lib/dm/matchers/have_property.rb
215
214
  - lib/dm/matchers/validate_format_of.rb
215
+ - lib/dm/matchers/validate_length_of.rb
216
216
  - lib/dm/matchers/validate_presence_of.rb
217
217
  - lib/dm/matchers/validate_uniqueness_of.rb
218
218
  - lib/dm/matchers/validation_matcher.rb
@@ -225,6 +225,7 @@ files:
225
225
  - spec/dm/matchers/have_one_spec.rb
226
226
  - spec/dm/matchers/have_property_spec.rb
227
227
  - spec/dm/matchers/validate_format_of_spec.rb
228
+ - spec/dm/matchers/validate_length_of_spec.rb
228
229
  - spec/dm/matchers/validate_presence_of_spec.rb
229
230
  - spec/dm/matchers/validate_uniquness_of_spec.rb
230
231
  - spec/spec_helper.rb
@@ -254,4 +255,3 @@ signing_key:
254
255
  specification_version: 3
255
256
  summary: It's a set of matchers for DataMapper. Something similar to rspec-rails gem.
256
257
  test_files: []
257
- has_rdoc:
data/.document DELETED
@@ -1,5 +0,0 @@
1
- lib/**/*.rb
2
- bin/*
3
- -
4
- features/**/*.feature
5
- LICENSE.txt
@@ -1,339 +0,0 @@
1
- GNU GENERAL PUBLIC LICENSE
2
- Version 2, June 1991
3
-
4
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
5
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6
- Everyone is permitted to copy and distribute verbatim copies
7
- of this license document, but changing it is not allowed.
8
-
9
- Preamble
10
-
11
- The licenses for most software are designed to take away your
12
- freedom to share and change it. By contrast, the GNU General Public
13
- License is intended to guarantee your freedom to share and change free
14
- software--to make sure the software is free for all its users. This
15
- General Public License applies to most of the Free Software
16
- Foundation's software and to any other program whose authors commit to
17
- using it. (Some other Free Software Foundation software is covered by
18
- the GNU Lesser General Public License instead.) You can apply it to
19
- your programs, too.
20
-
21
- When we speak of free software, we are referring to freedom, not
22
- price. Our General Public Licenses are designed to make sure that you
23
- have the freedom to distribute copies of free software (and charge for
24
- this service if you wish), that you receive source code or can get it
25
- if you want it, that you can change the software or use pieces of it
26
- in new free programs; and that you know you can do these things.
27
-
28
- To protect your rights, we need to make restrictions that forbid
29
- anyone to deny you these rights or to ask you to surrender the rights.
30
- These restrictions translate to certain responsibilities for you if you
31
- distribute copies of the software, or if you modify it.
32
-
33
- For example, if you distribute copies of such a program, whether
34
- gratis or for a fee, you must give the recipients all the rights that
35
- you have. You must make sure that they, too, receive or can get the
36
- source code. And you must show them these terms so they know their
37
- rights.
38
-
39
- We protect your rights with two steps: (1) copyright the software, and
40
- (2) offer you this license which gives you legal permission to copy,
41
- distribute and/or modify the software.
42
-
43
- Also, for each author's protection and ours, we want to make certain
44
- that everyone understands that there is no warranty for this free
45
- software. If the software is modified by someone else and passed on, we
46
- want its recipients to know that what they have is not the original, so
47
- that any problems introduced by others will not reflect on the original
48
- authors' reputations.
49
-
50
- Finally, any free program is threatened constantly by software
51
- patents. We wish to avoid the danger that redistributors of a free
52
- program will individually obtain patent licenses, in effect making the
53
- program proprietary. To prevent this, we have made it clear that any
54
- patent must be licensed for everyone's free use or not licensed at all.
55
-
56
- The precise terms and conditions for copying, distribution and
57
- modification follow.
58
-
59
- GNU GENERAL PUBLIC LICENSE
60
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61
-
62
- 0. This License applies to any program or other work which contains
63
- a notice placed by the copyright holder saying it may be distributed
64
- under the terms of this General Public License. The "Program", below,
65
- refers to any such program or work, and a "work based on the Program"
66
- means either the Program or any derivative work under copyright law:
67
- that is to say, a work containing the Program or a portion of it,
68
- either verbatim or with modifications and/or translated into another
69
- language. (Hereinafter, translation is included without limitation in
70
- the term "modification".) Each licensee is addressed as "you".
71
-
72
- Activities other than copying, distribution and modification are not
73
- covered by this License; they are outside its scope. The act of
74
- running the Program is not restricted, and the output from the Program
75
- is covered only if its contents constitute a work based on the
76
- Program (independent of having been made by running the Program).
77
- Whether that is true depends on what the Program does.
78
-
79
- 1. You may copy and distribute verbatim copies of the Program's
80
- source code as you receive it, in any medium, provided that you
81
- conspicuously and appropriately publish on each copy an appropriate
82
- copyright notice and disclaimer of warranty; keep intact all the
83
- notices that refer to this License and to the absence of any warranty;
84
- and give any other recipients of the Program a copy of this License
85
- along with the Program.
86
-
87
- You may charge a fee for the physical act of transferring a copy, and
88
- you may at your option offer warranty protection in exchange for a fee.
89
-
90
- 2. You may modify your copy or copies of the Program or any portion
91
- of it, thus forming a work based on the Program, and copy and
92
- distribute such modifications or work under the terms of Section 1
93
- above, provided that you also meet all of these conditions:
94
-
95
- a) You must cause the modified files to carry prominent notices
96
- stating that you changed the files and the date of any change.
97
-
98
- b) You must cause any work that you distribute or publish, that in
99
- whole or in part contains or is derived from the Program or any
100
- part thereof, to be licensed as a whole at no charge to all third
101
- parties under the terms of this License.
102
-
103
- c) If the modified program normally reads commands interactively
104
- when run, you must cause it, when started running for such
105
- interactive use in the most ordinary way, to print or display an
106
- announcement including an appropriate copyright notice and a
107
- notice that there is no warranty (or else, saying that you provide
108
- a warranty) and that users may redistribute the program under
109
- these conditions, and telling the user how to view a copy of this
110
- License. (Exception: if the Program itself is interactive but
111
- does not normally print such an announcement, your work based on
112
- the Program is not required to print an announcement.)
113
-
114
- These requirements apply to the modified work as a whole. If
115
- identifiable sections of that work are not derived from the Program,
116
- and can be reasonably considered independent and separate works in
117
- themselves, then this License, and its terms, do not apply to those
118
- sections when you distribute them as separate works. But when you
119
- distribute the same sections as part of a whole which is a work based
120
- on the Program, the distribution of the whole must be on the terms of
121
- this License, whose permissions for other licensees extend to the
122
- entire whole, and thus to each and every part regardless of who wrote it.
123
-
124
- Thus, it is not the intent of this section to claim rights or contest
125
- your rights to work written entirely by you; rather, the intent is to
126
- exercise the right to control the distribution of derivative or
127
- collective works based on the Program.
128
-
129
- In addition, mere aggregation of another work not based on the Program
130
- with the Program (or with a work based on the Program) on a volume of
131
- a storage or distribution medium does not bring the other work under
132
- the scope of this License.
133
-
134
- 3. You may copy and distribute the Program (or a work based on it,
135
- under Section 2) in object code or executable form under the terms of
136
- Sections 1 and 2 above provided that you also do one of the following:
137
-
138
- a) Accompany it with the complete corresponding machine-readable
139
- source code, which must be distributed under the terms of Sections
140
- 1 and 2 above on a medium customarily used for software interchange; or,
141
-
142
- b) Accompany it with a written offer, valid for at least three
143
- years, to give any third party, for a charge no more than your
144
- cost of physically performing source distribution, a complete
145
- machine-readable copy of the corresponding source code, to be
146
- distributed under the terms of Sections 1 and 2 above on a medium
147
- customarily used for software interchange; or,
148
-
149
- c) Accompany it with the information you received as to the offer
150
- to distribute corresponding source code. (This alternative is
151
- allowed only for noncommercial distribution and only if you
152
- received the program in object code or executable form with such
153
- an offer, in accord with Subsection b above.)
154
-
155
- The source code for a work means the preferred form of the work for
156
- making modifications to it. For an executable work, complete source
157
- code means all the source code for all modules it contains, plus any
158
- associated interface definition files, plus the scripts used to
159
- control compilation and installation of the executable. However, as a
160
- special exception, the source code distributed need not include
161
- anything that is normally distributed (in either source or binary
162
- form) with the major components (compiler, kernel, and so on) of the
163
- operating system on which the executable runs, unless that component
164
- itself accompanies the executable.
165
-
166
- If distribution of executable or object code is made by offering
167
- access to copy from a designated place, then offering equivalent
168
- access to copy the source code from the same place counts as
169
- distribution of the source code, even though third parties are not
170
- compelled to copy the source along with the object code.
171
-
172
- 4. You may not copy, modify, sublicense, or distribute the Program
173
- except as expressly provided under this License. Any attempt
174
- otherwise to copy, modify, sublicense or distribute the Program is
175
- void, and will automatically terminate your rights under this License.
176
- However, parties who have received copies, or rights, from you under
177
- this License will not have their licenses terminated so long as such
178
- parties remain in full compliance.
179
-
180
- 5. You are not required to accept this License, since you have not
181
- signed it. However, nothing else grants you permission to modify or
182
- distribute the Program or its derivative works. These actions are
183
- prohibited by law if you do not accept this License. Therefore, by
184
- modifying or distributing the Program (or any work based on the
185
- Program), you indicate your acceptance of this License to do so, and
186
- all its terms and conditions for copying, distributing or modifying
187
- the Program or works based on it.
188
-
189
- 6. Each time you redistribute the Program (or any work based on the
190
- Program), the recipient automatically receives a license from the
191
- original licensor to copy, distribute or modify the Program subject to
192
- these terms and conditions. You may not impose any further
193
- restrictions on the recipients' exercise of the rights granted herein.
194
- You are not responsible for enforcing compliance by third parties to
195
- this License.
196
-
197
- 7. If, as a consequence of a court judgment or allegation of patent
198
- infringement or for any other reason (not limited to patent issues),
199
- conditions are imposed on you (whether by court order, agreement or
200
- otherwise) that contradict the conditions of this License, they do not
201
- excuse you from the conditions of this License. If you cannot
202
- distribute so as to satisfy simultaneously your obligations under this
203
- License and any other pertinent obligations, then as a consequence you
204
- may not distribute the Program at all. For example, if a patent
205
- license would not permit royalty-free redistribution of the Program by
206
- all those who receive copies directly or indirectly through you, then
207
- the only way you could satisfy both it and this License would be to
208
- refrain entirely from distribution of the Program.
209
-
210
- If any portion of this section is held invalid or unenforceable under
211
- any particular circumstance, the balance of the section is intended to
212
- apply and the section as a whole is intended to apply in other
213
- circumstances.
214
-
215
- It is not the purpose of this section to induce you to infringe any
216
- patents or other property right claims or to contest validity of any
217
- such claims; this section has the sole purpose of protecting the
218
- integrity of the free software distribution system, which is
219
- implemented by public license practices. Many people have made
220
- generous contributions to the wide range of software distributed
221
- through that system in reliance on consistent application of that
222
- system; it is up to the author/donor to decide if he or she is willing
223
- to distribute software through any other system and a licensee cannot
224
- impose that choice.
225
-
226
- This section is intended to make thoroughly clear what is believed to
227
- be a consequence of the rest of this License.
228
-
229
- 8. If the distribution and/or use of the Program is restricted in
230
- certain countries either by patents or by copyrighted interfaces, the
231
- original copyright holder who places the Program under this License
232
- may add an explicit geographical distribution limitation excluding
233
- those countries, so that distribution is permitted only in or among
234
- countries not thus excluded. In such case, this License incorporates
235
- the limitation as if written in the body of this License.
236
-
237
- 9. The Free Software Foundation may publish revised and/or new versions
238
- of the General Public License from time to time. Such new versions will
239
- be similar in spirit to the present version, but may differ in detail to
240
- address new problems or concerns.
241
-
242
- Each version is given a distinguishing version number. If the Program
243
- specifies a version number of this License which applies to it and "any
244
- later version", you have the option of following the terms and conditions
245
- either of that version or of any later version published by the Free
246
- Software Foundation. If the Program does not specify a version number of
247
- this License, you may choose any version ever published by the Free Software
248
- Foundation.
249
-
250
- 10. If you wish to incorporate parts of the Program into other free
251
- programs whose distribution conditions are different, write to the author
252
- to ask for permission. For software which is copyrighted by the Free
253
- Software Foundation, write to the Free Software Foundation; we sometimes
254
- make exceptions for this. Our decision will be guided by the two goals
255
- of preserving the free status of all derivatives of our free software and
256
- of promoting the sharing and reuse of software generally.
257
-
258
- NO WARRANTY
259
-
260
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
- FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262
- OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
- PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
- OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266
- TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267
- PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
- REPAIR OR CORRECTION.
269
-
270
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
- REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
- INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
- OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
- TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
- YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
- PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
- POSSIBILITY OF SUCH DAMAGES.
279
-
280
- END OF TERMS AND CONDITIONS
281
-
282
- How to Apply These Terms to Your New Programs
283
-
284
- If you develop a new program, and you want it to be of the greatest
285
- possible use to the public, the best way to achieve this is to make it
286
- free software which everyone can redistribute and change under these terms.
287
-
288
- To do so, attach the following notices to the program. It is safest
289
- to attach them to the start of each source file to most effectively
290
- convey the exclusion of warranty; and each file should have at least
291
- the "copyright" line and a pointer to where the full notice is found.
292
-
293
- <one line to give the program's name and a brief idea of what it does.>
294
- Copyright (C) <year> <name of author>
295
-
296
- This program is free software; you can redistribute it and/or modify
297
- it under the terms of the GNU General Public License as published by
298
- the Free Software Foundation; either version 2 of the License, or
299
- (at your option) any later version.
300
-
301
- This program is distributed in the hope that it will be useful,
302
- but WITHOUT ANY WARRANTY; without even the implied warranty of
303
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304
- GNU General Public License for more details.
305
-
306
- You should have received a copy of the GNU General Public License along
307
- with this program; if not, write to the Free Software Foundation, Inc.,
308
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
309
-
310
- Also add information on how to contact you by electronic and paper mail.
311
-
312
- If the program is interactive, make it output a short notice like this
313
- when it starts in an interactive mode:
314
-
315
- Gnomovision version 69, Copyright (C) year name of author
316
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
317
- This is free software, and you are welcome to redistribute it
318
- under certain conditions; type `show c' for details.
319
-
320
- The hypothetical commands `show w' and `show c' should show the appropriate
321
- parts of the General Public License. Of course, the commands you use may
322
- be called something other than `show w' and `show c'; they could even be
323
- mouse-clicks or menu items--whatever suits your program.
324
-
325
- You should also get your employer (if you work as a programmer) or your
326
- school, if any, to sign a "copyright disclaimer" for the program, if
327
- necessary. Here is a sample; alter the names:
328
-
329
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
330
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
331
-
332
- <signature of Ty Coon>, 1 April 1989
333
- Ty Coon, President of Vice
334
-
335
- This General Public License does not permit incorporating your program into
336
- proprietary programs. If your program is a subroutine library, you may
337
- consider it more useful to permit linking proprietary applications with the
338
- library. If this is what you want to do, use the GNU Lesser General
339
- Public License instead of this License.