this_ip 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1de081be1649f5c53c8fd5d43be82df9365d22f8
4
- data.tar.gz: 16d7d70ed5ce6c6d0978d93cc97b989739ea9bf3
3
+ metadata.gz: c25dd808363befddcdfb5e09cde03fdca74846a0
4
+ data.tar.gz: cb3d645887e66a05afe8c0d28d2d02bb2d61d085
5
5
  SHA512:
6
- metadata.gz: 18cd28a9a760152b3d58b7d31cb3550794df54b6605957f545d2e0a4a0d4267a7524f44533067cdd1415605ea0a7e8291c134d08b058d4c2e0bfe6d14d2cbc00
7
- data.tar.gz: 035e5fb01e17681257b5a579460a2bd9a0fad54d09c0457755d83d37794f96b6b7a720236c03757b7434dddd30e29c049f797ca61537fe3019c85cd61a19db01
6
+ metadata.gz: 2d8074a917156a1169de3fa93f101d8c082dd22e78e5eccecd491cc43d0bded85d8117a7306cd98f15d4b64c4c2853570bf5639fc12149bbcaa161d3935a562a
7
+ data.tar.gz: 60b8fecfdbadb362dc8d974bfc4f318c2525f7ddccba13f3d132d94cc41a54923e5f8b660146b635278506367b2e180db55a6262ab5ae6c12ea23dc1aa752344
data/README.md CHANGED
@@ -1,7 +1,8 @@
1
- # this_ip
1
+ # this_ip [![Gem Version](https://badge.fury.io/rb/this_ip.svg)](http://badge.fury.io/rb/this_ip)
2
2
 
3
3
  Auth and deauth your current IP address.
4
4
 
5
+
5
6
  ## Installation
6
7
 
7
8
  $ gem install this_ip
@@ -28,7 +29,7 @@ export AWS_REGION='...'
28
29
 
29
30
  ## Contributing
30
31
 
31
- 1. Fork it ( https://github.com/[my-github-username]/this_ip/fork )
32
+ 1. Fork it ( https://github.com/rcaught/this_ip/fork )
32
33
  2. Create your feature branch (`git checkout -b my-new-feature`)
33
34
  3. Commit your changes (`git commit -am 'Add some feature'`)
34
35
  4. Push to the branch (`git push origin my-new-feature`)
@@ -1,8 +1,8 @@
1
1
  require 'this_ip/version'
2
2
  require 'faraday'
3
- require 'require_all'
4
3
 
5
- require_all 'lib/this_ip/services/aws'
4
+ require 'this_ip/services/aws/ec2'
5
+ require 'this_ip/services/aws/rds'
6
6
 
7
7
  module ThisIp
8
8
  class Main
@@ -1,3 +1,3 @@
1
1
  module ThisIp
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -23,5 +23,4 @@ Gem::Specification.new do |spec|
23
23
 
24
24
  spec.add_runtime_dependency('aws-sdk', '< 2.0')
25
25
  spec.add_runtime_dependency "faraday"
26
- spec.add_runtime_dependency "require_all"
27
26
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: this_ip
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Caught
@@ -66,20 +66,6 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
- - !ruby/object:Gem::Dependency
70
- name: require_all
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - ">="
74
- - !ruby/object:Gem::Version
75
- version: '0'
76
- type: :runtime
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- version: '0'
83
69
  description: Auth and deauth your current IP address.
84
70
  email:
85
71
  - rcaught@gmail.com