Created
March 15, 2012 09:25
-
-
Save jonleighton/2043160 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ rvm jruby | |
| $ cat ext/faye_websocket_mask/extconf.rb | |
| unless defined?(RUBY_ENGINE) and RUBY_ENGINE == 'jruby' | |
| require 'mkmf' | |
| extension_name = 'faye_websocket_mask' | |
| dir_config(extension_name) | |
| create_makefile(extension_name) | |
| end | |
| $ gem build faye-websocket.gemspec | |
| WARNING: no description specified | |
| Successfully built RubyGem | |
| Name: faye-websocket | |
| Version: 0.4.3 | |
| File: faye-websocket-0.4.3.gem | |
| $ gem build faye-websocket.gemspec | |
| WARNING: no description specified | |
| Successfully built RubyGem | |
| Name: faye-websocket | |
| Version: 0.4.3 | |
| File: faye-websocket-0.4.3.gem | |
| $ gem install faye-websocket-0.4.3.gem | |
| Building native extensions. This could take a while... | |
| ERROR: Error installing faye-websocket-0.4.3.gem: | |
| ERROR: Failed to build gem native extension. | |
| /home/turnip/.rvm/rubies/jruby-1.6.7/bin/jruby extconf.rb | |
| Gem files will remain installed in /home/turnip/.rvm/gems/jruby-1.6.7/gems/faye-websocket-0.4.3 for inspection. | |
| Results logged to /home/turnip/.rvm/gems/jruby-1.6.7/gems/faye-websocket-0.4.3/ext/faye_websocket_mask/gem_make.out | |
| $ jruby ext/faye_websocket_mask/extconf.rb | |
| $ echo $? | |
| 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment