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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1ae32a17538f899ba4d731a8fd36f71d60708f6b
4
- data.tar.gz: 46a3e3deb232bc8693463a46b8ae0658e1fdb7af
3
+ metadata.gz: 3acd7f2b146f31be8660d06af75b8436530b41b4
4
+ data.tar.gz: 72ac66f586074c6600cbea66ce409919eff98002
5
5
  SHA512:
6
- metadata.gz: de781178ffef03392ffddc5ebebdde382ca6af51a0b75d4525caaba885f0775ce5a6e4bfded92044f600eb6af46809a43f80db6a2114a314b60444e3f99f91de
7
- data.tar.gz: 5102ca397e997d77412b7fa403fd07d037e60d4361d393d352aa8d53325ee13c55a3db70bfe9ca3565bb3d6ff8cdf9e1a9396a7d03545df15a0798397b45d7e1
6
+ metadata.gz: d1f761403295697ce570a10eec0c9fcd6669815c10b9d22ec7bd12390b4be007169ee9ef72e21c306329d64ae160e726cd87dfa205f024046f02b768ca9d83d3
7
+ data.tar.gz: bd42fb07807b1e1156dbfa4cc6cc18a88447d6de3c9de49db98eec7b95efc964bd9c2241ed1ccc68516569109aa63a887072c1c1f05b87eb82ab77cb0452b911
data/README.md CHANGED
@@ -1,41 +1,42 @@
1
- # Devtools
1
+ # Dev-tools [![Gem Version](https://badge.fury.io/rb/dev-tools.svg)](https://badge.fury.io/rb/dev-tools) [![PayPal](https://img.shields.io/badge/paypal-donate-yellow.svg)](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
- TODO: Delete this and the text above, and describe your gem
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
- Add this line to your application's Gemfile:
8
+ Open Terminal and execute the following command
10
9
 
11
10
  ```ruby
12
- gem 'devtools'
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
- TODO: Write usage instructions here
16
+ Its pretty simple how this works. Fire up terminal and execute `dev-tools` with one of the following options.
26
17
 
27
- ## Development
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
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
25
+ ## Sample environment file
30
26
 
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
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/[USERNAME]/devtools. 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.
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/devtools"
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
@@ -1,3 +1,3 @@
1
1
  module Devtools
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
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.2
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
- - !ruby/object:Gem::Dependency
42
- name: minitest
43
- requirement: !ruby/object:Gem::Requirement
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/devtools
61
+ homepage: https://github.com/mukeshsolanki/dev-tools
75
62
  licenses:
76
63
  - MIT
77
64
  metadata: