Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions MANIFEST.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,12 @@
* lib/bsd/sys/freebsd/sys/proctable/functions.rb
* lib/bsd/sys/freebsd/sys/proctable/structs.rb
* lib/linux/sys/proctable.rb
* lib/sunos/sys/proctable.rb
* lib/windows/sys/proctable.rb
* spec/spec_helper.rb
* spec/sys_proctable_aix_spec.rb
* spec/sys_proctable_all_spec.rb
* spec/sys_proctable_darwin_spec.rb
* spec/sys_proctable_freebsd_spec.rb
* spec/sys_proctable_linux_spec.rb
* spec/sys_proctable_sunos_spec.rb
* spec/sys_proctable_windows_spec.rb
* spec/sys_top_spec.rb
11 changes: 0 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
* Linux 2.6+
* FreeBSD
* DragonflyBSD
* Solaris 8+
* OS X 10.7+
* AIX 5.3+

Expand All @@ -33,7 +32,6 @@ For version 1.1.5 or earlier, you may need to specify a platform in some cases.

```sh
gem install sys-proctable --platform mswin32 # Windows
gem install sys-proctable --platform sunos # Solaris
gem install sys-proctable --platform linux # Linux
gem install sys-proctable --platform freebsd # FreeBSD
gem install sys-proctable --platform darwin # OS X
Expand Down Expand Up @@ -106,20 +104,11 @@ bundle config specific_platform true

You should not have to do this for version 1.2.0 or later.

### Solaris

The cmdline member on Solaris is limited to 80 characters unless you (or
your program) own the process. This is a Solaris design flaw/feature.

### OS X

The libproc interface is used. That means you will only get list of
processes that you have access to. To get a full listing, run as root.

## Future Plans

Support for Solaris will probably be dropped in the next major release.

## Acknowledgements

This library was originally based on the Perl module Proc::ProcessTable
Expand Down
5 changes: 0 additions & 5 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ task :install do
file = 'lib/windows/sys/proctable.rb'
when /linux/i
file = 'lib/linux/sys/proctable.rb'
when /sunos|solaris/i
file = 'lib/sunos/sys/proctable.rb'
when /aix/i
file = 'lib/aix/sys/proctable.rb'
when /freebsd/i
Expand Down Expand Up @@ -69,9 +67,6 @@ RSpec::Core::RakeTask.new(:spec) do |t|
when /linux/i
t.rspec_opts = '-Ilib/linux'
t.pattern << 'spec/sys_proctable_linux_spec.rb'
when /sunos|solaris/i
t.rspec_opts = '-Ilib/sunos'
t.pattern << 'spec/sys_proctable_sunos_spec.rb'
when /mswin|msdos|cygwin|mingw|windows/i
t.rspec_opts = '-Ilib/windows'
t.pattern << 'spec/sys_proctable_windows_spec.rb'
Expand Down
Loading