lapis-common 0.1.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/.codeclimate.yml +18 -0
- data/.gitignore +151 -0
- data/.rspec +3 -0
- data/.rubocop.yml +1156 -0
- data/.travis.yml +5 -0
- data/Gemfile +5 -0
- data/LICENSE.md +16 -0
- data/README.md +56 -0
- data/Rakefile +28 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lapis-common.gemspec +31 -0
- data/lib/lapis/uuid.rb +255 -0
- data/lib/lapis/version.rb +3 -0
- data/lib/lapis.rb +6 -0
- data/spec/factories/uuid_factory.rb +43 -0
- data/spec/lapis/uuid_spec.rb +450 -0
- data/spec/spec_helper.rb +85 -0
- metadata +178 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b47a86ec3a01f1c627e8ef76b589cde22a07fceb
|
4
|
+
data.tar.gz: c5a838b8881d1c032096c93b2d78e68f2b7b25b2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: dbc72c5c73ec5f0faee27fadcddbe928343d703be3c0f79bb529903a00a125d0bcacf296527a4c38ca7d891327d5c9a3e3522c678f87ccbb464d3c1b33ee3ae8
|
7
|
+
data.tar.gz: aeceda5bc89dd4eceeefdc6013cc47df6d41fdf8e9f47510a7f37c471e6400b5b02cf2499da6d93f004b9cc2d2720fcb0e8c733cb810bb9680992dc8f1cb1861
|
data/.codeclimate.yml
ADDED
data/.gitignore
ADDED
@@ -0,0 +1,151 @@
|
|
1
|
+
# Created by https://www.gitignore.io/api/ruby,rubymine,vim,linux,windows,osx
|
2
|
+
|
3
|
+
### Ruby ###
|
4
|
+
*.gem
|
5
|
+
*.rbc
|
6
|
+
/.config
|
7
|
+
/coverage/
|
8
|
+
/InstalledFiles
|
9
|
+
/pkg/
|
10
|
+
/spec/reports/
|
11
|
+
/spec/examples.txt
|
12
|
+
/test/tmp/
|
13
|
+
/test/version_tmp/
|
14
|
+
/tmp/
|
15
|
+
|
16
|
+
## Specific to RubyMotion:
|
17
|
+
.dat*
|
18
|
+
.repl_history
|
19
|
+
build/
|
20
|
+
*.bridgesupport
|
21
|
+
build-iPhoneOS/
|
22
|
+
build-iPhoneSimulator/
|
23
|
+
|
24
|
+
## Specific to RubyMotion (use of CocoaPods):
|
25
|
+
#
|
26
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
27
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
28
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
29
|
+
#
|
30
|
+
# vendor/Pods/
|
31
|
+
|
32
|
+
## Documentation cache and generated files:
|
33
|
+
/.yardoc/
|
34
|
+
/_yardoc/
|
35
|
+
/doc/
|
36
|
+
/rdoc/
|
37
|
+
|
38
|
+
## Environment normalization:
|
39
|
+
/.bundle/
|
40
|
+
/vendor/bundle
|
41
|
+
/lib/bundler/man/
|
42
|
+
|
43
|
+
# for a library or gem, you might want to ignore these files since the code is
|
44
|
+
# intended to run in multiple environments; otherwise, check them in:
|
45
|
+
Gemfile.lock
|
46
|
+
.ruby-version
|
47
|
+
.ruby-gemset
|
48
|
+
|
49
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
50
|
+
.rvmrc
|
51
|
+
|
52
|
+
|
53
|
+
### RubyMine ###
|
54
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
55
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
56
|
+
.idea/
|
57
|
+
|
58
|
+
## File-based project format:
|
59
|
+
*.iws
|
60
|
+
|
61
|
+
## Plugin-specific files:
|
62
|
+
|
63
|
+
# IntelliJ
|
64
|
+
/out/
|
65
|
+
|
66
|
+
# mpeltonen/sbt-idea plugin
|
67
|
+
.idea_modules/
|
68
|
+
|
69
|
+
# JIRA plugin
|
70
|
+
atlassian-ide-plugin.xml
|
71
|
+
|
72
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
73
|
+
com_crashlytics_export_strings.xml
|
74
|
+
crashlytics.properties
|
75
|
+
crashlytics-build.properties
|
76
|
+
fabric.properties
|
77
|
+
|
78
|
+
|
79
|
+
### Vim ###
|
80
|
+
# swap
|
81
|
+
[._]*.s[a-w][a-z]
|
82
|
+
[._]s[a-w][a-z]
|
83
|
+
# session
|
84
|
+
Session.vim
|
85
|
+
# temporary
|
86
|
+
.netrwhist
|
87
|
+
*~
|
88
|
+
# auto-generated tag files
|
89
|
+
tags
|
90
|
+
|
91
|
+
|
92
|
+
### Linux ###
|
93
|
+
*~
|
94
|
+
|
95
|
+
# temporary files which can be created if a process still has a handle open of a deleted file
|
96
|
+
.fuse_hidden*
|
97
|
+
|
98
|
+
# KDE directory preferences
|
99
|
+
.directory
|
100
|
+
|
101
|
+
# Linux trash folder which might appear on any partition or disk
|
102
|
+
.Trash-*
|
103
|
+
|
104
|
+
|
105
|
+
### Windows ###
|
106
|
+
# Windows image file caches
|
107
|
+
Thumbs.db
|
108
|
+
ehthumbs.db
|
109
|
+
|
110
|
+
# Folder config file
|
111
|
+
Desktop.ini
|
112
|
+
|
113
|
+
# Recycle Bin used on file shares
|
114
|
+
$RECYCLE.BIN/
|
115
|
+
|
116
|
+
# Windows Installer files
|
117
|
+
*.cab
|
118
|
+
*.msi
|
119
|
+
*.msm
|
120
|
+
*.msp
|
121
|
+
|
122
|
+
# Windows shortcuts
|
123
|
+
*.lnk
|
124
|
+
|
125
|
+
|
126
|
+
### OSX ###
|
127
|
+
.DS_Store
|
128
|
+
.AppleDouble
|
129
|
+
.LSOverride
|
130
|
+
|
131
|
+
# Icon must end with two \r
|
132
|
+
Icon
|
133
|
+
|
134
|
+
|
135
|
+
# Thumbnails
|
136
|
+
._*
|
137
|
+
|
138
|
+
# Files that might appear in the root of a volume
|
139
|
+
.DocumentRevisions-V100
|
140
|
+
.fseventsd
|
141
|
+
.Spotlight-V100
|
142
|
+
.TemporaryItems
|
143
|
+
.Trashes
|
144
|
+
.VolumeIcon.icns
|
145
|
+
|
146
|
+
# Directories potentially created on remote AFP share
|
147
|
+
.AppleDB
|
148
|
+
.AppleDesktop
|
149
|
+
Network Trash Folder
|
150
|
+
Temporary Items
|
151
|
+
.apdisk
|
data/.rspec
ADDED