da_funk 0.16.0 → 0.17.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/Gemfile.lock +3 -3
- data/README_GUIDE.md +52 -29
- data/RELEASE_NOTES.md +4 -0
- data/lib/da_funk/version.rb +1 -1
- data/out/da_funk.mrb +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8a3408f57ebc99bc5f68488e2fd78b1f4190a5f
|
4
|
+
data.tar.gz: c27ccfa111221944a5cdd1951c9c1180add6f760
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e58b4c7af0bffc7d02bbac44615f8117e99478adb4b70495bb7311b83905d2d2a41c2b547f0a446a3409fe98bd68a3e25d1579a0f65fee310ae5796b9abdcd81
|
7
|
+
data.tar.gz: 015bb65dab71061a7d8b27b047bb638560a38ff435c640a7b30e6d54032617a193b9ad6d98090c10290d83d76491274b8d5939e5544294986583528b9e86f3e1
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
da_funk (0.
|
4
|
+
da_funk (0.17.0)
|
5
5
|
archive-zip (~> 0.5)
|
6
6
|
bundler (~> 1.7)
|
7
7
|
cloudwalk_handshake (~> 0.6)
|
@@ -12,10 +12,10 @@ PATH
|
|
12
12
|
GEM
|
13
13
|
remote: https://rubygems.org/
|
14
14
|
specs:
|
15
|
-
archive-zip (0.
|
15
|
+
archive-zip (0.10.0)
|
16
16
|
io-like (~> 0.3.0)
|
17
17
|
cloudwalk_handshake (0.10.0)
|
18
|
-
funky-emv (0.
|
18
|
+
funky-emv (0.9.1)
|
19
19
|
funky-tlv (~> 0.2)
|
20
20
|
funky-simplehttp (0.4.4)
|
21
21
|
funky-tlv (0.2.3)
|
data/README_GUIDE.md
CHANGED
@@ -1,52 +1,75 @@
|
|
1
|
-
##
|
1
|
+
## DaFunk Framework
|
2
2
|
|
3
|
-
|
3
|
+
DaFunk is a entire new framework for embedded applications running on top of MRuby runtime, initially design for Payment solutions.
|
4
|
+
|
5
|
+
https://github.com/cloudwalkio/around_the_world/blob/master/imgs/apps.jpg
|
4
6
|
|
5
7
|
|
6
8
|
## Ruby Compatiblity
|
9
|
+
|
7
10
|
Support for Ruby 1.9.3 and ISO/IEC 30170:2012, where specifies the syntax and semantics of the computer programming language Ruby, and the requirements for conforming Ruby processors, strictly conforming Ruby programs.
|
8
11
|
|
9
12
|
## Devices
|
10
|
-
#### D200
|
11
|
-
Alpha support, System, Network, IO, Sockets, Transction::Iso, Transaction::Download and Magnectic Card.
|
12
13
|
|
13
|
-
####
|
14
|
-
|
14
|
+
#### PAX POS Device and Prolin OS
|
15
|
+
|
16
|
+
Payment solutions that suport complete EMV transaction, check [here](https://docs.cloudwalk.io/pt-BR/framework/pax-d200).
|
17
|
+
|
18
|
+
#### Gertec POS
|
19
|
+
|
20
|
+
Payment solutions that suport complete EMV transaction, check [here](https://docs.cloudwalk.io/pt-BR/framework/gertec).
|
15
21
|
|
16
|
-
####
|
17
|
-
|
22
|
+
#### Implement the runtime in your OS
|
23
|
+
|
24
|
+
The runtime is open source and available for study, change, and distribution, check [here](https://github.com/cloudwalkio/around_the_world).
|
18
25
|
|
19
|
-
#### Ingenico
|
20
|
-
Comming soon.
|
21
26
|
|
22
27
|
## DaFunk API
|
23
28
|
|
24
|
-
|
29
|
+

|
30
|
+
|
31
|
+
## How do I use DaFunk?
|
32
|
+
|
33
|
+
### Embedded Projects
|
34
|
+
|
35
|
+
DaFunk is a gem to be used in MRuby environment, to provide the environment we created a CLI that is able to create, compile, run and test DaFunk Apps. You can check [here](http://github.com/da-funk/cloudwalk)
|
25
36
|
|
26
|
-
|
37
|
+
Project creation flow in Ruby environment:
|
27
38
|
|
28
|
-
|
39
|
+
```
|
40
|
+
cloudwalk new project
|
41
|
+
cd project
|
42
|
+
bundle install
|
43
|
+
bundle exec rake test:unit
|
44
|
+
```
|
29
45
|
|
30
|
-
|
46
|
+
## Guides/Samples
|
31
47
|
|
32
|
-
|
48
|
+
Check test samples [here](Guide.html).
|
33
49
|
|
34
|
-
#### Upload Binary
|
35
50
|
|
36
|
-
|
51
|
+
## License
|
37
52
|
|
38
|
-
|
53
|
+
```
|
54
|
+
The MIT License (MIT)
|
39
55
|
|
40
|
-
|
56
|
+
Copyright (c) 2016 CloudWalk, Inc.
|
41
57
|
|
42
|
-
|
58
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
59
|
+
of this software and associated documentation files (the "Software"), to deal
|
60
|
+
in the Software without restriction, including without limitation the rights
|
61
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
62
|
+
copies of the Software, and to permit persons to whom the Software is
|
63
|
+
furnished to do so, subject to the following conditions:
|
64
|
+
###
|
65
|
+
The above copyright notice and this permission notice shall be included in all
|
66
|
+
copies or substantial portions of the Software.
|
43
67
|
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
9. [Download and parse parameter file](file.sample_transaction_download_parameter_file.html)
|
68
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
69
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
70
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
71
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
72
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
73
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
74
|
+
SOFTWARE.
|
75
|
+
```
|
data/RELEASE_NOTES.md
CHANGED
data/lib/da_funk/version.rb
CHANGED
data/out/da_funk.mrb
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: da_funk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.17.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thiago Scalone
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-09-
|
11
|
+
date: 2017-09-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|