enginevib 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +12 -0
  3. data/.gitignore +9 -0
  4. data/.travis.yml +4 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +82 -0
  8. data/Rakefile +17 -0
  9. data/bin/bundler +16 -0
  10. data/bin/console +14 -0
  11. data/bin/enginevib +16 -0
  12. data/bin/rake +16 -0
  13. data/bin/rake-compiler +16 -0
  14. data/bin/rubocop +16 -0
  15. data/bin/ruby-parse +16 -0
  16. data/bin/ruby-rewrite +16 -0
  17. data/bin/setup +7 -0
  18. data/dtrace/dtrace_rtos_classes.png +0 -0
  19. data/dtrace/dtrace_rtos_classes_no_str.png +0 -0
  20. data/dtrace/dtrace_rtos_syscalls.png +0 -0
  21. data/dtrace/sample_output_rtos_classes.csv +85 -0
  22. data/dtrace/sample_output_rtos_syscall.csv +53 -0
  23. data/dtrace/sample_output_soft_classes.csv +86 -0
  24. data/dtrace/sample_output_soft_syscall.csv +142 -0
  25. data/dtrace/script.d +14 -0
  26. data/enginevib.gemspec +30 -0
  27. data/exe/enginevib +20 -0
  28. data/exe/openmic +9 -0
  29. data/ext/rtos/extconf.rb +3 -0
  30. data/ext/rtos/rtos.c +32 -0
  31. data/lib/enginevib/averager.rb +27 -0
  32. data/lib/enginevib/controller.rb +9 -0
  33. data/lib/enginevib/io.rb +13 -0
  34. data/lib/enginevib/launcher.rb +50 -0
  35. data/lib/enginevib/main.rb +40 -0
  36. data/lib/enginevib/output.rb +55 -0
  37. data/lib/enginevib/scheduler.rb +70 -0
  38. data/lib/enginevib/sensor.rb +26 -0
  39. data/lib/enginevib/soft_ticker.rb +12 -0
  40. data/lib/enginevib/stats.rb +13 -0
  41. data/lib/enginevib/system.rb +15 -0
  42. data/lib/enginevib/version.rb +4 -0
  43. data/lib/enginevib.rb +7 -0
  44. data/lib/rtos.bundle +0 -0
  45. data/test/averager_test.rb +16 -0
  46. data/test/controller_test.rb +8 -0
  47. data/test/enginevib_test.rb +7 -0
  48. data/test/fixtures/dummy +2 -0
  49. data/test/io_test.rb +10 -0
  50. data/test/main_test.rb +20 -0
  51. data/test/scheduler_test.rb +8 -0
  52. data/test/sensor_test.rb +13 -0
  53. data/test/soft_ticker_test.rb +8 -0
  54. data/test/stats_test.rb +16 -0
  55. data/test/system_test.rb +8 -0
  56. data/test/test_helper.rb +24 -0
  57. metadata +186 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8f48f21a4c5e3712654530dd60c11a361cb17605
