dev_dock 0.1.0 → 0.1.1
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/.gitignore +2 -1
- data/Gemfile.lock +1 -1
- data/README.md +14 -19
- data/bin/dev_dock +2 -5
- data/help.txt +10 -0
- data/lib/dev_dock/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7f457c1a24b2f1d8ae0d9545eff97f60123ca6d4
|
|
4
|
+
data.tar.gz: 91c64ee4122a9682fd38bcf2121222c1ceb1d09d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f867c192a59fe4bc827b3505e6e4c4f5e289c8b01110ef1171ec9551a77afb2bfeafa0cdf17bc8e179f7b5a5e2d0f30815cb116b8e055bd89882cf8ddabc4e0d
|
|
7
|
+
data.tar.gz: d5d7d44adb462f224a5c22781b451aade48d94bf1470a38c58d4b9890e52444e6d5ba55cda45cfc291d7d7fd6dae5d25972d7659eb8ec749932cbd9e039965a1
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,39 +1,34 @@
|
|
|
1
1
|
# DevDock
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A command utility to manage containerized development environments.
|
|
4
4
|
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
6
5
|
|
|
7
6
|
## Installation
|
|
8
7
|
|
|
9
|
-
Add this line to your application's Gemfile:
|
|
10
|
-
|
|
11
|
-
```ruby
|
|
12
|
-
gem 'dev_dock'
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
And then execute:
|
|
16
|
-
|
|
17
|
-
$ bundle
|
|
18
|
-
|
|
19
|
-
Or install it yourself as:
|
|
20
|
-
|
|
21
8
|
$ gem install dev_dock
|
|
22
9
|
|
|
23
10
|
## Usage
|
|
24
11
|
|
|
25
|
-
|
|
12
|
+
Run `dev_dock --help` for full instructions.
|
|
26
13
|
|
|
27
14
|
## Development
|
|
28
15
|
|
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
16
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
17
|
+
`rake spec` to run the tests. You can also run `bin/console` for an interactive
|
|
18
|
+
prompt that will allow you to experiment.
|
|
30
19
|
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
20
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
21
|
+
release a new version, update the version number in `version.rb`, and then run
|
|
22
|
+
`bundle exec rake release`, which will create a git tag for the version, push
|
|
23
|
+
git commits and tags, and push the `.gem` file to
|
|
24
|
+
[rubygems.org](https://rubygems.org).
|
|
32
25
|
|
|
33
26
|
## Contributing
|
|
34
27
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at
|
|
28
|
+
Bug reports and pull requests are welcome on GitHub at
|
|
29
|
+
https://github.com/[USERNAME]/dev_dock.
|
|
36
30
|
|
|
37
31
|
## License
|
|
38
32
|
|
|
39
|
-
The gem is available as open source under the terms of the
|
|
33
|
+
The gem is available as open source under the terms of the
|
|
34
|
+
[MIT License](https://opensource.org/licenses/MIT).
|
data/bin/dev_dock
CHANGED
data/help.txt
ADDED
data/lib/dev_dock/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dev_dock
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- AGhost-7
|
|
@@ -73,6 +73,7 @@ files:
|
|
|
73
73
|
- bin/dev_dock
|
|
74
74
|
- bin/setup
|
|
75
75
|
- dev_dock.gemspec
|
|
76
|
+
- help.txt
|
|
76
77
|
- lib/dev_dock.rb
|
|
77
78
|
- lib/dev_dock/container.rb
|
|
78
79
|
- lib/dev_dock/image.rb
|