solving_math_tasks 1.0.0

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.
Files changed (9) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG +2 -0
  3. data/LICENSE +339 -0
  4. data/README.md +10 -0
  5. data/Rakefile +6 -0
  6. data/feature.gemspec +34 -0
  7. data/lib/feature.rb +341 -0
  8. data/test/spec.rb +319 -0
  9. metadata +65 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f352858c5df4a67772fc009c4a938a90d9469698
4
+ data.tar.gz: 5744ba73bc2f608cd51cf9d77e3f2e46064f4c03
5
+ SHA512:
6
+ metadata.gz: 92fa4dfcbd6b69dba07c3b97c9e4e459b2720fd01bb4b4a2d40bc9b05f10981b5b2373cf52816f3cf39997c3c26b64b19be859f1728466f3d2e740296db3a614
7
+ data.tar.gz: faa7e5624b806ea8968c5dad59f6f89b0a29cb32fcf933d4d22adacffe728cc2c8256d1fe4b2f2479f996bfb01b24ae69f2acd85996e666564b209d1cb8b4d75
@@ -0,0 +1,2 @@
1
+ == 1.0.0 / 2018-11-04
2
+ * add solving math tasks gem
data/LICENSE ADDED
@@ -0,0 +1,339 @@
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 2, June 1991
3
+
4
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc., <http://fsf.org/>
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
+ {description}
294
+ Copyright (C) {year} {fullname}
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.
@@ -0,0 +1,10 @@
1
+ SETUP
2
+
3
+ Enter this command to install all gems
4
+ ```
5
+ bundle install
6
+ ```
7
+ This command will help you run tests.
8
+ ```
9
+ rake test
10
+ ```
@@ -0,0 +1,6 @@
1
+ load 'test/spec.rb'
2
+
3
+ desc 'Run tests'
4
+ task :test do
5
+ Spec.new.run_tests
6
+ end
@@ -0,0 +1,34 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'solving_math_tasks'
3
+ s.version = '1.0.0'
4
+ s.date = '2018-11-04'
5
+
6
+ s.summary = "Solve some math task."
7
+ s.description = "This gem will help you solve some math task."
8
+
9
+ s.authors = ["Semyz Serhii"]
10
+ s.email = 'semizserhii@gmail.com'
11
+
12
+ s.files = ["lib/feature.rb"]
13
+ s.homepage = 'https://github.com/SemyzSerhii/Solving-math-tasks'
14
+ s.license = 'GPL-2.0'
15
+
16
+ s.require_paths = ['lib']
17
+
18
+ s.add_development_dependency 'quality_assurance', '~> 1.0.0'
19
+
20
+ s.files = [
21
+ 'LICENSE',
22
+ 'CHANGELOG',
23
+ 'README.md',
24
+ 'Rakefile',
25
+ 'feature.gemspec',
26
+ 'lib/feature.rb',
27
+ 'test/spec.rb'
28
+ ]
29
+
30
+ s.test_files = [
31
+ 'test/spec.rb'
32
+ ]
33
+
34
+ end
@@ -0,0 +1,341 @@
1
+ class Feature
2
+
3
+ def sum_diff_product(first_number, second_number)
4
+ {
5
+ sum: first_number + second_number,
6
+ diff: first_number - second_number,
7
+ product: first_number * second_number
8
+ }
9
+ end
10
+
11
+ def formula_solution(value_x, value_y)
12
+ (value_x.abs - value_y.abs) / (1 + (value_x * value_y).abs).to_f
13
+ end
14
+
15
+ def volume_area_cube(length_of_the_edge)
16
+ {
17
+ volume: length_of_the_edge ** 3,
18
+ area: 6 * length_of_the_edge ** 2
19
+ }
20
+ end
21
+
22
+ def average_ar_geo_num(first_number, second_number)
23
+ {
24
+ arithmetical: (first_number + second_number) / 2.to_f,
25
+ geometrical: Math.sqrt(first_number * second_number)
26
+ }
27
+ end
28
+
29
+ def average_ar_num_and_geo_mod(first_number, second_number)
30
+ {
31
+ arithmetical: (first_number + second_number) / 2,
32
+ geometrical: Math.sqrt(first_number.abs * second_number.abs)
33
+ }
34
+ end
35
+
36
+ def area_hypot_triangle(first_leg, second_leg)
37
+ {
38
+ area: 0.5 * first_leg * second_leg,
39
+ hypotenuse: Math.sqrt(first_leg ** 2 + second_leg ** 2)
40
+ }
41
+ end
42
+
43
+ def value_temp_water(f_volue, f_temperature, s_value, s_temperature)
44
+ {
45
+ value: f_volue + s_value,
46
+ tempetature: ((f_volue * f_temperature) + (s_value * s_temperature)) / (f_volue + s_value).to_f
47
+ }
48
+ end
49
+
50
+ def permtr_multicutnik(number_of_corners, radius)
51
+ number_of_corners * 2 * radius * Math.sin(Math::PI / number_of_corners)
52
+ end
53
+
54
+ def compound_resistance(first_resistance, second_resistance, third_resistance)
55
+ 1 / ((1 / first_resistance.to_f) + (1 / second_resistance.to_f) + (1 / third_resistance.to_f))
56
+ end
57
+
58
+ def fall_time(height, constant_g = 9.83)
59
+ Math.sqrt(2 * height / constant_g)
60
+ end
61
+
62
+ def calcul_value_a_b(value_x, value_y, value_z)
63
+ {
64
+ value_a: (2 * Math.cos(value_x - Math::PI / 6)) / (1 / 2 + Math.sin(value_y) ** 2),
65
+ value_b: 1 + (value_z ** 2 / 3 + value_z ** 2 / 5)
66
+ }
67
+ end
68
+
69
+ def area_triangle(side)
70
+ (1 / 2.to_f) * side * Math.sqrt(side ** 2 - side ** 2 / 2)
71
+ end
72
+
73
+ def period_of_oscillation(length, constant_g = 9.83)
74
+ 2 * Math::PI * Math.sqrt(length / constant_g)
75
+ end
76
+
77
+ def force_of_gravity(first_mass, second_mass, distance, g = 0.000000000067385)
78
+ g * ((first_mass * second_mass) / distance ** 2)
79
+ end
80
+
81
+ def sec_leg_radius_inscr_circle(first_leg, hypotenuse)
82
+ second_leg = Math.sqrt(hypotenuse ** 2 - first_leg ** 2)
83
+ triangle_semi_perimeter = 0.5 * (first_leg + hypotenuse + second_leg)
84
+ {
85
+ radius: Math.sqrt((triangle_semi_perimeter - first_leg) * (triangle_semi_perimeter - hypotenuse) *
86
+ (triangle_semi_perimeter - second_leg)) / triangle_semi_perimeter,
87
+ second_leg: second_leg
88
+ }
89
+ end
90
+
91
+ def area_circle(circumference)
92
+ radius = circumference / (2 * Math::PI)
93
+ Math::PI * radius ** 2
94
+ end
95
+
96
+ def ring_area(inner_radius = 20, outer_radius)
97
+ (Math::PI * (inner_radius ** 2 - outer_radius ** 2)).to_i
98
+ end
99
+
100
+ def sides_triangle(angles_A, angles_B, angles_C, radius)
101
+ {
102
+ side_a: calcul_triangle_sides(radius, angles_A),
103
+ side_b: calcul_triangle_sides(radius, angles_B),
104
+ side_c: calcul_triangle_sides(radius, angles_C)
105
+ }
106
+ end
107
+
108
+ def meeting_time(acceleration_f, acceleration_s, speed_f, speed_s, distance)
109
+ average_acceleration = (acceleration_f + acceleration_s) / 2
110
+ average_speed = speed_f + speed_s
111
+ (-average_speed + Math.sqrt(-average_speed ** 2 + (4 * distance * average_acceleration))) / (2 * average_acceleration)
112
+ end
113
+
114
+ def sum_arith_progression(value_a, value_d, value_n)
115
+ ((2 * value_a + (value_n - 1) * value_d) / 2) * value_n
116
+ end
117
+
118
+ def trapezium_area(greater_base, smaller_base, angle)
119
+ (((greater_base + smaller_base) / 2) * ((greater_base - smaller_base) / 2) * Math.tan(angle)).to_i
120
+ end
121
+
122
+ def heig_med_bis_and_rad(side_a, side_b, side_c)
123
+ semiperimeter = ((side_a + side_b + side_c) / 2).to_f
124
+ {
125
+ #length height
126
+ height_a: calcul_triangle_height(side_a, side_b, side_c, side_a),
127
+ height_b: calcul_triangle_height(side_a, side_b, side_c, side_b),
128
+ height_c: calcul_triangle_height(side_a, side_b, side_c, side_c),
129
+ #length median
130
+ median_a: calcul_triangle_median(side_b, side_c, side_a),
131
+ median_b: calcul_triangle_median(side_a, side_c, side_b),
132
+ median_c: calcul_triangle_median(side_a, side_b, side_c),
133
+ #length bisector
134
+ bisector_a: calcul_triangle_bisector(side_b, side_c, side_a),
135
+ bisector_b: calcul_triangle_bisector(side_a, side_c, side_b),
136
+ bisector_c: calcul_triangle_bisector(side_a, side_b, side_c),
137
+ #radius circumscribed inscribed circle
138
+ radius_circumscribed: (side_a * side_b * side_c / (4 * Math.sqrt(semiperimeter *
139
+ (semiperimeter - side_a) * (semiperimeter - side_b) * (semiperimeter - side_c)))).round(1),
140
+ radius_inscribed: Math.sqrt((semiperimeter - side_a) * (semiperimeter - side_b) *
141
+ (semiperimeter - side_c) / semiperimeter).round(1)
142
+ }
143
+ end
144
+
145
+ def dist_between_points(coordinates_x_frt_point, coordinates_y_frt_point,
146
+ coordinates_x_scnd_point, coordinates_y_scnd_point)
147
+ distance = (Math.sqrt((coordinates_x_scnd_point - coordinates_x_frt_point) ** 2 +
148
+ (coordinates_y_scnd_point - coordinates_y_frt_point) ** 2)).round
149
+ end
150
+
151
+ def permtr_area_triangle(coordinates_x_point_a, coordinates_y_point_a, coordinates_x_point_b,
152
+ coordinates_y_point_b, coordinates_x_point_c, coordinates_y_point_c)
153
+ distance_a = calcuate_distance(coordinates_x_point_b, coordinates_x_point_a,
154
+ coordinates_y_point_b,coordinates_y_point_a)
155
+ distance_b = calcuate_distance(coordinates_x_point_b, coordinates_x_point_c,
156
+ coordinates_y_point_b, coordinates_y_point_c)
157
+ distance_c = calcuate_distance(coordinates_x_point_c, coordinates_x_point_a,
158
+ coordinates_y_point_c, coordinates_y_point_a)
159
+ semiperimeter = ((distance_a + distance_b + distance_c) / 2)
160
+ {
161
+ perimeter: distance_a + distance_b + distance_c,
162
+ area: Math.sqrt(semiperimeter * (semiperimeter - distance_a) * (semiperimeter - distance_b) *
163
+ (semiperimeter - distance_c)).round
164
+ }
165
+ end
166
+
167
+ def area_sector(number_arc, radius = 13.7)
168
+ area = ((number_arc / 2.to_f) * radius ** 2).round
169
+ end
170
+
171
+ def angeles_triangle (side_a, side_b, side_c)
172
+ angele_b = ((side_a ** 2 + side_c ** 2) - side_b ** 2) / (2 * side_c * side_a).to_f * 180
173
+ angele_c = ((side_a ** 2 + side_b ** 2) - side_c ** 2) / (2 * side_b * side_a).to_f * 180
174
+ angele_a = 180 - angele_b + angele_c
175
+ {
176
+ angele_a: angele_a.abs.round,
177
+ angele_b: angele_b.abs.round,
178
+ angele_c: angele_c.abs.round
179
+ }
180
+ end
181
+
182
+ def calc_equation_1_number(number_x)
183
+ 6 + number_x * (-5 + number_x * (4 - 3 * number_x + 2 * (number_x + number_x)))
184
+ end
185
+
186
+ def calc_equation_2_number(num_x, num_y)
187
+ num_x * (num_x + num_x + num_x - (num_y + num_y) - 7 * num_x + 15) + num_y * (10 - 4 * num_y) +
188
+ num_x * (num_x + num_x - 3) + 6
189
+ end
190
+
191
+ def calc_2_equations(num_x)
192
+ {
193
+ answer1: 1 + num_x * (-2 + num_x * (3 - 4 * num_x)),
194
+ answer2: 1 + num_x * (2 + num_x * (3 + 4 * num_x))
195
+ }
196
+ end
197
+
198
+ def max_min_2_number(num_x, num_y)
199
+ {
200
+ max: [num_x, num_y].max,
201
+ min: [num_x, num_y].min,
202
+ max_min: [num_x, num_y].minmax.reverse
203
+ }
204
+ end
205
+
206
+ def min_max_3_number(num_x, num_y, num_z)
207
+ {
208
+ max: [num_x, num_y, num_z].max,
209
+ min_max: [num_x, num_y, num_z].minmax
210
+ }
211
+ end
212
+
213
+ def min_max_2_equations(num_x, num_y, num_z)
214
+ sum = num_x + num_y + num_z
215
+ product = num_x * num_y * num_z
216
+ new_sum = ((sum / 2.to_f) ** 2) + 1
217
+ new_product = product ** 2 + 1
218
+ {
219
+ max: sum > product ? sum : product,
220
+ min: new_sum < new_product ? new_sum : new_product
221
+ }
222
+ end
223
+
224
+ def a_less_b_less_c(num_a, num_b, num_c)
225
+ (num_a < num_b && num_b < num_c) ? true : false
226
+ end
227
+
228
+ def a_more_eq_b_more_eq_c(num_a, num_b, num_c)
229
+ (num_a >= num_b && num_b >= num_c) ? [num_a * 2, num_b * 2, num_c * 2] : [num_a.abs, num_b.abs, num_c.abs]
230
+ end
231
+
232
+ def calc_number_z(num_x, num_y)
233
+ num_x > num_y ? num_x - num_y : num_y - (num_x + 1)
234
+ end
235
+
236
+ def comp_x_y_and_output(num_x, num_y)
237
+ num_x > num_y ? num_x : [num_x, num_y]
238
+ end
239
+
240
+ def comp_x_y_or_x_by_0(num_x, num_y)
241
+ num_x <= num_y ? num_x = 0 : [num_x, num_y]
242
+ end
243
+
244
+ def less_halfsum_more_doubled(num_x, num_y)
245
+ num_x > num_y ? [x = (num_x + num_y) / 2.to_f, y = num_x * num_y * 2] :
246
+ [y = (num_x + num_y) / 2.to_f, x = (num_x * num_y) * 2 ]
247
+ end
248
+
249
+ def non_negative_number(num_x, num_y, num_z)
250
+ {
251
+ a_more_0: num_x >= 0 ? num_x ** 2 : nil,
252
+ b_more_0: num_y >= 0 ? num_y ** 2 : nil,
253
+ c_more_0: num_z >= 0 ? num_z ** 2 : nil
254
+ }
255
+ end
256
+
257
+ def floor_round_int_numb_x(number_x)
258
+ {
259
+ floor: number_x.floor,
260
+ round: number_x.round,
261
+ to_i: number_x.to_i
262
+ }
263
+ end
264
+
265
+ def determ_even_numb(number_x)
266
+ number_x % 2 == 0 ? true : false
267
+ end
268
+
269
+ def determ_remainder_div_r_s(num_a, num_b, num_r, num_s)
270
+ remainder = num_a % num_b
271
+ {
272
+ remainder_equal_r: remainder == num_r ? true : nil,
273
+ remainder_equal_s: remainder == num_s ? true : nil,
274
+ remainder_not_equal_r_or_s: remainder != num_r && remainder != num_s ? true : nil
275
+ }
276
+ end
277
+
278
+ def determ_hund_in_numb(number_n)
279
+ number_n > 99 ? number_n / 100.to_i : false
280
+ end
281
+
282
+ def eq_squa_numb_n_cub_sum(number_n)
283
+ sum = number_n.to_s.split('').map.each {|x| x.to_i}.sum
284
+ number_n ** 2 == sum ** 3 ? true : false
285
+ end
286
+
287
+ def incl_sm_lst_frst_lst_b_on_n(num_n)
288
+ {
289
+ including: num_n.to_s.split("").length,
290
+ sum: num_n.to_s.split("").map.each {|x| x.to_i}.sum,
291
+ last: num_n.to_s.split("").last.to_i,
292
+ first: num_n.to_s.split("").first.to_i,
293
+ last_but_one: num_n.to_s[-2].to_i
294
+ }
295
+ end
296
+
297
+ def number_check(number)
298
+ {
299
+ palindrome: number == number.to_s.reverse.to_i ? true : false ,
300
+ three_identical_numbers: (number.to_s.split('').uniq.size == 2 && number != number.to_s.reverse.to_i) ?
301
+ true : false ,
302
+ numbers_different: number.to_s.split('') == number.to_s.split('').uniq ?
303
+ true : false
304
+ }
305
+ end
306
+
307
+ def calcul_the_progression
308
+ result = 1
309
+ (0.1..10).step(0.1) { |i| result *= 1 + Math.sin(i) }
310
+ result
311
+ end
312
+
313
+ private
314
+
315
+ def calcul_triangle_sides(r, angles)
316
+ r * 2 * Math.sin(angles).abs
317
+ end
318
+
319
+ def calcul_triangle_height(side_a, side_b, side_c, opositive_side)
320
+ semiperimeter = (side_a + side_b + side_c) / 2
321
+ area = Math.sqrt(semiperimeter * (semiperimeter - side_a) * (semiperimeter - side_b) * (semiperimeter - side_c))
322
+ (opositive_side / 2) * area.round(1)
323
+ end
324
+
325
+ def calcul_triangle_median(side_1, side_2, side_3)
326
+ (Math.sqrt((2 * side_1 ** 2 + 2 * side_2** 2 - side_3 ** 2) / 2)).round(1)
327
+ end
328
+
329
+ def calcul_triangle_bisector(side_1, side_2, side_3)
330
+ semiperimeter = (side_1 + side_2 + side_3) / 2
331
+ (2 * Math.sqrt(side_1 * side_2 * semiperimeter * (semiperimeter - side_3)) / (side_1 + side_2)) .round(1)
332
+ end
333
+ def calcuate_distance(coordinate_x_point_1, ccoordinate_x_point_2,coordinate_y_point_1,coordinate_y_point_2)
334
+ Math.sqrt((coordinate_x_point_1 - ccoordinate_x_point_2) ** 2 +
335
+ (coordinate_y_point_1 - coordinate_y_point_2) ** 2).round
336
+ end
337
+ end
338
+
339
+
340
+
341
+
@@ -0,0 +1,319 @@
1
+ load 'lib/feature.rb'
2
+ require 'quality_assurance'
3
+
4
+ class Spec
5
+ include QualityAssurance
6
+
7
+ def sum_diff_product_t1
8
+ expected_result = { sum: 6, diff: 2, product: 8 }
9
+ assert(expected: expected_result, actual: Feature.new.sum_diff_product(4, 2))
10
+ end
11
+
12
+ def sum_diff_product_t2
13
+ expected_result = { sum: 697, diff: -367, product: 87780 }
14
+ assert(expected: expected_result, actual: Feature.new.sum_diff_product(165, 532))
15
+ end
16
+
17
+ def formula_solution_t1
18
+ assert(expected: result = -0.04081632653061224, actual:Feature.new.formula_solution(6, 8))
19
+ end
20
+
21
+ def formula_solution_t2
22
+ assert(expected: result = 0.02560124127230411, actual:Feature.new.formula_solution(-56, -23))
23
+ end
24
+
25
+ def volume_area_cube_t
26
+ expected_result = { volume: 64, area: 96 }
27
+ assert(expected: expected_result, actual:Feature.new.volume_area_cube(4))
28
+ end
29
+
30
+ def volume_area_cube_t2
31
+ expected_result = { volume: 175616, area: 18816 }
32
+ assert(expected: expected_result, actual:Feature.new.volume_area_cube(56))
33
+ end
34
+
35
+ def average_ar_geo_num_t1
36
+ expected_result = { arithmetical: 49.5, geometrical: 49.07137658554119 }
37
+ assert(expected: expected_result, actual:Feature.new.average_ar_geo_num(56, 43))
38
+ end
39
+
40
+ def average_ar_geo_num_t2
41
+ expected_result = { arithmetical: 3, geometrical: 3 }
42
+ assert(expected: expected_result, actual:Feature.new.average_ar_geo_num(3, 3))
43
+ end
44
+
45
+ def average_ar_num_and_geo_mod_t
46
+ expected_result = { arithmetical: 5, geometrical: 5 }
47
+ assert(expected: expected_result, actual:Feature.new.average_ar_num_and_geo_mod(5, 5))
48
+ end
49
+
50
+ def area_hypot_triangle_t1
51
+ expected_result = { area: 12.5, hypotenuse: 7.0710678118654755 }
52
+ assert(expected: expected_result, actual:Feature.new.area_hypot_triangle(5, 5))
53
+ end
54
+
55
+ def area_hypot_triangle_t2
56
+ expected_result = { area: 50, hypotenuse: 14.142135623730951}
57
+ assert(expected: expected_result, actual:Feature.new.area_hypot_triangle(10, 10))
58
+ end
59
+
60
+ def value_temp_water_t
61
+ assert(expected: { value: 8, tempetature: 43.75 }, actual:Feature.new.value_temp_water(5, 40, 3, 50))
62
+ end
63
+
64
+ def permtr_multicutnik_t1
65
+ assert(expected: perimeter = 35.26711513754839, actual:Feature.new.permtr_multicutnik(5, 6))
66
+ end
67
+
68
+ def permtr_multicutnik_t2
69
+ assert(expected: perimeter = 376.74311717588023, actual:Feature.new.permtr_multicutnik(50, 60))
70
+ end
71
+
72
+ def compound_resistance_t
73
+ assert(expected: resistance_connection = 1.0526315789473684, actual:Feature.new.compound_resistance(5, 4, 2))
74
+ end
75
+
76
+ def fall_time_t
77
+ assert(expected: time = 0.9021281496396893, actual:Feature.new.fall_time(4))
78
+ end
79
+
80
+ def calcul_value_a_b_t1
81
+ expected_result = { value_a: -2.0542392471657545, value_b: 26 }
82
+ assert(expected: expected_result, actual:Feature.new.calcul_value_a_b(4, 5, 7))
83
+ end
84
+
85
+ def calcul_value_a_b_t2
86
+ expected_result = { value_a: 3.830368057339472, value_b: 154 }
87
+ assert(expected: expected_result, actual:Feature.new.calcul_value_a_b(20, 15, 17))
88
+ end
89
+
90
+ def area_triangle_t
91
+ assert(expected: area = 5.656854249492381, actual:Feature.new.area_triangle(4))
92
+ end
93
+
94
+ def period_of_oscillation_t
95
+ assert(expected: oscillation_period = 5.302151459045603, actual:Feature.new.period_of_oscillation(7))
96
+ end
97
+
98
+
99
+ def force_of_gravity_t
100
+ assert(expected: force = 1.3477e-10, actual:Feature.new.force_of_gravity(6, 4, 3))
101
+ end
102
+
103
+ def sec_leg_radius_inscr_circle_t
104
+ expected_result = { second_leg: 3, radius: 0.40824829046386296 }
105
+ assert(expected: expected_result, actual:Feature.new.sec_leg_radius_inscr_circle(4, 5))
106
+ end
107
+
108
+ def area_circle_t
109
+ assert(expected: area = 2.864788975654116, actual:Feature.new.area_circle(6))
110
+ end
111
+
112
+ def ring_area_t
113
+ assert(expected: area = 942, actual:Feature.new.ring_area(10))
114
+ end
115
+
116
+ def sides_triangle_t
117
+ expected_result = { side_a: 12.108839924926851, side_b:15.342788394610215, side_c:4.470647971182814 }
118
+ assert(expected: expected_result, actual:Feature.new.sides_triangle(4, 5, 6, 8))
119
+ end
120
+
121
+ def meeting_time_t
122
+ assert(expected: time = 0.15831239517770007, actual:Feature.new.meeting_time(20, 60, 40, 80, 200))
123
+ end
124
+
125
+ def sum_arith_progressio_t
126
+ assert(expected: sum = 47600, actual:Feature.new.sum_arith_progression(20, 60, 40))
127
+ end
128
+
129
+ def trapezium_area_t
130
+ assert(expected: area = 768, actual:Feature.new.trapezium_area(100, 20, 60))
131
+ end
132
+
133
+ def heig_med_bis_and_rad_t
134
+ expected_result =
135
+ {
136
+ height_a: 13, height_b:13, height_c:19.5,
137
+ median_a: 7.3, median_b: 6.2, median_c: 4.8,
138
+ bisector_a: 4.6, bisector_b: 3.7, bisector_c: 2.6,
139
+ radius_circumscribed: 4.6, radius_inscribed: 0.9
140
+ }
141
+ assert(expected: expected_result, actual:Feature.new.heig_med_bis_and_rad(4, 5, 6))
142
+ end
143
+
144
+ def dist_between_points_t
145
+ assert(expected: distance = 28, actual:Feature.new.dist_between_points(20, 60, 40, 80))
146
+ end
147
+
148
+ def permtr_area_triangle_t
149
+ expected_result = { perimeter: 205, area: 500 }
150
+ assert(expected: expected_result, actual:Feature.new.permtr_area_triangle(40, 53, 73, 84, 91, 140))
151
+ end
152
+
153
+ def area_sector_t
154
+ assert(expected: area = 1877, actual:Feature.new.area_sector(20))
155
+ end
156
+
157
+ def angeles_triangle_t
158
+ expected_result = { angele_a: 14, angele_b: 127, angele_c: 39 }
159
+ assert(expected: expected_result, actual:Feature.new.angeles_triangle(40, 53, 73))
160
+ end
161
+
162
+ def calc_equation_1_number_t
163
+ assert(expected: 9506, actual:Feature.new.calc_equation_1_number(20))
164
+ end
165
+
166
+ def calc_equation_2_number_t
167
+ assert(expected: -5054, actual:Feature.new.calc_equation_2_number(20, 30))
168
+ end
169
+
170
+ def calc_2_equations_t
171
+ assert(expected: { answer1: -30839, answer2: 33241 }, actual:Feature.new.calc_2_equations(20))
172
+ end
173
+
174
+ def max_min_2_number_t
175
+ expected_result = { max: 5, min: 3, max_min: [5, 3]}
176
+ assert(expected: expected_result, actual:Feature.new.max_min_2_number(5, 3))
177
+ end
178
+
179
+ def min_max_3_number_t
180
+ expected_result = { max: 6 , min_max: [4, 6] }
181
+ assert(expected: expected_result, actual:Feature.new.min_max_3_number(4, 5, 6))
182
+ end
183
+
184
+ def min_max_2_equations_t
185
+ expected_result = { max: 120, min: 57.25 }
186
+ assert(expected: expected_result, actual:Feature.new.min_max_2_equations(4, 5, 6))
187
+ end
188
+
189
+ def a_less_b_less_c_t1
190
+ assert(expected: true , actual:Feature.new.a_less_b_less_c(4, 5, 6))
191
+ end
192
+
193
+ def a_less_b_less_c_t2
194
+ assert(expected: false ,actual:Feature.new.a_less_b_less_c(5, 4, 6))
195
+ end
196
+
197
+ def a_more_eq_b_more_eq_c_t1
198
+ assert(expected: [5, 4, 6], actual:Feature.new.a_more_eq_b_more_eq_c(-5, -4, -6))
199
+ end
200
+
201
+ def a_more_eq_b_more_eq_c_t2
202
+ assert(expected: [-10, -10, -10],
203
+ actual:Feature.new.a_more_eq_b_more_eq_c(-5, -5, -5))
204
+ end
205
+
206
+ def calc_number_z_t1
207
+ assert(expected: 1 , actual:Feature.new.calc_number_z(5, 4))
208
+ end
209
+
210
+ def calc_number_z_t2
211
+ assert(expected: 0 , actual:Feature.new.calc_number_z(4, 5))
212
+ end
213
+
214
+ def comp_x_y_and_output_t1
215
+ assert(expected: 5, actual:Feature.new.comp_x_y_and_output(5, 4))
216
+ end
217
+
218
+ def comp_x_y_and_output_t2
219
+ assert(expected: [4, 5], actual:Feature.new.comp_x_y_and_output(4, 5))
220
+ end
221
+
222
+ def comp_x_y_or_x_by_0_t1
223
+ assert(expected: 0 , actual:Feature.new.comp_x_y_or_x_by_0(5, 5))
224
+ end
225
+
226
+ def comp_x_y_or_x_by_0_t2
227
+ assert(expected: [5, 4], actual:Feature.new.comp_x_y_or_x_by_0(5, 4))
228
+ end
229
+
230
+ def less_halfsum_more_doubled_t1
231
+ assert(expected: [x=4.5, y= 40],
232
+ actual:Feature.new.less_halfsum_more_doubled(5, 4))
233
+ end
234
+
235
+ def less_halfsum_more_doubled_t2
236
+ assert(expected: [y= 4.5, x= 40],
237
+ actual:Feature.new.less_halfsum_more_doubled(4, 5))
238
+ end
239
+
240
+ def non_negative_number_t1
241
+ expected_result = { a_more_0: 36, b_more_0: 25, c_more_0: 16 }
242
+ assert(expected: expected_result, actual:Feature.new.non_negative_number(6, 5, 4))
243
+ end
244
+
245
+ def non_negative_number_t2
246
+ expected_result = { a_more_0: nil, b_more_0: nil, c_more_0: nil }
247
+ assert(expected: expected_result, actual:Feature.new.non_negative_number(-6, -5, -4))
248
+ end
249
+
250
+ def floor_round_int_numb_x_t
251
+ expected_result = { floor: 2, round: 3, to_i: 2 }
252
+ assert(expected: expected_result, actual:Feature.new.floor_round_int_numb_x(2.6))
253
+ end
254
+
255
+ def determ_even_numb_t1
256
+ assert(expected: true , actual:Feature.new.determ_even_numb(4))
257
+ end
258
+
259
+ def determ_even_numb_t2
260
+ assert(expected: false , actual:Feature.new.determ_even_numb(5))
261
+ end
262
+
263
+ def determ_remainder_div_r_s_t1
264
+ expected_result = { remainder_equal_r: true, remainder_equal_s: nil, remainder_not_equal_r_or_s: nil}
265
+ assert(expected: expected_result, actual:Feature.new.determ_remainder_div_r_s(4, 2, 0, 4))
266
+ end
267
+
268
+ def determ_remainder_div_r_s_t2
269
+ expected_result = { remainder_equal_r: nil, remainder_equal_s: true, remainder_not_equal_r_or_s: nil}
270
+ assert(expected: expected_result, actual:Feature.new.determ_remainder_div_r_s(4, 2, 4, 0))
271
+ end
272
+
273
+ def determ_remainder_div_r_s_t3
274
+ expected_result = { remainder_equal_r: nil, remainder_equal_s: nil, remainder_not_equal_r_or_s: true}
275
+ assert(expected: expected_result, actual:Feature.new.determ_remainder_div_r_s(4, 2, 4, 2))
276
+ end
277
+
278
+ def determ_hund_in_numb_t1
279
+ assert(expected: 5, actual:Feature.new.determ_hund_in_numb(500))
280
+ end
281
+
282
+ def determ_hund_in_numb_t2
283
+ assert(expected: false, actual:Feature.new.determ_hund_in_numb(50))
284
+ end
285
+
286
+ def eq_squa_numb_n_cub_sum_t1
287
+ assert(expected: false , actual:Feature.new.eq_squa_numb_n_cub_sum(50))
288
+ end
289
+
290
+ def eq_squa_numb_n_cub_sum_t2
291
+ assert(expected: true, actual:Feature.new.eq_squa_numb_n_cub_sum(1))
292
+ end
293
+
294
+ def incl_sm_lst_frst_lst_b_on_n_t
295
+ expected_result = { including: 2, sum: 13, last: 7, first: 6, last_but_one: 6}
296
+ assert(expected: expected_result, actual:Feature.new.incl_sm_lst_frst_lst_b_on_n(67))
297
+ end
298
+
299
+ def number_check_t1
300
+ expected_result = {palindrome: true , three_identical_numbers: false , numbers_different: false }
301
+ assert(expected: expected_result, actual:Feature.new.number_check(2002))
302
+ end
303
+
304
+ def number_check_t2
305
+ expected_result = { palindrome: false , three_identical_numbers: true , numbers_different: false }
306
+ assert(expected: expected_result, actual:Feature.new.number_check(2022))
307
+ end
308
+
309
+ def number_check_t3
310
+ expected_result = { palindrome: false , three_identical_numbers: false , numbers_different: true }
311
+ assert(expected: expected_result, actual:Feature.new.number_check(2034))
312
+ end
313
+
314
+ def calcul_the_progression_t
315
+ assert(expected: 1.7298409468177145e-14, actual:Feature.new.calcul_the_progression )
316
+ end
317
+ end
318
+
319
+
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: solving_math_tasks
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Semyz Serhii
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-11-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: quality_assurance
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 1.0.0
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 1.0.0
27
+ description: This gem will help you solve some math task.
28
+ email: semizserhii@gmail.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - CHANGELOG
34
+ - LICENSE
35
+ - README.md
36
+ - Rakefile
37
+ - feature.gemspec
38
+ - lib/feature.rb
39
+ - test/spec.rb
40
+ homepage: https://github.com/SemyzSerhii/Solving-math-tasks
41
+ licenses:
42
+ - GPL-2.0
43
+ metadata: {}
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubyforge_project:
60
+ rubygems_version: 2.6.14
61
+ signing_key:
62
+ specification_version: 4
63
+ summary: Solve some math task.
64
+ test_files:
65
+ - test/spec.rb