4
+ data.tar.gz: db52ca75eeaa706761d813de862bac4d7ee37e77
5
+ SHA512:
6
+ metadata.gz: 89002461a3774b416dd96bc4189fdc0a1790d3f1d453ccc1ff134b4e15ea05c298bbf71e394a16dfe9ea38cbd65a89151da14143c1a1eea24e778aa89732c772
7
+ data.tar.gz: 4baa04017553468e105665edc76731e87aea0fd4d64eb5fa79644057dfc9b76defbc9e44a2ca8c23e91129e1b6836a564a323b1f9c015ebc03e39567ace48c71
data/.editorconfig ADDED
@@ -0,0 +1,12 @@
1
+ root = true
2
+
3
+ [*]
4
+ indent_style = space
5
+ indent_size = 2
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+
11
+ [*.{sh,markdown}]
12
+ indent_size = 4
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - '2.2.3'
4
+ before_install: gem install bundler -v 1.10.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in enginevib.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Eduardo Mourão
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,82 @@
1
+ # Aircraft Avionics Built in Ruby
2
+
3
+ [![Build Status](https://travis-ci.org/eduardordm/enginevib.svg?branch=master)](https://travis-ci.org/eduardordm/enginevib)
4
+
5
+
6
+ Foreword: This was built for a talk in RubyConf Brasil 2015, no changes will be made I guess.
7
+
8
+ Displays the engine vibration levels as provided by a 0->10 sensor. Sensor must be calibrated.
9
+
10
+ This program can be used with other sensors like: Speedometer, accelerometer and so forth.
11
+ I personally tested it with a pitot system and it worked perfectly with sensors calibrated
12
+ to work with Lyncoming O235 engines.
13
+
14
+ It can run in a RTOS, read rtos.c to know how you can hook this gem into your specific RTOS.
15
+ You might need to get rid of Rubygems depending on the OS you are planning to run this code.
16
+
17
+ This gem was tested in OSX, PREEMPT_RT, Xenomai Linux and a proprietary OS it works as intended.
18
+
19
+ Warning: While you may use this inside an aircraft for testing purposes I advise you not
20
+ to unless you are an experienced instructor or test pilot or passenger.
21
+
22
+ Read /exe/openmic to learn how you can use your mic port to act as an analog data input
23
+ (it's terrible).
24
+
25
+ ### Caveats
26
+
27
+ * Strip down the gem if you plan to run this in VxWorks;
28
+ * io.rb needs some love;
29
+ * Tests are there but they are not enough;
30
+ * Needs a somewhat fast computer, Linksys WRT54 can't run this.
31
+ * YOU NEED TO IMPLEMENT RTOS.C TO COMPLY WITH YOUR RTOS REQUIREMENTS.
32
+
33
+ ### Specs
34
+
35
+ * Deadline: ~30ms + verification tolerance
36
+ * Avg execution time: < 6ms
37
+ * Uses main loop (ticker)
38
+ * Expects fresh data at serial port (it will buffer for one tick if data gets out of sync)
39
+
40
+ ## Installation
41
+
42
+ Add this line to your application's Gemfile:
43
+
44
+ ```ruby
45
+ gem 'enginevib'
46
+ ```
47
+
48
+ And then execute:
49
+
50
+ $ bundle
51
+
52
+ Or install it yourself as:
53
+
54
+ $ gem install enginevib
55
+
56
+ ## Usage
57
+
58
+ $ bundle exec enginevib -p $SERIAL_PORT
59
+
60
+ The -s option enables IO simulation.
61
+
62
+ ## Using a microphone as input
63
+
64
+ Check out /exe/openmic to learn how you can use socat and create a virtual serial port that reads data from your mic.
65
+
66
+ ## DTrace
67
+
68
+
69
+ Outputs dtrace to log.txt:
70
+
71
+ $ sudo dtrace -s ./dtrace/script.d -o ./tmp/log.txt -c "`rbenv which ruby` `pwd`/bin/enginevib -p /dev/ttys007"
72
+
73
+ ## Development
74
+
75
+ This was built for a talk in RubyConf Brasil 2015, no changes will be made.
76
+
77
+ ## License
78
+
79
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
80
+
81
+
82
+
data/Rakefile ADDED
@@ -0,0 +1,17 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+ require 'rake/extensiontask'
4
+
5
+ Rake::ExtensionTask.new("rtos") do |ext|
6
+ ext.ext_dir = "ext/rtos"
7
+ end
8
+
9
+ Rake::TestTask.new(:test) do |t|
10
+ t.libs << "test"
11
+ t.libs << "lib"
12
+ t.test_files = FileList['test/**/*_test.rb']
13
+ end
14
+
15
+ task default: %w(compile test)
16
+
17
+
data/bin/bundler ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'bundler' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('bundler', 'bundler')
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "enginevib"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/enginevib ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'enginevib' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('enginevib', 'enginevib')
data/bin/rake ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rake' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rake', 'rake')
data/bin/rake-compiler ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rake-compiler' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rake-compiler', 'rake-compiler')
data/bin/rubocop ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rubocop' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rubocop', 'rubocop')
data/bin/ruby-parse ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'ruby-parse' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('parser', 'ruby-parse')
data/bin/ruby-rewrite ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'ruby-rewrite' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('parser', 'ruby-rewrite')
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
Binary file
Binary file
@@ -0,0 +1,85 @@
1
+ ARGF.class,1
2
+ Bundler::Definition,1
3
+ Bundler::Dsl,1
4
+ Bundler::LockfileParser,1
5
+ Bundler::Molinillo::ResolutionState,1
6
+ Bundler::Molinillo::Resolver,1
7
+ Bundler::Molinillo::Resolver::Resolution,1
8
+ Bundler::Resolver,1
9
+ Bundler::RubygemsIntegration::MoreFuture,1
10
+ Bundler::Runtime,1
11
+ Bundler::Settings,1
12
+ Bundler::SourceList,1
13
+ Bundler::UI::RGProxy,1
14
+ Bundler::UI::Silent,1
15
+ Enginevib::Controller,1
16
+ Enginevib::Main,1
17
+ Enginevib::Output,1
18
+ Enginevib::Scheduler,1
19
+ Enginevib::Sensor,1
20
+ Enginevib::Stats,1
21
+ Enginevib::System,1
22
+ Errno::EEXIST,1
23
+ IO,1
24
+ IOError,1
25
+ Module,1
26
+ NoMemoryError,1
27
+ OpenSSL::X509::Store,1
28
+ OptionParser,1
29
+ OptionParser::CompletingHash,1
30
+ Process::Status,1
31
+ Resolv,1
32
+ Resolv::DNS,1
33
+ Resolv::DNS::Config,1
34
+ Resolv::Hosts,1
35
+ SystemStackError,1
36
+ ThreadGroup,1
37
+ URI::RFC2396_Parser,1
38
+ URI::RFC3986_Parser,1
39
+ fatal,1
40
+ Bundler::Source::Path,2
41
+ Curses::Window,2
42
+ Enginevib::Averager,2
43
+ Monitor,2
44
+ OptionParser::Switch::OptionalArgument,2
45
+ OptionParser::Switch::RequiredArgument,2
46
+ Gem::PathSupport,3
47
+ Object,3
48
+ OptionParser::List,3
49
+ Bundler::Source::Rubygems,4
50
+ LoadError,4
51
+ Bundler::Index,5
52
+ OptionParser::Switch::NoArgument,5
53
+ OptionParser::OptionMap,6
54
+ Bundler::SpecSet,9
55
+ Mutex,10
56
+ NoMethodError,10
57
+ Bundler::Molinillo::PossibilityState,15
58
+ Bundler::Molinillo::DependencyState,16
59
+ Regexp,17
60
+ Time,17
61
+ Bundler::Resolver::SpecGroup,18
62
+ Gem::Platform,20
63
+ Bundler::StubSpecification,21
64
+ Bundler::Dependency,23
65
+ Bundler::LazySpecification,25
66
+ Bundler::Molinillo::DependencyGraph,32
67
+ URI::HTTPS,33
68
+ Class,35
69
+ Gem::StubSpecification::StubLine,36
70
+ Gem::StubSpecification,42
71
+ File,46
72
+ Pathname,70
73
+ Gem::Version,80
74
+ Set,96
75
+ Bundler::DepProxy,103
76
+ Gem::Dependency,104
77
+ Gem::Specification,105
78
+ Range,157
79
+ Bundler::Molinillo::DependencyGraph::Edge,204
80
+ Hash,322
81
+ Bundler::Molinillo::DependencyGraph::Vertex,347
82
+ Gem::Requirement,369
83
+ String,1214
84
+ Array,1540
85
+ IO::EAGAINWaitReadable,3894
@@ -0,0 +1,53 @@
1
+ __mac_syscall,1
2
+ bsdthread_create,1
3
+ bsdthread_register,1
4
+ dup2,1
5
+ execve,1
6
+ fcntl_nocancel,1
7
+ fork,1
8
+ getrlimit,1
9
+ getrusage,1
10
+ proc_info,1
11
+ shm_open,1
12
+ sigreturn,1
13
+ wait4,1
14
+ write,1
15
+ __pthread_canceled,2
16
+ chdir,2
17
+ issetugid,2
18
+ madvise,2
19
+ mkdir,2
20
+ poll,2
21
+ sysctl,2
22
+ thread_selfid,2
23
+ access,3
24
+ __pthread_sigmask,4
25
+ pipe,4
26
+ pread,20
27
+ lseek,27
28
+ fgetattrlist,34
29
+ close_nocancel,40
30
+ mmap,61
31
+ fstatfs64,68
32
+ open_nocancel,68
33
+ getdirentries64,69
34
+ read_nocancel,88
35
+ stat64,141
36
+ getgid,151
37
+ getegid,152
38
+ getuid,154
39
+ geteuid,156
40
+ getattrlist,332
41
+ fstat64,365
42
+ close,425
43
+ ioctl,457
44
+ write_nocancel,1158
45
+ open,1665
46
+ lstat64,1702
47
+ __semwait_signal,4448
48
+ select,8896
49
+ sigaction,8957
50
+ fcntl,9170
51
+ read,9381
52
+ sigaltstack,11089
53
+ sigprocmask,11089
@@ -0,0 +1,86 @@
1
+ ARGF.class,1
2
+ Bundler::Definition,1
3
+ Bundler::Dsl,1
4
+ Bundler::LockfileParser,1
5
+ Bundler::Molinillo::ResolutionState,1
6
+ Bundler::Molinillo::Resolver,1
7
+ Bundler::Molinillo::Resolver::Resolution,1
8
+ Bundler::Resolver,1
9
+ Bundler::RubygemsIntegration::MoreFuture,1
10
+ Bundler::Runtime,1
11
+ Bundler::Settings,1
12
+ Bundler::SourceList,1
13
+ Bundler::UI::RGProxy,1
14
+ Bundler::UI::Silent,1
15
+ Enginevib::Controller,1
16
+ Enginevib::Main,1
17
+ Enginevib::Output,1
18
+ Enginevib::Scheduler,1
19
+ Enginevib::Sensor,1
20
+ Enginevib::Stats,1
21
+ Enginevib::System,1
22
+ Errno::EEXIST,1
23
+ IO,1
24
+ IOError,1
25
+ Interrupt,1
26
+ Module,1
27
+ NoMemoryError,1
28
+ OpenSSL::X509::Store,1
29
+ OptionParser,1
30
+ OptionParser::CompletingHash,1
31
+ Process::Status,1
32
+ Resolv,1
33
+ Resolv::DNS,1
34
+ Resolv::DNS::Config,1
35
+ Resolv::Hosts,1
36
+ SystemStackError,1
37
+ ThreadGroup,1
38
+ URI::RFC2396_Parser,1
39
+ URI::RFC3986_Parser,1
40
+ fatal,1
41
+ Bundler::Source::Path,2
42
+ Curses::Window,2
43
+ Enginevib::Averager,2
44
+ Monitor,2
45
+ OptionParser::Switch::OptionalArgument,2
46
+ OptionParser::Switch::RequiredArgument,2
47
+ Gem::PathSupport,3
48
+ Object,3
49
+ OptionParser::List,3
50
+ Bundler::Source::Rubygems,4
51
+ LoadError,4
52
+ Bundler::Index,5
53
+ OptionParser::Switch::NoArgument,5
54
+ OptionParser::OptionMap,6
55
+ Bundler::SpecSet,9
56
+ Mutex,10
57
+ NoMethodError,10
58
+ Bundler::Molinillo::PossibilityState,15
59
+ Bundler::Molinillo::DependencyState,16
60
+ Regexp,17
61
+ Time,17
62
+ Bundler::Resolver::SpecGroup,18
63
+ Gem::Platform,20
64
+ Bundler::StubSpecification,21
65
+ Bundler::Dependency,23
66
+ Bundler::LazySpecification,25
67
+ Bundler::Molinillo::DependencyGraph,32
68
+ URI::HTTPS,33
69
+ Class,35
70
+ Gem::StubSpecification::StubLine,36
71
+ Gem::StubSpecification,42
72
+ File,46
73
+ Pathname,70
74
+ Gem::Version,80
75
+ Set,96
76
+ Bundler::DepProxy,103
77
+ Gem::Dependency,104
78
+ Gem::Specification,105
79
+ Range,157
80
+ Bundler::Molinillo::DependencyGraph::Edge,204
81
+ Hash,322
82
+ Bundler::Molinillo::DependencyGraph::Vertex,347
83
+ Gem::Requirement,369
84
+ String,1214
85
+ Array,1540
86
+ IO::EAGAINWaitReadable,2169
@@ -0,0 +1,142 @@
1
+ syscall, count
2
+ __mac_syscall,1
3
+ bsdthread_create,1
4
+ bsdthread_register,1
5
+ dup2,1
6
+ execve,1
7
+ fcntl_nocancel,1
8
+ fork,1
9
+ getrlimit,1
10
+ getrusage,1
11
+ proc_info,1
12
+ psynch_cvsignal,1
13
+ shm_open,1
14
+ sigreturn,1
15
+ wait4,1
16
+ __pthread_canceled,2
17
+ chdir,2
18
+ issetugid,2
19
+ madvise,2
20
+ mkdir,2
21
+ poll,2
22
+ sysctl,2
23
+ thread_selfid,2
24
+ access,3
25
+ write,3
26
+ __pthread_sigmask,4
27
+ pipe,4
28
+ pread,20
29
+ lseek,27
30
+ fgetattrlist,34
31
+ close_nocancel,40
32
+ mmap,61
33
+ fstatfs64,68
34
+ open_nocancel,68
35
+ getdirentries64,69
36
+ read_nocancel,88
37
+ stat64,141
38
+ getgid,151
39
+ getegid,152
40
+ getuid,154
41
+ geteuid,156
42
+ getattrlist,332
43
+ fstat64,365
44
+ close,425
45
+ ioctl,458
46
+ write_nocancel,903
47
+ open,1665
48
+ lstat64,1702
49
+ psynch_cvwait,2562
50
+ gettimeofday,2732
51
+ select,5120
52
+ sigaction,5183
53
+ fcntl,5978
54
+ read,6189
55
+ sigaltstack,10461
56
+ sigprocmask,10461
57
+ ARGF.class,1
58
+ Bundler::Definition,1
59
+ Bundler::Dsl,1
60
+ Bundler::LockfileParser,1
61
+ Bundler::Molinillo::ResolutionState,1
62
+ Bundler::Molinillo::Resolver,1
63
+ Bundler::Molinillo::Resolver::Resolution,1
64
+ Bundler::Resolver,1
65
+ Bundler::RubygemsIntegration::MoreFuture,1
66
+ Bundler::Runtime,1
67
+ Bundler::Settings,1
68
+ Bundler::SourceList,1
69
+ Bundler::UI::RGProxy,1
70
+ Bundler::UI::Silent,1
71
+ Enginevib::Controller,1
72
+ Enginevib::Main,1
73
+ Enginevib::Output,1
74
+ Enginevib::Scheduler,1
75
+ Enginevib::Sensor,1
76
+ Enginevib::Stats,1
77
+ Enginevib::System,1
78
+ Errno::EEXIST,1
79
+ IO,1
80
+ IOError,1
81
+ Interrupt,1
82
+ Module,1
83
+ NoMemoryError,1
84
+ OpenSSL::X509::Store,1
85
+ OptionParser,1
86
+ OptionParser::CompletingHash,1
87
+ Process::Status,1
88
+ Resolv,1
89
+ Resolv::DNS,1
90
+ Resolv::DNS::Config,1
91
+ Resolv::Hosts,1
92
+ SystemStackError,1
93
+ ThreadGroup,1
94
+ URI::RFC2396_Parser,1
95
+ URI::RFC3986_Parser,1
96
+ fatal,1
97
+ Bundler::Source::Path,2
98
+ Curses::Window,2
99
+ Enginevib::Averager,2
100
+ Monitor,2
101
+ OptionParser::Switch::OptionalArgument,2
102
+ OptionParser::Switch::RequiredArgument,2
103
+ Gem::PathSupport,3
104
+ Object,3
105
+ OptionParser::List,3
106
+ Bundler::Source::Rubygems,4
107
+ LoadError,4
108
+ Bundler::Index,5
109
+ OptionParser::Switch::NoArgument,5
110
+ OptionParser::OptionMap,6
111
+ Bundler::SpecSet,9
112
+ Mutex,10
113
+ NoMethodError,10
114
+ Bundler::Molinillo::PossibilityState,15
115
+ Bundler::Molinillo::DependencyState,16
116
+ Regexp,17
117
+ Time,17
118
+ Bundler::Resolver::SpecGroup,18
119
+ Gem::Platform,20
120
+ Bundler::StubSpecification,21
121
+ Bundler::Dependency,23
122
+ Bundler::LazySpecification,25
123
+ Bundler::Molinillo::DependencyGraph,32
124
+ URI::HTTPS,33
125
+ Class,35
126
+ Gem::StubSpecification::StubLine,36
127
+ Gem::StubSpecification,42
128
+ File,46
129
+ Pathname,70
130
+ Gem::Version,80
131
+ Set,96
132
+ Bundler::DepProxy,103
133
+ Gem::Dependency,104
134
+ Gem::Specification,105
135
+ Range,157
136
+ Bundler::Molinillo::DependencyGraph::Edge,204
137
+ Hash,322
138
+ Bundler::Molinillo::DependencyGraph::Vertex,347
139
+ Gem::Requirement,369
140
+ String,1214
141
+ Array,1540
142
+ IO::EAGAINWaitReadable,2169