daytona 0.160.0 → 0.161.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +190 -0
  3. data/README.md +136 -65
  4. data/lib/daytona/sdk/version.rb +1 -1
  5. metadata +6 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b1c81baae6c320e9b3da66ad5b51bc8def05725659f70646942e5b012002e17a
4
- data.tar.gz: 48a7871cff21110a9f2b29d34eff5e3f9b2ac77e5c160f5b22a09d226f4aeffe
3
+ metadata.gz: 57ce6010f76c0fba0fb31863fcc3c59dcfdd79a2e76ad6da3d42c15d862639cd
4
+ data.tar.gz: a1de147b7e41d679c476a63a764a72c916fb615e84aee0964b426cdbb7f8b971
5
5
  SHA512:
6
- metadata.gz: 2a37ff636cecdcae8d4f5e709e96459b659aa72db66ed3887b61aa9fbf2ed928e0aa2c79dcf9fd4fc179d65c2c8e9bd857036a2a0c0bcaea00b03389da71ab26
7
- data.tar.gz: b81f12f8f1d71e30aa45bc855720930fd192b74ec4c8a44d52c29ddd232d776410fa9146a439f47337604c62fd2ec825cacbac19cc2f7aede3e019cda6f2e29b
6
+ metadata.gz: 4b4a1fc5c9e2c3467158b4388bc27031b3e173c2e1ef613b11c1e2c1038e76fdcdb03f0cca184b357fe4c37ce080cdf2ab34f9bfabdc94eff93cc29242161947
7
+ data.tar.gz: c755eca08259c903c9296124438fd1e244c2101b7f9317d1606e100609a80a8ab95625c24d1e35154c338bef803ca559223960a3c38f968365b5e9d20e48ce77
data/LICENSE ADDED
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2025 Daytona
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.
data/README.md CHANGED
@@ -1,117 +1,188 @@
1
1
  # Daytona Ruby SDK
2
2
 
