AutoNic 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZWRkNTgxZmYwMWIzOWJmMmViMzNkY2QwZjJkYzNhM2M5YzkxNDg5Mg==
4
+ ZTBjYTdiYWQ5MGYwMzAyYWRhMWFlNzIwMmRlYjNjMDcyNGM1NWE1Ng==
5
5
  data.tar.gz: !binary |-
6
- YzlkYTRhOTAxMzU3MDYwMzBhMTYxYzI4M2RiMzUwNzMxODUxNTg5Yg==
6
+ ZmRhMTI0YzAwYWNhYWIzMTQ1YTk2OWFhMmI0MDI2ODVlYWZjYjk5NQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NjU0ZmY0Mjk5NTc2MzRiNGVjYjg4ZDBhYjI0MjBjODY3YjhhZjYwZTZjZTBj
10
- MGYxNjdjNGQyODI1ODk1OTdkZTNlZDllODU2M2Q2ZjYxMjk0MTg5ZGQzMjJi
11
- MTZlMDA3OTdjODY3MGIyMjVjNTQ3M2IyN2VkMzRlNGFlN2M2OTY=
9
+ MGVkNDhkYjljMjYzNTUwY2FjMmNlNjJmM2Y4NGQ2OWNiMGI5Zjk2MjhhOWQ5
10
+ ZTliMTg4NzVkOWEyMDgxYzRhYzM5ZTE5YjRmZmFmMDc1NTU2MmVhMjIzMGY0
11
+ MjI1YWFjZDM4YmJlMDExMjMxYzRkZDlhMjEwYjJjMTM4YmU2YmQ=
12
12
  data.tar.gz: !binary |-
13
- MzQ4YzY3MTUzYzFhNzk5ZTA3NmNiOGViNDA5ZTJkN2JiMjgzYjJkZjU0ZTkw
14
- ZWNjMDZkZTA5OTNhY2UyM2JlNWM3OWIwYTMwZDI0NTk3OWZiMmM5YWI5NzUw
15
- YTNkODQ4MWU4NmUwMmMzMThhZjgwZGQ3MTcwYzJkNTA3ZTE5YWM=
13
+ MDE4MGEwY2JlMjlhZWQzYjVkMTVlZDY5MWUzYzAxY2NjMGYzNTI4ZWJiY2Zh
14
+ NWEyYjhkYmMxZWMwYTI2ZTdhMWZmZjNhMDVhZDE2ZGFiYzhjODUwYzA4MmIz
15
+ MGEyZGY5MDI0ZjcwNzUxYTFhMTA5ZWI5YmQ1MzYwMjQ0ZDI5M2E=
data/.gitignore CHANGED
@@ -1,2 +1,3 @@
1
1
  tmp/
2
- .DS_Store
2
+ pkg/
3
+ .DS_Store
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Tom Gladhill
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -4,18 +4,21 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = "AutoNic"
7
- gem.version = '1.0.0'
7
+ gem.version = '1.0.1'
8
8
  gem.authors = ["whoojemaflip"]
9
9
  gem.email = ["whoojemaflip@gmail.com"]
10
10
  gem.description = %q{Create a silly name for your server automatically from it's Mac address}
11
- gem.summary = %q{Create a silly name for your server automatically from it's Mac address}
11
+ gem.summary = %q{Create a silly name for your server automatically from it's Mac address}
12
12
  gem.homepage = "http://github.com/whoojemaflip/autonic"
13
+ gem.license = "MIT"
13
14
 
14
15
  gem.files = `git ls-files`.split($/)
15
- gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
16
+ gem.executables = ["autonic"]
16
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
17
18
  gem.require_paths = ["lib"]
18
19
 
19
20
  gem.add_runtime_dependency "macaddr", "~> 1.6.1"
20
21
  gem.add_development_dependency "rspec"
22
+ gem.add_development_dependency "bundler", "~> 1.3"
23
+ gem.add_development_dependency "rake"
21
24
  end
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'AutoNic'
4
+
5
+ puts AutoNic.new.name
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: AutoNic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - whoojemaflip
@@ -38,10 +38,39 @@ dependencies:
38
38
  - - ! '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '1.3'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '1.3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ! '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
41
69
  description: Create a silly name for your server automatically from it's Mac address
42
70
  email:
43
71
  - whoojemaflip@gmail.com
44
- executables: []
72
+ executables:
73
+ - autonic
45
74
  extensions: []
46
75
  extra_rdoc_files: []
47
76
  files:
@@ -49,13 +78,17 @@ files:
49
78
  - Gemfile
50
79
  - Gemfile.lock
51
80
  - Guardfile
81
+ - LICENSE.txt
82
+ - Rakefile
52
83
  - autonic.gemspec
84
+ - bin/autonic
53
85
  - init.rb
54
86
  - lib/autonic.rb
55
87
  - spec/autonic.spec.rb
56
88
  - spec/spec_helper.rb
57
89
  homepage: http://github.com/whoojemaflip/autonic
58
- licenses: []
90
+ licenses:
91
+ - MIT
59
92
  metadata: {}
60
93
  post_install_message:
61
94
  rdoc_options: []