plc_access 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.
metadata ADDED
@@ -0,0 +1,94 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: plc_access
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Katsuyoshi Ito
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-10-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: serialport
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.3.1
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.3'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.3.1
33
+ description: The PlcAccess communicates with PLCs. You can get values or states of
34
+ PLC devices.
35
+ email:
36
+ - kito@itosoft.com
37
+ executables: []
38
+ extensions: []
39
+ extra_rdoc_files: []
40
+ files:
41
+ - ".gitignore"
42
+ - ".travis.yml"
43
+ - CODE_OF_CONDUCT.md
44
+ - Gemfile
45
+ - Gemfile.lock
46
+ - LICENSE.txt
47
+ - README.md
48
+ - Rakefile
49
+ - bin/console
50
+ - bin/setup
51
+ - lib/plc_access.rb
52
+ - lib/plc_access/protocol/keyence/keyence.rb
53
+ - lib/plc_access/protocol/keyence/kv_device.rb
54
+ - lib/plc_access/protocol/keyence/kv_protocol.rb
55
+ - lib/plc_access/protocol/mitsubishi/fx_device.rb
56
+ - lib/plc_access/protocol/mitsubishi/fx_protocol.rb
57
+ - lib/plc_access/protocol/mitsubishi/mc_protocol.rb
58
+ - lib/plc_access/protocol/mitsubishi/mitsubishi.rb
59
+ - lib/plc_access/protocol/mitsubishi/qdevice.rb
60
+ - lib/plc_access/protocol/omron/c_mode_protocol.rb
61
+ - lib/plc_access/protocol/omron/fins_tcp_protocol.rb
62
+ - lib/plc_access/protocol/omron/omron.rb
63
+ - lib/plc_access/protocol/omron/omron_device.rb
64
+ - lib/plc_access/protocol/plc_device.rb
65
+ - lib/plc_access/protocol/protocol.rb
66
+ - lib/plc_access/version.rb
67
+ - plc_access.gemspec
68
+ homepage: https://github.com/ito-soft-design/plc_access
69
+ licenses:
70
+ - MIT
71
+ metadata:
72
+ homepage_uri: https://github.com/ito-soft-design/plc_access
73
+ source_code_uri: https://github.com/ito-soft-design/plc_access
74
+ changelog_uri: https://github.com/ito-soft-design/plc_access/CHANGES.md
75
+ post_install_message:
76
+ rdoc_options: []
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: 2.3.0
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ requirements: []
90
+ rubygems_version: 3.3.26
91
+ signing_key:
92
+ specification_version: 4
93
+ summary: The PlcAccess communicates with PLCs.
94
+ test_files: []