3
- The official Ruby SDK for [Daytona](https://daytona.io) - a platform for secure, isolated sandbox environments.
3
+ The official Ruby SDK for [Daytona](https://daytona.io), an open-source, secure and elastic infrastructure for running AI-generated code. Daytona provides full composable computers — [sandboxes](https://www.daytona.io/docs/en/sandboxes/) — that you can manage programmatically using the Daytona SDK.
4
+
5
+ The SDK provides an interface for sandbox management, file system operations, Git operations, language server protocol support, process and code execution, and computer use. For more information, see the [documentation](https://www.daytona.io/docs/en/ruby-sdk/).
4
6
 
5
7
  ## Installation
6
8
 
7
- Add this line to your application's Gemfile:
9
+ Install the package using **gem**:
8
10
 
9
- ```ruby
10
- gem 'daytona'
11
+ ```bash
12
+ gem install daytona
11
13
  ```
12
14
 
13
- And then execute:
15
+ ## Get API key
14
16
 
15
- ```bash
16
- bundle install
17
- ```
17
+ Generate an API key from the [Daytona Dashboard ↗](https://app.daytona.io/dashboard/keys) to authenticate SDK requests and access Daytona services. For more information, see the [API keys](https://www.daytona.io/docs/en/api-keys/) documentation.
18
18
 
19
- Or install it yourself as:
19
+ ## Configuration
20
20
 
21
- ```bash
22
- gem install daytona
23
- ```
21
+ Configure the SDK using [environment variables](https://www.daytona.io/docs/en/configuration/#environment-variables) or by passing a [configuration object](https://www.daytona.io/docs/en/configuration/#configuration-in-code):
24
22
 
25
- ## Quick Start
23
+ - `DAYTONA_API_KEY`: Your Daytona [API key](https://www.daytona.io/docs/en/api-keys/)
24
+ - `DAYTONA_API_URL`: The Daytona [API URL](https://www.daytona.io/docs/en/tools/api/)
25
+ - `DAYTONA_TARGET`: Your target [region](https://www.daytona.io/docs/en/regions/) environment (e.g. `us`, `eu`)
26
26
 
27
27
  ```ruby
28
28
  require 'daytona'
29
29
 
30
- # Initialize the client (uses DAYTONA_API_KEY environment variable)
30
+ # Initialize with environment variables
31
31
  daytona = Daytona::Daytona.new
32
32
 
33
- # Or with explicit configuration
33
+ # Initialize with configuration object
34
34
  config = Daytona::Config.new(
35
- api_key: 'your-api-key',
35
+ api_key: 'YOUR_API_KEY',
36
+ api_url: 'YOUR_API_URL',
36
37
  target: 'us'
37
38
  )
38
- daytona = Daytona::Daytona.new(config)
39
+ ```
40
+
41
+ ## Create a sandbox
42
+
43
+ Create a sandbox to run your code securely in an isolated environment.
44
+
45
+ ```ruby
46
+ require 'daytona'
39
47
 
40
- # Create a sandbox
48
+ config = Daytona::Config.new(api_key: 'YOUR_API_KEY')
49
+ daytona = Daytona::Daytona.new(config)
41
50
  sandbox = daytona.create
51
+ ```
42
52
 
43
- # Execute code
44
- response = sandbox.process.code_run(code: 'print("Hello, World!")')
45
- puts response.result
53
+ ## Examples and guides
54
+
55
+ Daytona provides [examples](https://www.daytona.io/docs/en/getting-started/#examples) and [guides](https://www.daytona.io/docs/en/guides/) for common sandbox operations, best practices, and a wide range of topics, from basic usage to advanced topics, showcasing various types of integrations between Daytona and other tools.
56
+
57
+ ### Create a sandbox with custom resources
58
+
59
+ Create a sandbox with [custom resources](https://www.daytona.io/docs/en/sandboxes/#resources) (CPU, memory, disk).
46
60
 
47
- # Clean up
48
- daytona.delete(sandbox)
61
+ ```ruby
62
+ require 'daytona'
63
+
64
+ daytona = Daytona::Daytona.new
65
+ sandbox = daytona.create(
66
+ Daytona::CreateSandboxFromImageParams.new(
67
+ image: Daytona::Image.debian_slim('3.12'),
68
+ resources: Daytona::Resources.new(cpu: 2, memory: 4, disk: 8)
69
+ )
70
+ )
49
71
  ```
50
72
 
51
- ## Configuration
73
+ ### Create an ephemeral sandbox
74
+
75
+ Create an [ephemeral sandbox](https://www.daytona.io/docs/en/sandboxes/#ephemeral-sandboxes) that is automatically deleted when stopped.
52
76
 
53
- The SDK can be configured using environment variables:
77
+ ```ruby
78
+ require 'daytona'
54
79
 
55
- | Variable | Description |
56
- |----------|-------------|
57
- | `DAYTONA_API_KEY` | API key for authentication |
58
- | `DAYTONA_API_URL` | URL of the Daytona API (defaults to `https://app.daytona.io/api`) |
59
- | `DAYTONA_TARGET` | Target location for Sandboxes |
80
+ daytona = Daytona::Daytona.new
81
+ sandbox = daytona.create(
82
+ Daytona::CreateSandboxFromSnapshotParams.new(ephemeral: true, auto_stop_interval: 5)
83
+ )
84
+ ```
60
85
 
61
- ## Documentation
86
+ ### Create a sandbox from a snapshot
62
87
 
63
- - [Ruby SDK Reference](https://www.daytona.io/docs/en/ruby-sdk)
64
- - [Getting Started Guide](https://www.daytona.io/docs/en/getting-started)
65
- - [API Documentation](https://www.daytona.io/docs/en/tools/api)
88
+ Create a sandbox from a [snapshot](https://www.daytona.io/docs/en/snapshots/).
66
89
 
67
- ## Examples
90
+ ```ruby
91
+ require 'daytona'
68
92
 
69
- See the [examples/ruby](https://github.com/daytonaio/daytona/tree/main/examples/ruby) directory for more usage examples:
93
+ daytona = Daytona::Daytona.new
94
+ sandbox = daytona.create(
95
+ Daytona::CreateSandboxFromSnapshotParams.new(
96
+ snapshot: 'my-snapshot-name'
97
+ )
98
+ )
99
+ ```
70
100
 
71
- - [Lifecycle management](https://github.com/daytonaio/daytona/tree/main/examples/ruby/lifecycle)
72
- - [File operations](https://github.com/daytonaio/daytona/tree/main/examples/ruby/file-operations)
73
- - [Git operations](https://github.com/daytonaio/daytona/tree/main/examples/ruby/git-lsp)
74
- - [Process execution](https://github.com/daytonaio/daytona/tree/main/examples/ruby/exec-command)
75
- - [PTY sessions](https://github.com/daytonaio/daytona/tree/main/examples/ruby/pty)
76
- - [Volumes](https://github.com/daytonaio/daytona/tree/main/examples/ruby/volumes)
101
+ ### Execute commands
77
102
 
78
- ## Development
103
+ Execute commands in the sandbox.
79
104
 
80
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt.
105
+ ```ruby
106
+ # Execute any shell command
107
+ response = sandbox.process.exec(command: 'ls -la')
108
+ puts response.result
81
109
 
82
- ### Publishing a New Version
110
+ # Setting a working directory and a timeout
111
+ response = sandbox.process.exec(command: 'sleep 3', cwd: 'workspace/src', timeout: 5)
112
+ puts response.result
113
+
114
+ # Passing environment variables
115
+ response = sandbox.process.exec(
116
+ command: 'echo $CUSTOM_SECRET',
117
+ env: { 'CUSTOM_SECRET' => 'DAYTONA' }
118
+ )
119
+ puts response.result
120
+ ```
83
121
 
84
- From the repository root:
122
+ ### File operations
85
123
 
86
- ```bash
87
- # Set your RubyGems API key and version
88
- export RUBYGEMS_API_KEY="your-rubygems-api-key"
89
- export RUBYGEMS_PKG_VERSION="X.Y.Z" # pre-release format example: "X.Y.Z.alpha.1"
124
+ Upload, download, and search files in the sandbox.
90
125
 
91
- # Publish (builds and publishes all Ruby gems)
92
- yarn nx publish sdk-ruby
126
+ ```ruby
127
+ # Upload a text file from string content
128
+ content = "Hello, World!"
129
+ sandbox.fs.upload_file(content, "tmp/hello.txt")
130
+
131
+ # Download and get file content
132
+ content = sandbox.fs.download_file("workspace/data/file.txt")
133
+ puts content
134
+
135
+ # Get file metadata
136
+ info = sandbox.fs.get_file_info("workspace/data/file.txt")
137
+ puts "Size: #{info.size} bytes"
138
+ puts "Modified: #{info.mod_time}"
139
+ puts "Mode: #{info.mode}"
93
140
  ```
94
141
 
95
- This will automatically:
142
+ ### Git operations
96
143
 
97
- - Set the version for all Ruby gems (api-client, toolbox-api-client, sdk)
98
- - Build all gems in the correct dependency order
99
- - Publish to RubyGems
144
+ Clone, list branches, and add files to the sandbox.
100
145
 
101
- For more details, see [PUBLISHING.md](../../PUBLISHING.md).
146
+ ```ruby
147
+ # Basic clone
148
+ sandbox.git.clone(
149
+ url: 'https://github.com/daytonaio/daytona.git',
150
+ path: 'workspace/repo'
151
+ )
102
152
 
103
- ## Requirements
153
+ # List branches
154
+ response = sandbox.git.branches('workspace/repo')
155
+ puts "Branches: #{response.branches}"
104
156
 
105
- - Ruby >= 3.2.0
157
+ # Add files
158
+ sandbox.git.add('workspace/repo', ['README.md'])
159
+ ```
106
160
 
107
- ## Contributing
161
+ ### Language server protocol
108
162
 
109
- Bug reports and pull requests are welcome on GitHub at https://github.com/daytonaio/daytona.
163
+ Create and start a language server to get code completions, document symbols, and more.
110
164
 
111
- ## Code of Conduct
165
+ ```ruby
166
+ # Create a language server
167
+ lsp_server = sandbox.create_lsp_server(
168
+ language_id: Daytona::LspServer::Language::PYTHON,
169
+ path_to_project: 'workspace/project'
170
+ )
171
+ lsp_server.start
112
172
 
113
- Everyone interacting in the Daytona SDK project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/daytonaio/daytona/blob/main/CODE_OF_CONDUCT.md).
173
+ # Notify server that a file is open
174
+ lsp_server.did_open('workspace/project/main.py')
114
175
 
115
- ## License
176
+ # Get document symbols
177
+ symbols = lsp_server.document_symbols('workspace/project/main.py')
178
+
179
+ # Get completions
180
+ completions = lsp_server.completions(
181
+ path: 'workspace/project/main.py',
182
+ position: Daytona::LspServer::Position.new(line: 10, character: 15)
183
+ )
184
+ ```
185
+
186
+ ## Contributing
116
187
 
117
- See [LICENSE](https://github.com/daytonaio/daytona/blob/main/LICENSE) for details.
188
+ Daytona is Open Source under the [Apache License 2.0](https://github.com/daytonaio/daytona/blob/main/libs/sdk-ruby/LICENSE), and is the [copyright of its contributors](https://github.com/daytonaio/daytona/blob/main/NOTICE). If you would like to contribute to the software, read the Developer Certificate of Origin Version 1.1 (https://developercertificate.org/). Afterwards, navigate to the [contributing guide](/CONTRIBUTING.md) to get started.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Daytona
4
4
  module Sdk
5
- VERSION = '0.160.0'
5
+ VERSION = '0.161.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: daytona
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.160.0
4
+ version: 0.161.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daytona Platforms Inc.
@@ -85,28 +85,28 @@ dependencies:
85
85
  requirements:
86
86
  - - '='
87
87
  - !ruby/object:Gem::Version
88
- version: 0.160.0
88
+ version: 0.161.0
89
89
  type: :runtime
90
90
  prerelease: false
91
91
  version_requirements: !ruby/object:Gem::Requirement
92
92
  requirements:
93
93
  - - '='
94
94
  - !ruby/object:Gem::Version
95
- version: 0.160.0
95
+ version: 0.161.0
96
96
  - !ruby/object:Gem::Dependency
97
97
  name: daytona_toolbox_api_client
98
98
  requirement: !ruby/object:Gem::Requirement
99
99
  requirements:
100
100
  - - '='
101
101
  - !ruby/object:Gem::Version
102
- version: 0.160.0
102
+ version: 0.161.0
103
103
  type: :runtime
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - '='
108
108
  - !ruby/object:Gem::Version
109
- version: 0.160.0
109
+ version: 0.161.0
110
110
  - !ruby/object:Gem::Dependency
111
111
  name: dotenv
112
112
  requirement: !ruby/object:Gem::Requirement
@@ -174,6 +174,7 @@ files:
174
174
  - ".rubocop.yml"
175
175
  - ".ruby-version"
176
176
  - CODE_OF_CONDUCT.md
177
+ - LICENSE
177
178
  - README.md
178
179
  - Rakefile
179
180
  - lib/daytona.rb