distroid 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 87594c7314c22b218c0ecb4bade3ff356acfaddf
4
+ data.tar.gz: c46ff624e48cd26fef3bf8c29ea6a9ea481eb858
5
+ SHA512:
6
+ metadata.gz: 6b9af996305ed4b53039377f0d534c835f53441f88baca8cc697cb90e912bd5c9197bed68251ccae32e71737f067ada8f90ff18c830cf73df76e448c0dad939e
7
+ data.tar.gz: 499bceebc751b59de88d1c7e9d43f5edb9f1db29b2c00c66bac9710d7b2a68eb73d01587000ea42e05196acd1aacfdafd3928cd0863c732112bbfd6673d6f088
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in distroid.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright 2014 Joshua Beitler
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
@@ -0,0 +1,37 @@
1
+ # Distroid
2
+
3
+ `distroid` is a simple gem to detect the kernel, OS, and distro that the the current system is running on. Useful for situations where programs or commands to be run may differ between operating systems.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your appgilication's Gemfile:
8
+
9
+ gem 'distroid'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install distroid
18
+
19
+ ## Usage
20
+
21
+ Using Distroid is as simple as including it into your project as you would normally. The most used function is simply `Distroid::distro?`, which will return the distro of the current computer as a symbol.
22
+
23
+ ```ruby
24
+ require 'distroid'
25
+
26
+ puts "Running Fedora" if Distroid::distro? == :redhat
27
+ puts "Running Debian" if Distroid::distro? == :debian
28
+ puts "Running SUSE" if Distroid::distro? == :suse
29
+ ```
30
+
31
+ ## Contributing
32
+
33
+ 1. Fork it (`http://github.com/joshbeitler/distroid/fork`)
34
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
35
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
36
+ 4. Push to the branch (`git push origin my-new-feature`)
37
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'distroid/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "distroid"
8
+ spec.version = Distroid::VERSION
9
+ spec.authors = ["Joshua Beitler"]
10
+ spec.email = ["joshbeitler@gmail.com"]
11
+ spec.summary = %q{A simple gem to detect which distro you're running}
12
+ spec.homepage = ""
13
+ spec.license = "Apache-2.0"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_development_dependency "bundler", "~> 1.5"
21
+ spec.add_development_dependency "rake"
22
+
23
+ spec.add_runtime_dependency "sysinfo"
24
+ end
@@ -0,0 +1,10 @@
1
+ require "distroid/version"
2
+
3
+ module Distroid
4
+ def distro?
5
+ # TODO: this is _very_ rudimentary at the moment, but it works
6
+ return :redhat if File.exist?("/etc/redhat-release")
7
+ return :debian if File.exist?("/etc/debian_version")
8
+ return :suse if File.exist?("/etc/SUSE-release")
9
+ end
10
+ end
@@ -0,0 +1,3 @@
1
+ module Distroid
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,94 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: distroid
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Joshua Beitler
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-04-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: sysinfo
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description:
56
+ email:
57
+ - joshbeitler@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - .gitignore
63
+ - Gemfile
64
+ - LICENSE
65
+ - README.md
66
+ - Rakefile
67
+ - distroid.gemspec
68
+ - lib/distroid.rb
69
+ - lib/distroid/version.rb
70
+ homepage: ''
71
+ licenses:
72
+ - Apache-2.0
73
+ metadata: {}
74
+ post_install_message:
75
+ rdoc_options: []
76
+ require_paths:
77
+ - lib
78
+ required_ruby_version: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ required_rubygems_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - '>='
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ requirements: []
89
+ rubyforge_project:
90
+ rubygems_version: 2.1.11
91
+ signing_key:
92
+ specification_version: 4
93
+ summary: A simple gem to detect which distro you're running
94
+ test_files: []