ugh 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.
- checksums.yaml +7 -0
- data/GPL-3 +674 -0
- data/Manifest.txt +7 -0
- data/build.sh +9 -0
- data/lib/ugh.rb +89 -0
- data/test-ugh.rb +190 -0
- data/ugh.fab +287 -0
- data/ugh.gemspec +18 -0
- metadata +67 -0
data/ugh.gemspec
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = 'ugh'
|
3
|
+
s.version = '1.0.0'
|
4
|
+
s.date = '2014-12-22'
|
5
|
+
s.homepage = 'https://github.com/digwuren/ugh'
|
6
|
+
s.summary = 'Attributed exceptions in nested context domains'
|
7
|
+
s.author = 'Andres Soolo'
|
8
|
+
s.email = 'dig@mirky.net'
|
9
|
+
s.files = File.read('Manifest.txt').split(/\n/)
|
10
|
+
s.license = 'GPL-3'
|
11
|
+
s.description = <<EOD
|
12
|
+
Ugh provides infrastructure for attributed error messages and
|
13
|
+
for (re)attributing these in accordance with dynamically scoped
|
14
|
+
nestable context domains.
|
15
|
+
EOD
|
16
|
+
s.has_rdoc = false
|
17
|
+
s.add_development_dependency 'maui', '~> 3.1.0'
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ugh
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Andres Soolo
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-12-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: maui
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 3.1.0
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.1.0
|
27
|
+
description: |
|
28
|
+
Ugh provides infrastructure for attributed error messages and
|
29
|
+
for (re)attributing these in accordance with dynamically scoped
|
30
|
+
nestable context domains.
|
31
|
+
email: dig@mirky.net
|
32
|
+
executables: []
|
33
|
+
extensions: []
|
34
|
+
extra_rdoc_files: []
|
35
|
+
files:
|
36
|
+
- GPL-3
|
37
|
+
- Manifest.txt
|
38
|
+
- build.sh
|
39
|
+
- lib/ugh.rb
|
40
|
+
- test-ugh.rb
|
41
|
+
- ugh.fab
|
42
|
+
- ugh.gemspec
|
43
|
+
homepage: https://github.com/digwuren/ugh
|
44
|
+
licenses:
|
45
|
+
- GPL-3
|
46
|
+
metadata: {}
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options: []
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - '>='
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
requirements: []
|
62
|
+
rubyforge_project:
|
63
|
+
rubygems_version: 2.0.14
|
64
|
+
signing_key:
|
65
|
+
specification_version: 4
|
66
|
+
summary: Attributed exceptions in nested context domains
|
67
|
+
test_files: []
|