opentrons 0.0.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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/opentrons.rb +6 -0
  3. metadata +46 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 72ee9e02b9b11036956b7e07dcba783f7adf62c4
4
+ data.tar.gz: 96a6f47888287fa4d10b82931d522e2d7c493cf2
5
+ SHA512:
6
+ metadata.gz: b4ba4c74d0d7070413f26df1dff85a1ca863f0f0de0fb0823e2001275f23b4caa69bc5cf85a8a04c8620de436edb6554c0829a00fc2e47c6c429cacaf7901748
7
+ data.tar.gz: a3988a940398ab4a238f4b674f83bf901aac89099d0bea043df67c2b2c3b1e8ed4d7a3f75fee30a05b8386c2899ba682dfb9e61a5771e202c7f50ab1f23dac7b
data/lib/opentrons.rb ADDED
@@ -0,0 +1,6 @@
1
+ require 'json'
2
+
3
+ require_relative 'opentrons/otprotocol'
4
+ require_relative 'opentrons/commands'
5
+ require_relative 'opentrons/instruments'
6
+ require_relative 'opentrons/labware'
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: opentrons
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Nick Emery
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-08-26 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Provides a variety of functionalities for writing JSON OpenTrons protocols
14
+ in Ruby. This gem is not a product of OpenTrons.
15
+ email: emernic@bu.edu
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/opentrons.rb
21
+ homepage: https://github.com/emernic/opentrons_gem
22
+ licenses:
23
+ - LICENSE.txt
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubyforge_project:
41
+ rubygems_version: 2.4.5.2
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Provides a variety of functionalities for writing JSON OpenTrons protocols
45
+ in Ruby. This gem is not a product of OpenTrons.
46
+ test_files: []