ruby_info 1.0.0 → 1.0.1

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: f0a180ae154076161ee14aac39e9f74c26f93b15
4
- data.tar.gz: 3d3159b564dc88be1d26067ef4f338fed8a9b6a2
3
+ metadata.gz: d12ee3ad7f0e5b656f3719d92d0b773f13befb3c
4
+ data.tar.gz: b52bfd7405b0c70a941b9722e1e8e2cb43bca631
5
5
  SHA512:
6
- metadata.gz: 3ea72adbf6a0961da75585508b597c91ae075571b95d024baf74f45df18b08282dde6aee6c0acc2f0d339237b3cd54e5b5d9055d146d4a00fa730d9650c78445
7
- data.tar.gz: 5b0d6865a5e2bc0c75590ee5580290a8c014a3231f2c180aa98eb6036d335d260e8f77db0963d1a355cf7c03074811721c58227ae937432c28e413463b14de5a
6
+ metadata.gz: c63bfb635a77980661ecde7b3d66190c4bcad09b9ca0adba906e4d4089946d0f1a87478f8e6372fcb35d6f9e087c5add43480ce41e6899b7bfdb345274b634ad
7
+ data.tar.gz: 4c225d49726b371a1f1598768a6aa1598a32a7dc0a2f95b3246cff3dbc81f8d1a2b3c2ef8c8a690e97a81af0cef0028503339b6c5caadb84f756b1ebcd1d7486
@@ -1,5 +1,7 @@
1
- === 1.0.0 / 2014-01-15
1
+ === 1.0.1 / 2014-01-15
2
+ * Fix VERSION constant
2
3
 
4
+ === 1.0.0 / 2014-01-15
3
5
  * New method: all (Output all available information)
4
6
  * Rename platform to ruby_platform
5
7
  * Rename environment to env
@@ -14,12 +14,13 @@ In Ruby:
14
14
 
15
15
  == Usage
16
16
 
17
- Call methods on the +RubyInfo+ class. See source for more documentation.
17
+ Call methods on the +RubyInfo+ class. See the source for more documentation.
18
18
 
19
19
  == Also See
20
20
 
21
- https://github.com/janlelis/ruby_engine
22
- https://github.com/janlelis/ruby_version
21
+ https://github.com/janlelis/ruby_engine |
22
+ https://github.com/janlelis/ruby_version |
23
+ https://github.com/rdp/os
23
24
 
24
25
  == J-_-L
25
26
 
@@ -2,8 +2,9 @@ require 'rbconfig'
2
2
  require 'etc'
3
3
  require 'socket'
4
4
 
5
-
6
5
  module RubyInfo
6
+ VERSION = '1.0.1'
7
+
7
8
  class << self
8
9
  def [](what)
9
10
  send what
@@ -1,6 +1,6 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
- require File.expand_path('../lib/ruby_info/version', __FILE__)
3
+ require File.expand_path('../lib/ruby_info', __FILE__)
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = "ruby_info"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_info
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
  - Jan Lelis
@@ -96,7 +96,7 @@ files:
96
96
  - README.rdoc
97
97
  - Rakefile
98
98
  - lib/ruby_info.rb
99
- - lib/ruby_info/version.rb
99
+ - pkg/ruby_info-1.0.0.gem
100
100
  - ruby_info.gemspec
101
101
  homepage: https://github.com/janlelis/ruby_info
102
102
  licenses:
@@ -1,3 +0,0 @@
1
- module RubyInfo
2
- VERSION = "1.0.0"
3
- end