est 0.3.1 → 0.3.2
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.
- checksums.yaml +4 -4
- data/.simplecov +2 -2
- data/.travis.yml +2 -0
- data/Gemfile +2 -2
- data/LICENSE.txt +2 -2
- data/PUZZLES.md +4 -0
- data/README.md +21 -11
- data/Rakefile +11 -3
- data/assets/est-text.xsl +2 -2
- data/assets/est.xsd +2 -2
- data/assets/est.xsl +2 -2
- data/bin/est +2 -2
- data/est.gemspec +2 -2
- data/features/cli.feature +3 -3
- data/features/step_definitions/steps.rb +2 -2
- data/features/support/env.rb +2 -2
- data/lib/est.rb +3 -3
- data/lib/est/estimate.rb +3 -3
- data/lib/est/estimates.rb +3 -3
- data/lib/est/methods/champions.rb +4 -4
- data/lib/est/version.rb +4 -4
- data/test/test__helper.rb +2 -2
- data/test/test_champions.rb +4 -4
- data/test/test_est.rb +4 -4
- data/test/test_estimate.rb +4 -4
- data/test/test_estimates.rb +4 -4
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c24bdda36cf5c2445d1de505269881704477bdc5
|
|
4
|
+
data.tar.gz: 78d18311efc86c3b6916b32f09d8b1f47a26d22c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19020c740c716fce28a9441fabc0888d034d01de9f7e209c8b1d3be425476fe60b30c342a590f99d3d49b71cc1d377b846743e7c2c31fe6094aec167c1fba8a1
|
|
7
|
+
data.tar.gz: dfaf913cfbf9268bdf74d6850f78db11e72952c3779711091397bfc4b2ea1b3684282e98121f5e98a8a9b84206c812db2ae2371b1d7f81498b5f26d21ee33cd7
|
data/.simplecov
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
data/LICENSE.txt
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
(The MIT License)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
|
|
6
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
of this software and associated documentation files (the 'Software'), to deal
|
data/PUZZLES.md
ADDED
data/README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
[](http://www.teamed.io)
|
|
2
2
|
[](http://www.rultor.com/p/teamed/est)
|
|
3
|
+
[](https://www.jetbrains.com/ruby/)
|
|
3
4
|
|
|
4
5
|
[](https://travis-ci.org/teamed/est)
|
|
5
6
|
[](http://badge.fury.io/rb/est)
|
|
@@ -7,9 +8,23 @@
|
|
|
7
8
|
[](https://codeclimate.com/github/teamed/est)
|
|
8
9
|
[](https://coveralls.io/r/teamed/est)
|
|
9
10
|
|
|
10
|
-
Install it first:
|
|
11
|
+
Install it first (Debian Linux):
|
|
11
12
|
|
|
12
13
|
```bash
|
|
14
|
+
$ apt-get install -y libmagic1 libmagic-dev zlib1g-dev ruby-dev
|
|
15
|
+
$ gem install est
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
On RedHat:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
$ yum install -y libmagic1 libmagic-dev zlib1g-dev ruby-dev
|
|
22
|
+
$ gem install est
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
On OSX and Windows, just that:
|
|
26
|
+
|
|
27
|
+
```
|
|
13
28
|
$ gem install est
|
|
14
29
|
```
|
|
15
30
|
|
|
@@ -30,18 +45,14 @@ scope:
|
|
|
30
45
|
1: basic Sinatra scaffolding
|
|
31
46
|
2: front-end HAML files
|
|
32
47
|
3: SASS stylesheet
|
|
33
|
-
4: five model classes
|
|
48
|
+
4: five model classes + unit/integration tests
|
|
34
49
|
5: PostgreSQL migrations
|
|
35
|
-
6: Cucumber tests for PostgreSQL
|
|
36
|
-
7: Capybara tests for HTML front
|
|
37
|
-
8: CasperJS tests
|
|
38
|
-
9: achieve 80% test coverage
|
|
39
50
|
champions:
|
|
40
|
-
|
|
51
|
+
2:
|
|
41
52
|
worst-case: 40
|
|
42
53
|
best-case: 10
|
|
43
54
|
most-likely: 18
|
|
44
|
-
|
|
55
|
+
5:
|
|
45
56
|
worst-case: 30
|
|
46
57
|
best-case: 8
|
|
47
58
|
most-likely: 16
|
|
@@ -52,9 +63,8 @@ project estimate will be produced:
|
|
|
52
63
|
|
|
53
64
|
```bash
|
|
54
65
|
$ est --dir=./est
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
Precision (%): 6.5
|
|
66
|
+
Total: 27
|
|
67
|
+
2014-12-19: 27 hours by Yegor Bugayenko
|
|
58
68
|
```
|
|
59
69
|
|
|
60
70
|
## Scope Champions
|
data/Rakefile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
|
@@ -34,7 +34,7 @@ def version
|
|
|
34
34
|
Gem::Specification.load(Dir['*.gemspec'].first).version
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
-
task default: [:clean, :test, :features, :rubocop]
|
|
37
|
+
task default: [:clean, :test, :features, :rubocop, :copyright]
|
|
38
38
|
|
|
39
39
|
require 'rake/testtask'
|
|
40
40
|
desc 'Run all unit tests'
|
|
@@ -69,3 +69,11 @@ end
|
|
|
69
69
|
Cucumber::Rake::Task.new(:'features:html') do |t|
|
|
70
70
|
t.profile = 'html_report'
|
|
71
71
|
end
|
|
72
|
+
|
|
73
|
+
task :copyright do
|
|
74
|
+
sh "grep -q -r '2014-#{Date.today.strftime('%Y')}' \
|
|
75
|
+
--include '*.rb' \
|
|
76
|
+
--include '*.txt' \
|
|
77
|
+
--include 'Rakefile' \
|
|
78
|
+
."
|
|
79
|
+
end
|
data/assets/est-text.xsl
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0"?>
|
|
2
2
|
<!--
|
|
3
|
-
* Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
* Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
* Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
* Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
*
|
|
6
6
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
* of this software and associated documentation files (the 'Software'), to deal
|
data/assets/est.xsd
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0"?>
|
|
2
2
|
<!--
|
|
3
|
-
* Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
* Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
* Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
* Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
*
|
|
6
6
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
* of this software and associated documentation files (the 'Software'), to deal
|
data/assets/est.xsl
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0"?>
|
|
2
2
|
<!--
|
|
3
|
-
* Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
* Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
* Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
* Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
*
|
|
6
6
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
* of this software and associated documentation files (the 'Software'), to deal
|
data/bin/est
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
# encoding: utf-8
|
|
3
3
|
#
|
|
4
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
5
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
4
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
5
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
6
6
|
#
|
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
8
|
# of this software and associated documentation files (the 'Software'), to deal
|
data/est.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
data/features/cli.feature
CHANGED
|
@@ -40,7 +40,7 @@ Feature: Command Line Processing
|
|
|
40
40
|
When I run bin/est with "-v -d . -t xml -f out.xml"
|
|
41
41
|
Then Exit code is zero
|
|
42
42
|
And Stdout contains "reading ."
|
|
43
|
-
And XML file "out.xml" matches "/estimate[total='
|
|
43
|
+
And XML file "out.xml" matches "/estimate[total='79']"
|
|
44
44
|
|
|
45
45
|
Scenario: Simple estimate calculating, in Text
|
|
46
46
|
Given I have a "sample.est" file with content:
|
|
@@ -70,8 +70,8 @@ Feature: Command Line Processing
|
|
|
70
70
|
"""
|
|
71
71
|
When I run bin/est with "-d ."
|
|
72
72
|
Then Exit code is zero
|
|
73
|
-
And Stdout contains "Total:
|
|
74
|
-
And Stdout contains "2014-08-19:
|
|
73
|
+
And Stdout contains "Total: 79"
|
|
74
|
+
And Stdout contains "2014-08-19: 79 hours by Yegor Bugayenko"
|
|
75
75
|
|
|
76
76
|
Scenario: Rejects unknown options
|
|
77
77
|
Given I have a "test.est" file with content:
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
data/features/support/env.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
data/lib/est.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
|
@@ -29,7 +29,7 @@ require 'time'
|
|
|
29
29
|
|
|
30
30
|
# Est main module.
|
|
31
31
|
# Author:: Yegor Bugayenko (yegor@teamed.io)
|
|
32
|
-
# Copyright:: Copyright (c) 2014 Yegor Bugayenko
|
|
32
|
+
# Copyright:: Copyright (c) 2014-2016 Yegor Bugayenko
|
|
33
33
|
# License:: MIT
|
|
34
34
|
module Est
|
|
35
35
|
# If it breaks.
|
data/lib/est/estimate.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
|
@@ -28,7 +28,7 @@ require 'yaml'
|
|
|
28
28
|
|
|
29
29
|
# Single estimate.
|
|
30
30
|
# Author:: Yegor Bugayenko (yegor@teamed.io)
|
|
31
|
-
# Copyright:: Copyright (c) 2014 Yegor Bugayenko
|
|
31
|
+
# Copyright:: Copyright (c) 2014-2016 Yegor Bugayenko
|
|
32
32
|
# License:: MIT
|
|
33
33
|
module Est
|
|
34
34
|
# Estimate.
|
data/lib/est/estimates.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
|
@@ -28,7 +28,7 @@ require 'time'
|
|
|
28
28
|
|
|
29
29
|
# Est main module.
|
|
30
30
|
# Author:: Yegor Bugayenko (yegor@teamed.io)
|
|
31
|
-
# Copyright:: Copyright (c) 2014 Yegor Bugayenko
|
|
31
|
+
# Copyright:: Copyright (c) 2014-2016 Yegor Bugayenko
|
|
32
32
|
# License:: MIT
|
|
33
33
|
module Est
|
|
34
34
|
# Estimates.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
|
@@ -27,7 +27,7 @@ require 'yaml'
|
|
|
27
27
|
|
|
28
28
|
# Single estimate.
|
|
29
29
|
# Author:: Yegor Bugayenko (yegor@teamed.io)
|
|
30
|
-
# Copyright:: Copyright (c) 2014 Yegor Bugayenko
|
|
30
|
+
# Copyright:: Copyright (c) 2014-2016 Yegor Bugayenko
|
|
31
31
|
# License:: MIT
|
|
32
32
|
module Est
|
|
33
33
|
# Scope Champions.
|
|
@@ -47,7 +47,7 @@ module Est
|
|
|
47
47
|
k = 0.54
|
|
48
48
|
sum = champs.map do |i, e|
|
|
49
49
|
total = (e['best-case'].to_i +
|
|
50
|
-
e['worst'].to_i +
|
|
50
|
+
e['worst-case'].to_i +
|
|
51
51
|
e['most-likely'].to_i * 4) / 6
|
|
52
52
|
Est.log.info "#{i}: (#{e['best-case']} + #{e['worst-case']} +"\
|
|
53
53
|
" #{e['most-likely']} * 4) / 6 = #{total}"
|
data/lib/est/version.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
|
|
24
24
|
# Est main module.
|
|
25
25
|
# Author:: Yegor Bugayenko (yegor@teamed.io)
|
|
26
|
-
# Copyright:: Copyright (c) 2014 Yegor Bugayenko
|
|
26
|
+
# Copyright:: Copyright (c) 2014-2016 Yegor Bugayenko
|
|
27
27
|
# License:: MIT
|
|
28
28
|
module Est
|
|
29
|
-
VERSION = '0.3.
|
|
29
|
+
VERSION = '0.3.2'
|
|
30
30
|
end
|
data/test/test__helper.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
data/test/test_champions.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
|
@@ -27,7 +27,7 @@ require 'yaml'
|
|
|
27
27
|
|
|
28
28
|
# Est main module test.
|
|
29
29
|
# Author:: Yegor Bugayenko (yegor@teamed.io)
|
|
30
|
-
# Copyright:: Copyright (c) 2014 Yegor Bugayenko
|
|
30
|
+
# Copyright:: Copyright (c) 2014-2016 Yegor Bugayenko
|
|
31
31
|
# License:: MIT
|
|
32
32
|
class TestChampions < Minitest::Test
|
|
33
33
|
def test_basic_calculation
|
|
@@ -56,6 +56,6 @@ class TestChampions < Minitest::Test
|
|
|
56
56
|
'''
|
|
57
57
|
)
|
|
58
58
|
)
|
|
59
|
-
assert_equal
|
|
59
|
+
assert_equal 79, method.total
|
|
60
60
|
end
|
|
61
61
|
end
|
data/test/test_est.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
|
@@ -29,7 +29,7 @@ require 'slop'
|
|
|
29
29
|
|
|
30
30
|
# Est main module test.
|
|
31
31
|
# Author:: Yegor Bugayenko (yegor@teamed.io)
|
|
32
|
-
# Copyright:: Copyright (c) 2014 Yegor Bugayenko
|
|
32
|
+
# Copyright:: Copyright (c) 2014-2016 Yegor Bugayenko
|
|
33
33
|
# License:: MIT
|
|
34
34
|
class TestEst < Minitest::Test
|
|
35
35
|
def test_basic
|
|
@@ -68,7 +68,7 @@ class TestEst < Minitest::Test
|
|
|
68
68
|
'/processing-instruction("xml-stylesheet")[contains(.,".xsl")]',
|
|
69
69
|
'/estimate/@version',
|
|
70
70
|
'/estimate/@date',
|
|
71
|
-
'/estimate[total="
|
|
71
|
+
'/estimate[total="79"]',
|
|
72
72
|
'/estimate/ests[count(est)=1]'
|
|
73
73
|
]
|
|
74
74
|
)
|
data/test/test_estimate.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
|
@@ -29,7 +29,7 @@ require 'slop'
|
|
|
29
29
|
|
|
30
30
|
# Est main module test.
|
|
31
31
|
# Author:: Yegor Bugayenko (yegor@teamed.io)
|
|
32
|
-
# Copyright:: Copyright (c) 2014 Yegor Bugayenko
|
|
32
|
+
# Copyright:: Copyright (c) 2014-2016 Yegor Bugayenko
|
|
33
33
|
# License:: MIT
|
|
34
34
|
class TestEstimate < Minitest::Test
|
|
35
35
|
def test_basic_calculation
|
|
@@ -65,7 +65,7 @@ class TestEstimate < Minitest::Test
|
|
|
65
65
|
estimate = Est::Estimate.new(file)
|
|
66
66
|
assert_equal Date.parse('18-12-2014'), estimate.date
|
|
67
67
|
assert_equal 'Jeff Lebowski', estimate.author
|
|
68
|
-
assert_equal
|
|
68
|
+
assert_equal 79, estimate.total
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
end
|
data/test/test_estimates.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2014 TechnoPark Corp.
|
|
4
|
-
# Copyright (c) 2014 Yegor Bugayenko
|
|
3
|
+
# Copyright (c) 2014-2016 TechnoPark Corp.
|
|
4
|
+
# Copyright (c) 2014-2016 Yegor Bugayenko
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
# of this software and associated documentation files (the 'Software'), to deal
|
|
@@ -29,7 +29,7 @@ require 'slop'
|
|
|
29
29
|
|
|
30
30
|
# Est main module test.
|
|
31
31
|
# Author:: Yegor Bugayenko (yegor@teamed.io)
|
|
32
|
-
# Copyright:: Copyright (c) 2014 Yegor Bugayenko
|
|
32
|
+
# Copyright:: Copyright (c) 2014-2016 Yegor Bugayenko
|
|
33
33
|
# License:: MIT
|
|
34
34
|
class TestEstimates < Minitest::Test
|
|
35
35
|
def test_basic_calculation
|
|
@@ -62,7 +62,7 @@ class TestEstimates < Minitest::Test
|
|
|
62
62
|
'''
|
|
63
63
|
)
|
|
64
64
|
estimates = Est::Estimates.new(dir)
|
|
65
|
-
assert_equal
|
|
65
|
+
assert_equal 79, estimates.total
|
|
66
66
|
end
|
|
67
67
|
end
|
|
68
68
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: est
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yegor Bugayenko
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-11-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
@@ -181,6 +181,7 @@ files:
|
|
|
181
181
|
- ".travis.yml"
|
|
182
182
|
- Gemfile
|
|
183
183
|
- LICENSE.txt
|
|
184
|
+
- PUZZLES.md
|
|
184
185
|
- README.md
|
|
185
186
|
- Rakefile
|
|
186
187
|
- TEAM.md
|