report_action 0.3.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c71bf29dd2b2d28cee02f7fb1ab9da82a9df2b3b9ef2ce6374c867067745ae8c
4
+ data.tar.gz: ea844fae4f3d60cb9f5a5e053e3475c2ffee03c30fd5501e048a53af28b0bf62
5
+ SHA512:
6
+ metadata.gz: 1054ef9ba465b01c9711849c22ca8c7d3e98e43dbdbc1c5508e0e738f8ccf26dd633c2f9490d7cbc779968570c9dc31c28688e6c01d665cea63d107af50a0e53
7
+ data.tar.gz: a788adcdbe8da56e26e8253e00d00a41b6d8e3836c780dfe00d3bab7fb2f4ef1b5f995584cbf02a0565f7122b046f195fec3c21cbb57e2103ee3f1a7de7c257a
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ /Gemfile.lock
10
+
11
+ # Ignore IDE
12
+ .idea/
13
+
14
+ .DS_Store
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.5.3
7
+ before_install: gem install bundler -v 1.17.2
@@ -0,0 +1,2 @@
1
+ ## 0.3.0
2
+ - Initial Release
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in report_action.gemspec
6
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 College of Humanities and Social Sciences, George Mason University
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,71 @@
1
+ # ReportAction
2
+
3
+ A collection of tools for structuring and building simple reports, which can be extracted as a structure or as text with html.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'report_action'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install report_action
20
+
21
+ ## Usage
22
+
23
+ First, initialize a new report structure:
24
+ ```ruby
25
+ my_report = ReportAction::Report.new
26
+ ```
27
+ Then add items to your report using this syntax:
28
+ ```ruby
29
+ my_report.report_item(process, group, message)
30
+ ```
31
+ For example:
32
+ ```ruby
33
+ my_report.report_item('Full Task Report', 'Tasks', 'This is a task')
34
+ my_report.report_item('Full Task Report', 'Tasks', 'This is another task')
35
+ my_report.report_item('Full Task Report', 'Results', 'This is a result.')
36
+ my_report.report_item('User Task Report For Ralph', 'Tasks', 'This is a different task.')
37
+ ```
38
+ Build a report for a single process as text with html headers and paragraphs:
39
+ ```ruby
40
+ my_report.build_report('Full Task Report')
41
+ ```
42
+ which returns:
43
+ ```html
44
+ <h1>Tasks</h1><p>This is a task</p><p>This is another task</p><h1>Results</h1><p>This is a result.</p>
45
+ ```
46
+ List all processes in a report:
47
+ ```ruby
48
+ my_report.list_report_processes
49
+ ```
50
+ Retrieve the full report structure:
51
+ ```ruby
52
+ structure = my_report.retrieve_report_structure
53
+ ```
54
+ See if a report has messages for a given process and group:
55
+ ```ruby
56
+ my_report.has_messages?('Full Task Report', 'Tasks')
57
+ ```
58
+
59
+ ## Development
60
+
61
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
62
+
63
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
64
+
65
+ ## Contributing
66
+
67
+ Bug reports and pull requests are welcome on GitHub at https://github.com/CraigJZ/report_action.
68
+
69
+ ## License
70
+
71
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "report_action"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,44 @@
1
+ require 'report_action/version'
2
+
3
+ module ReportAction
4
+ class Error < StandardError; end
5
+
6
+ class Report
7
+ def initialize
8
+ @report_action = {}
9
+ end
10
+
11
+ def report_item(process, group, message)
12
+ @report_action[process] ||= {}
13
+ @report_action[process][group] ||= []
14
+ @report_action[process][group] << message
15
+ end
16
+
17
+ def list_report_processes
18
+ @report_action.collect { |p| p.shift }
19
+ end
20
+
21
+ def retrieve_report_structure
22
+ @report_action
23
+ end
24
+
25
+ def build_report(process)
26
+ report_body = ''
27
+ if @report_action.key?(process)
28
+ @report_action[process].each do |group, messages|
29
+ report_body += "<h1>#{group.capitalize}</h1>"
30
+ messages.uniq.sort.each do |message|
31
+ report_body += "<p>#{message}</p>"
32
+ end
33
+ end
34
+ end
35
+ report_body
36
+ end
37
+
38
+ def has_messages?(process, group)
39
+ if @report_action.key?(process)
40
+ @report_action[process].key?(group)
41
+ end
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,3 @@
1
+ module ReportAction
2
+ VERSION = "0.3.0"
3
+ end
@@ -0,0 +1,42 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "report_action/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "report_action"
8
+ spec.version = ReportAction::VERSION
9
+ spec.authors = ["Danny Collier, Craig Zaccaro"]
10
+ spec.email = ["chssweb@gmu.edu"]
11
+
12
+ spec.summary = "Common Reporting Actions"
13
+ spec.description = spec.summary
14
+ spec.homepage = "https://github.com/CraigJZ/report_action"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ #spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
21
+
22
+ spec.metadata["homepage_uri"] = spec.homepage
23
+ spec.metadata["source_code_uri"] = "https://github.com/CraigJZ/report_action"
24
+ spec.metadata["changelog_uri"] = "https://github.com/CraigJZ/report_action/blob/master/CHANGELOG.md"
25
+ else
26
+ raise "RubyGems 2.0 or newer is required to protect against " \
27
+ "public gem pushes."
28
+ end
29
+
30
+ # Specify which files should be added to the gem when it is released.
31
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
32
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
33
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
34
+ end
35
+ spec.bindir = "exe"
36
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
37
+ spec.require_paths = ["lib"]
38
+
39
+ spec.add_development_dependency "bundler", "~> 1.17"
40
+ spec.add_development_dependency "rake", "~> 12.0"
41
+ spec.add_development_dependency "minitest", "~> 5.0"
42
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: report_action
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.0
5
+ platform: ruby
6
+ authors:
7
+ - Danny Collier, Craig Zaccaro
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-01-31 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.17'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.17'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '12.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '12.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ description: Common Reporting Actions
56
+ email:
57
+ - chssweb@gmu.edu
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".travis.yml"
64
+ - CHANGELOG.md
65
+ - Gemfile
66
+ - LICENSE.txt
67
+ - README.md
68
+ - Rakefile
69
+ - bin/console
70
+ - bin/setup
71
+ - lib/report_action.rb
72
+ - lib/report_action/version.rb
73
+ - report_action.gemspec
74
+ homepage: https://github.com/CraigJZ/report_action
75
+ licenses:
76
+ - MIT
77
+ metadata:
78
+ homepage_uri: https://github.com/CraigJZ/report_action
79
+ source_code_uri: https://github.com/CraigJZ/report_action
80
+ changelog_uri: https://github.com/CraigJZ/report_action/blob/master/CHANGELOG.md
81
+ post_install_message:
82
+ rdoc_options: []
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ requirements: []
96
+ rubygems_version: 3.0.2
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: Common Reporting Actions
100
+ test_files: []