dev-tools 0.1.2 → 0.1.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.
- checksums.yaml +4 -4
- data/README.md +20 -19
- data/devtools.gemspec +2 -3
- data/lib/devtools/version.rb +1 -1
- metadata +5 -18
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3acd7f2b146f31be8660d06af75b8436530b41b4
|
|
4
|
+
data.tar.gz: 72ac66f586074c6600cbea66ce409919eff98002
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d1f761403295697ce570a10eec0c9fcd6669815c10b9d22ec7bd12390b4be007169ee9ef72e21c306329d64ae160e726cd87dfa205f024046f02b768ca9d83d3
|
|
7
|
+
data.tar.gz: bd42fb07807b1e1156dbfa4cc6cc18a88447d6de3c9de49db98eec7b95efc964bd9c2241ed1ccc68516569109aa63a887072c1c1f05b87eb82ab77cb0452b911
|
data/README.md
CHANGED
|
@@ -1,41 +1,42 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Dev-tools [](https://badge.fury.io/rb/dev-tools) [](https://www.paypal.me/mukeshsolanki)
|
|
2
2
|
|
|
3
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/devtools`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
3
|
|
|
5
|
-
|
|
4
|
+
A gem that removes the hassle of setting up your machine every time you change to a new development device. DevTools is simple and easy to use it lets you setup your development environment with easy.
|
|
6
5
|
|
|
7
6
|
## Installation
|
|
8
7
|
|
|
9
|
-
|
|
8
|
+
Open Terminal and execute the following command
|
|
10
9
|
|
|
11
10
|
```ruby
|
|
12
|
-
gem
|
|
11
|
+
gem install dev-tools
|
|
13
12
|
```
|
|
14
13
|
|
|
15
|
-
And then execute:
|
|
16
|
-
|
|
17
|
-
$ bundle
|
|
18
|
-
|
|
19
|
-
Or install it yourself as:
|
|
20
|
-
|
|
21
|
-
$ gem install devtools
|
|
22
|
-
|
|
23
14
|
## Usage
|
|
24
15
|
|
|
25
|
-
|
|
16
|
+
Its pretty simple how this works. Fire up terminal and execute `dev-tools` with one of the following options.
|
|
26
17
|
|
|
27
|
-
|
|
18
|
+
```shell
|
|
19
|
+
Usage: dev-tools [options]
|
|
20
|
+
-i, --install APP_NAME The flag used to indicate the tool that needs to be installed.
|
|
21
|
+
-e, --environment ENVIRONMENT Path to the file that contains the information about the development environment to setup.
|
|
22
|
+
-l, --list Displays a list of apps that can be installed.
|
|
23
|
+
```
|
|
28
24
|
|
|
29
|
-
|
|
25
|
+
## Sample environment file
|
|
30
26
|
|
|
31
|
-
|
|
27
|
+
```yml
|
|
28
|
+
Apps:
|
|
29
|
+
vlc
|
|
30
|
+
sublime
|
|
31
|
+
Environment:
|
|
32
|
+
ruby-on-rails
|
|
33
|
+
```
|
|
32
34
|
|
|
33
35
|
## Contributing
|
|
34
36
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
37
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/mukeshsolanki/dev-tools. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
36
38
|
|
|
37
39
|
|
|
38
40
|
## License
|
|
39
41
|
|
|
40
42
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
41
|
-
|
data/devtools.gemspec
CHANGED
|
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["themukeshsolanki@gmail.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = "A gem that removes the hassel of setting up your machine evertime you change to a new development device"
|
|
13
|
-
spec.description = "DevTools is simple and easy to use it lets you setup your development enviroment with easy."
|
|
14
|
-
spec.homepage = "https://github.com/mukeshsolanki/
|
|
13
|
+
spec.description = "A gem that removes the hassel of setting up your machine evertime you change to a new development device. DevTools is simple and easy to use it lets you setup your development enviroment with easy. Useage information at https://github.com/mukeshsolanki/dev-tools"
|
|
14
|
+
spec.homepage = "https://github.com/mukeshsolanki/dev-tools"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
@@ -29,5 +29,4 @@ Gem::Specification.new do |spec|
|
|
|
29
29
|
|
|
30
30
|
spec.add_development_dependency "bundler", "~> 1.12"
|
|
31
31
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
32
|
-
spec.add_development_dependency "minitest", "~> 5.5.1"
|
|
33
32
|
end
|
data/lib/devtools/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dev-tools
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mukesh
|
|
@@ -38,22 +38,9 @@ dependencies:
|
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '10.0'
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
requirements:
|
|
45
|
-
- - "~>"
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
version: 5.5.1
|
|
48
|
-
type: :development
|
|
49
|
-
prerelease: false
|
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
-
requirements:
|
|
52
|
-
- - "~>"
|
|
53
|
-
- !ruby/object:Gem::Version
|
|
54
|
-
version: 5.5.1
|
|
55
|
-
description: DevTools is simple and easy to use it lets you setup your development
|
|
56
|
-
enviroment with easy.
|
|
41
|
+
description: A gem that removes the hassel of setting up your machine evertime you
|
|
42
|
+
change to a new development device. DevTools is simple and easy to use it lets you
|
|
43
|
+
setup your development enviroment with easy. Useage information at https://github.com/mukeshsolanki/dev-tools
|
|
57
44
|
email:
|
|
58
45
|
- themukeshsolanki@gmail.com
|
|
59
46
|
executables:
|
|
@@ -71,7 +58,7 @@ files:
|
|
|
71
58
|
- devtools.gemspec
|
|
72
59
|
- lib/devtools.rb
|
|
73
60
|
- lib/devtools/version.rb
|
|
74
|
-
homepage: https://github.com/mukeshsolanki/
|
|
61
|
+
homepage: https://github.com/mukeshsolanki/dev-tools
|
|
75
62
|
licenses:
|
|
76
63
|
- MIT
|
|
77
64
|
metadata:
|