ires 0.1.2 → 0.1.3
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/ext/ires/ires.go +114 -0
- data/ext/main.go +22 -76
- data/ext/operate/image.go +54 -17
- data/ext/vendor/github.com/satori/go.uuid/LICENSE +20 -0
- data/ext/vendor/github.com/satori/go.uuid/README.md +65 -0
- data/ext/vendor/github.com/satori/go.uuid/benchmarks_test.go +121 -0
- data/ext/vendor/github.com/satori/go.uuid/uuid.go +488 -0
- data/ext/vendor/github.com/satori/go.uuid/uuid_test.go +633 -0
- data/lib/ires/version.rb +1 -1
- data/shared/darwin/ires.so +0 -0
- data/shared/linux/ires.so +0 -0
- metadata +8 -2
data/lib/ires/version.rb
CHANGED
data/shared/darwin/ires.so
CHANGED
Binary file
|
data/shared/linux/ires.so
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ires
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- enta0701
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-10-
|
11
|
+
date: 2017-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|
@@ -92,6 +92,7 @@ files:
|
|
92
92
|
- Rakefile
|
93
93
|
- ext/Gopkg.lock
|
94
94
|
- ext/Gopkg.toml
|
95
|
+
- ext/ires/ires.go
|
95
96
|
- ext/main.go
|
96
97
|
- ext/operate/image.go
|
97
98
|
- ext/util/uri/uri.go
|
@@ -116,6 +117,11 @@ files:
|
|
116
117
|
- ext/vendor/github.com/oliamb/cutter/cutter_test.go
|
117
118
|
- ext/vendor/github.com/oliamb/cutter/example_test.go
|
118
119
|
- ext/vendor/github.com/oliamb/cutter/fixtures/gopher.jpg
|
120
|
+
- ext/vendor/github.com/satori/go.uuid/LICENSE
|
121
|
+
- ext/vendor/github.com/satori/go.uuid/README.md
|
122
|
+
- ext/vendor/github.com/satori/go.uuid/benchmarks_test.go
|
123
|
+
- ext/vendor/github.com/satori/go.uuid/uuid.go
|
124
|
+
- ext/vendor/github.com/satori/go.uuid/uuid_test.go
|
119
125
|
- lib/ires.rb
|
120
126
|
- lib/ires/service.rb
|
121
127
|
- lib/ires/util.rb
|