4Tune
4Tune

Reputation: 39

bundle install error for system_timer 1.2.4

9.3 and every time i try "bundle install" it starts ok then give me this error...

An error occurred while installing system_timer (1.2.4), and Bundler cannot continue. Make sure that gem install system_timer -v '1.2.4' succeeds before bundling.

when i try to run system_timer it says...

sudo gem install system_timer Building native extensions. This could take a while... ERROR: Error installing system_timer: ERROR: Failed to build gem native extension.

Upvotes: 1

Views: 360

Answers (1)

Gemfile.rb:

platform :ruby_18 do
  gem 'system_timer', '1.2.4'
end

Run :

bundle install

Moreover SystemTimer is only a patch for ruby 1.8's threading system. So, there is no need to have it for ruby > 1.9.3

Upvotes: 0

Related Questions