taeval 0.2.2 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ceeacf0ce72bf855cfb47cf2b8e53735498cb4815752ff6c7192b3b69c42453
4
- data.tar.gz: b66029659236156c62cf385dccf969eac20d8739cdfce11b5f5f8c53498b9275
3
+ metadata.gz: 6be0afbe42b38143a796ad23d3a6a538e5afccca6b6e381c0190b42500ad017e
4
+ data.tar.gz: 220b852a92e5f44b10ea5082577ed65c48b3c2a4229f425611941a70c54e97a3
5
5
  SHA512:
6
- metadata.gz: 9df164faaa83b4d1b66ce0f29346e65eb022e6c1fe2e2bbd67a1ef69fdc04a9978429eac090e11e057b2d3ee85dafd6d6f017757774cb0c16eaeb6eb7d6de35e
7
- data.tar.gz: 967c83c6d79214cc333fb88db9e923a22f4198d5bbdca35cbbd122ba2fe87a7560df407df1b3e9b1f0bf84651320cc58920bfea8a96a5b8e2f4f26046af466bc
6
+ metadata.gz: 629e9d5b9ef2d21be6501c269ca29d7d7285731e46027daee873de412701e4f027304c595cbb8552f265e6d10e3088c8a34cbd19d18530fd4095237260d1ac2c
7
+ data.tar.gz: 78833d6bb84af6261c17d391682ee7405ad17de0413100820c2ac16402b5b28043c3338ef8cc5bd2ecc9739eba088ec77a4bd3d56b924f729fd8ca2791182f23
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.2
1
+ 3.0.2
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- taeval (0.2.2)
5
- moss_ruby
4
+ taeval (0.2.4)
5
+ moss_ruby (~> 1.1.3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -34,4 +34,4 @@ DEPENDENCIES
34
34
  taeval!
35
35
 
36
36
  BUNDLED WITH
37
- 2.1.4
37
+ 2.2.22
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # Taeval
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/taeval`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ This gem is intended to give an automated way of evaluation of university homeworks.
6
4
 
7
5
  ## Installation
8
6
 
@@ -14,15 +12,43 @@ gem 'taeval'
14
12
 
15
13
  And then execute:
16
14
 
17
- $ bundle install
15
+ ```sh
16
+ bundle install
17
+ ```
18
18
 
19
19
  Or install it yourself as:
20
20
 
21
- $ gem install taeval
21
+ ```sh
22
+ gem install taeval
23
+ ```
22
24
 
23
25
  ## Usage
24
26
 
25
- TODO: Write usage instructions here
27
+ #### Initialize configs
28
+
29
+ The following command generates the skeleton of the runner and config files as well.
30
+
31
+ ```sh
32
+ taeval init
33
+ ```
34
+
35
+ The result of the command seems as follows
36
+
37
+ ```sh
38
+ mytaeval
39
+ ├── config.yml
40
+ ├── hadolint.yml
41
+ ├── plagium.yml
42
+ ├── report.json
43
+ ├── student_hws
44
+ ├── students.csv
45
+ ├── taeval
46
+ └── unittest.yml
47
+ ```
48
+
49
+ ```ruby
50
+
51
+ ```
26
52
 
27
53
  ## Development
28
54
 
@@ -32,5 +58,5 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
32
58
 
33
59
  ## Contributing
34
60
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/taeval.
61
+ Bug reports and pull requests are welcome on GitHub at https://github.com/torokmark/taeval.
36
62
 
data/lib/taeval/cli.rb CHANGED
@@ -1,4 +1,6 @@
1
1
 
2
+ require 'fileutils'
3
+
2
4
  module Taeval
3
5
  module CLI
4
6
 
@@ -1,3 +1,3 @@
1
1
  module Taeval
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.4"
3
3
  end
data/taeval.gemspec CHANGED
@@ -6,9 +6,10 @@ Gem::Specification.new do |spec|
6
6
  spec.authors = ["Torok Mark"]
7
7
  spec.email = ["torok.marko@gmail.com"]
8
8
 
9
- spec.summary = %q{RubyGem to evaluate homework.}
10
- spec.description = %q{RubyGem to evaluate test automation homework.}
9
+ spec.summary = %q{Auto evaluator for university homeworks.}
10
+ spec.description = %q{Auto evaluator for university homeworks for test automation classes.}
11
11
  spec.homepage = "https://github.com/torokmark/taeval"
12
+ spec.licenses = [ "MIT" ]
12
13
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
13
14
 
14
15
  if spec.respond_to?(:metadata)
@@ -32,5 +33,5 @@ Gem::Specification.new do |spec|
32
33
  spec.add_development_dependency "rake", "~> 13.0"
33
34
  spec.add_development_dependency "rspec", "~> 3.9"
34
35
 
35
- spec.add_runtime_dependency "moss_ruby"
36
+ spec.add_runtime_dependency "moss_ruby", "~> 1.1.3"
36
37
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: taeval
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Torok Mark
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-17 00:00:00.000000000 Z
11
+ date: 2021-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -56,17 +56,17 @@ dependencies:
56
56
  name: moss_ruby
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ">="
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '0'
61
+ version: 1.1.3
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ">="
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '0'
69
- description: RubyGem to evaluate test automation homework.
68
+ version: 1.1.3
69
+ description: Auto evaluator for university homeworks for test automation classes.
70
70
  email:
71
71
  - torok.marko@gmail.com
72
72
  executables:
@@ -118,12 +118,13 @@ files:
118
118
  - lib/taeval/version.rb
119
119
  - taeval.gemspec
120
120
  homepage: https://github.com/torokmark/taeval
121
- licenses: []
121
+ licenses:
122
+ - MIT
122
123
  metadata:
123
124
  allowed_push_host: https://rubygems.org
124
125
  homepage_uri: https://github.com/torokmark/taeval
125
126
  source_code_uri: https://github.com/torokmark/taeval
126
- post_install_message:
127
+ post_install_message:
127
128
  rdoc_options: []
128
129
  require_paths:
129
130
  - lib
@@ -140,8 +141,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
140
141
  - !ruby/object:Gem::Version
141
142
  version: '0'
142
143
  requirements: []
143
- rubygems_version: 3.1.4
144
- signing_key:
144
+ rubygems_version: 3.2.22
145
+ signing_key:
145
146
  specification_version: 4
146
- summary: RubyGem to evaluate homework.
147
+ summary: Auto evaluator for university homeworks.
147
148
  test_files: []