com-common 0.1.4 → 0.2.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 +4 -4
- data/.gitignore +26 -19
- data/Gemfile +10 -0
- data/lib/com/common/standard_error.rb +8 -0
- data/lib/com/common/version.rb +1 -1
- data/lib/com/common.rb +1 -0
- data/lib/com-common.rb +1 -0
- data/lib/com.rb +0 -2
- 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: df345629b2e923278698167873e65409a8cf9f3c
|
4
|
+
data.tar.gz: 64006d2fc6c435e139ebf602f976ecac692d9f38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f36da337e11efad747276e626caeab3c9e1db0bda45e63ebc91a30d88b8674a1b145db02420caa74caba0e6a686cefeb3db235407c0d6c0f97ac8e3d10b7d7df
|
7
|
+
data.tar.gz: 7cb6cdeeeb680c77d22b259babcd45c74bfd7bc2fe82f21eecf213f631b36e18e6ddf262b8c60ca709f83d12cabf872f9e5303a5501158d6b4cbe093971b7e4a
|
data/.gitignore
CHANGED
@@ -1,28 +1,35 @@
|
|
1
|
-
|
2
|
-
InstalledFiles
|
3
|
-
test/tmp
|
4
|
-
test/version_tmp
|
5
|
-
tmp
|
1
|
+
/.config
|
2
|
+
/InstalledFiles
|
3
|
+
/test/tmp/
|
4
|
+
/test/version_tmp/
|
5
|
+
/tmp/
|
6
|
+
|
7
|
+
## Documentation cache and generated files:
|
8
|
+
/.yardoc/
|
9
|
+
/_yardoc/
|
10
|
+
/doc/
|
11
|
+
/rdoc/
|
12
|
+
|
13
|
+
## Environment normalization:
|
14
|
+
/.bundle/
|
15
|
+
/vendor/bundle
|
16
|
+
/lib/bundler/man/
|
17
|
+
|
18
|
+
# for a library or gem, you might want to ignore these files since the code is
|
19
|
+
# intended to run in multiple environments; otherwise, check them in:
|
20
|
+
Gemfile.lock
|
21
|
+
|
22
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
23
|
+
.rvmrc
|
6
24
|
|
7
25
|
# Build artifacts
|
8
26
|
*.gem
|
9
27
|
*.rbc
|
10
|
-
pkg
|
11
|
-
|
12
|
-
# Bundler
|
13
|
-
.bundle
|
14
|
-
/Gemfile.lock
|
15
|
-
lib/bundler/man
|
16
|
-
|
17
|
-
# YARD artifacts
|
18
|
-
.yardoc
|
19
|
-
_yardoc
|
20
|
-
doc/
|
21
|
-
rdoc
|
28
|
+
/pkg/
|
22
29
|
|
23
30
|
# RSpec file to presist failures
|
24
|
-
spec/examples.txt
|
31
|
+
/spec/examples.txt
|
25
32
|
/spec/reports/
|
26
33
|
|
27
34
|
# Tests coverage
|
28
|
-
coverage
|
35
|
+
/coverage/
|
data/Gemfile
CHANGED
@@ -4,3 +4,13 @@ source "https://rubygems.org"
|
|
4
4
|
|
5
5
|
# Specify your dependencies in com-common.gemspec
|
6
6
|
gemspec
|
7
|
+
|
8
|
+
group :test do
|
9
|
+
end
|
10
|
+
|
11
|
+
group :tools do
|
12
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
13
|
+
gem "byebug"
|
14
|
+
|
15
|
+
gem "awesome_print"
|
16
|
+
end
|
data/lib/com/common/version.rb
CHANGED
data/lib/com/common.rb
CHANGED
data/lib/com-common.rb
CHANGED
data/lib/com.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: com-common
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zeke Fast
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-09-
|
11
|
+
date: 2016-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -78,6 +78,7 @@ files:
|
|
78
78
|
- lib/com/abstract_method_error.rb
|
79
79
|
- lib/com/common.rb
|
80
80
|
- lib/com/common/error.rb
|
81
|
+
- lib/com/common/standard_error.rb
|
81
82
|
- lib/com/common/version.rb
|
82
83
|
- lib/com/error.rb
|
83
84
|
- lib/com/standard_error.rb
|