Jeremy Evans [[email protected]] wrote:
> On Fri, May 3, 2013 at 10:13 AM, Chris Cappuccio <[email protected]> wrote:
> 
> > hi
> >
> > trying to get some rails stuff working but the ruby-gem port
> > keeps trying to install libv8 when it is already installed via
> > ports. clue stick?
> >
> > # thin20 start
> > > Using rack adapter
> > Could not find libv8-3.11.8.13 in any of the sources
> > Run `bundle install` to install missing gems.
> >
> >
> It appears to be trying to install the ruby libv8 gem, not the libv8 shared
> library (which is probably what you mean by "installed via ports").  What
> happens when you run `bundle install`?  What are the contents of Gemfile
> and Gemfile.lock?

Well I installed libv8 from ports and gem from ports. But then it tries to 
install
libv8 again. Not knowing anything about ruby/rails/whatever this stuff is, I 
was hoping
someone could tell me how to make it work on OpenBSD ports ruby/gem :)


Gemfile:

# cat Gemfile
source 'https://rubygems.org'

gem 'rails', '3.2.12'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

#gem 'sqlite3'
gem 'pg'
gem 'mysql2', :git => 'git://github.com/brianmario/mysql2.git'
gem 'devise'
gem 'formtastic'
gem 'geocoder'
gem 'therubyracer'
gem 'will_paginate', '~> 3.0'
gem 'ri_cal'
gem 'nested_form'
gem 'libv8'
gem 'carrierwave'
gem 'google-api-client'
gem 'omniauth-google-oauth2'
gem 'ancestry'
gem 'whenever', :require => false
gem 'activerecord-postgres-hstore'
gem 'thin'
gem "haml-rails"
gem 'acts_as_list'
gem 'formtastic-bootstrap'
gem 'vestal_versions', :git => 'git://github.com/laserlemon/vestal_versions'
gem 'public_activity'
gem 'twilio-ruby'
gem 'googlestaticmap'
gem 'whenever'

# 
# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'
        gem 'bootstrap-sass'
  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  # gem 'therubyracer', :platforms => :ruby

  gem 'uglifier', '>= 1.0.3'
        gem 'jquery-ui-rails'
        gem "highcharts-rails", "~> 3.0.0"

end

gem 'jquery-timepicker-rails'
gem 'jquery-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# To use Jbuilder templates for JSON
# gem 'jbuilder'

# Use unicorn as the app server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# gem 'debugger'




Gemfile.lock:

GIT
  remote: git://github.com/brianmario/mysql2.git
  revision: 72d0d22eea7b230253afc5e1f18bd743ccdc713d
  specs:
    mysql2 (0.3.12b6)

GIT
  remote: git://github.com/laserlemon/vestal_versions
  revision: c7aa512666b22e1a47b4fb36bb1679cb847a532e
  specs:
    vestal_versions (1.2.3)
      activerecord (~> 3.0)
      activesupport (~> 3.0)

GEM
  remote: https://rubygems.org/
  specs:
    actionmailer (3.2.12)
      actionpack (= 3.2.12)
      mail (~> 2.4.4)
    actionpack (3.2.12)
      activemodel (= 3.2.12)
      activesupport (= 3.2.12)
      builder (~> 3.0.0)
      erubis (~> 2.7.0)
      journey (~> 1.0.4)
      rack (~> 1.4.5)
      rack-cache (~> 1.2)
      rack-test (~> 0.6.1)
      sprockets (~> 2.2.1)
    activemodel (3.2.12)
      activesupport (= 3.2.12)
      builder (~> 3.0.0)
    activerecord (3.2.12)
      activemodel (= 3.2.12)
      activesupport (= 3.2.12)
      arel (~> 3.0.2)
      tzinfo (~> 0.3.29)
    activerecord-postgres-hstore (0.7.5)
      activerecord (>= 3.1)
      pg-hstore (>= 1.1.5)
      rake
    activeresource (3.2.12)
      activemodel (= 3.2.12)
      activesupport (= 3.2.12)
    activesupport (3.2.12)
      i18n (~> 0.6)
      multi_json (~> 1.0)
    acts_as_list (0.2.0)
      activerecord (>= 3.0)
    addressable (2.3.3)
    ancestry (1.3.0)
      activerecord (>= 2.3.14)
    arel (3.0.2)
    autoparse (0.3.2)
      addressable (>= 2.3.1)
      extlib (>= 0.9.15)
      multi_json (>= 1.0.0)
    bcrypt-ruby (3.0.1)
    bootstrap-sass (2.3.0.1)
      sass (~> 3.2)
    builder (3.0.4)
    carrierwave (0.8.0)
      activemodel (>= 3.2.0)
      activesupport (>= 3.2.0)
    chronic (0.9.1)
    coffee-rails (3.2.2)
      coffee-script (>= 2.2.0)
      railties (~> 3.2.0)
    coffee-script (2.2.0)
      coffee-script-source
      execjs
    coffee-script-source (1.6.1)
    daemons (1.1.9)
    devise (2.2.3)
      bcrypt-ruby (~> 3.0)
      orm_adapter (~> 0.1)
      railties (~> 3.1)
      warden (~> 1.2.1)
    erubis (2.7.0)
    eventmachine (1.0.3)
    execjs (1.4.0)
      multi_json (~> 1.0)
    extlib (0.9.16)
    faraday (0.8.6)
      multipart-post (~> 1.1)
    formtastic (2.2.1)
      actionpack (>= 3.0)
    formtastic-bootstrap (2.0.0)
      formtastic (~> 2.2)
      formtastic-bootstrap
    geocoder (1.1.6)
    google-api-client (0.6.2)
      addressable (>= 2.3.2)
      autoparse (>= 0.3.2)
      extlib (>= 0.9.15)
      faraday (~> 0.8.4)
      jwt (>= 0.1.5)
      launchy (>= 2.1.1)
      multi_json (>= 1.0.0)
      signet (>= 0.4.4)
      uuidtools (>= 2.1.0)
    googlestaticmap (1.1.3)
    haml (4.0.0)
      tilt
    haml-rails (0.4)
      actionpack (>= 3.1, < 4.1)
      activesupport (>= 3.1, < 4.1)
      haml (>= 3.1, < 4.1)
      railties (>= 3.1, < 4.1)
    hashie (1.2.0)
    highcharts-rails (3.0.0)
      railties (>= 3.1)
    hike (1.2.1)
    httpauth (0.2.0)
    i18n (0.6.4)
    journey (1.0.4)
    jquery-rails (2.2.1)
      railties (>= 3.0, < 5.0)
      thor (>= 0.14, < 2.0)
    jquery-timepicker-rails (1.0.7.0)
      railties (>= 3.1.0)
    jquery-ui-rails (4.0.2)
      jquery-rails
      railties (>= 3.1.0)
    json (1.7.7)
    jwt (0.1.8)
      multi_json (>= 1.5)
    launchy (2.2.0)
      addressable (~> 2.3)
    libv8 (3.11.8.13)
    mail (2.4.4)
      i18n (>= 0.4.0)
      mime-types (~> 1.16)
      treetop (~> 1.4.8)
    mime-types (1.21)
    multi_json (1.6.1)
    multipart-post (1.2.0)
    nested_form (0.3.1)
    oauth2 (0.8.1)
      faraday (~> 0.8)
      httpauth (~> 0.1)
      jwt (~> 0.1.4)
      multi_json (~> 1.0)
      rack (~> 1.2)
    omniauth (1.1.3)
      hashie (~> 1.2)
      rack
    omniauth-google-oauth2 (0.1.13)
      omniauth (~> 1.0)
      omniauth-oauth2
    omniauth-oauth2 (1.1.1)
      oauth2 (~> 0.8.0)
      omniauth (~> 1.0)
    orm_adapter (0.4.0)
    pg (0.14.1)
    pg-hstore (1.1.7)
    polyglot (0.3.3)
    public_activity (1.0.3)
      actionpack (~> 3.0)
      activesupport (~> 3.0)
      i18n (>= 0.5.0)
      railties (~> 3.0)
    rack (1.4.5)
    rack-cache (1.2)
      rack (>= 0.4)
    rack-ssl (1.3.3)
      rack
    rack-test (0.6.2)
      rack (>= 1.0)
    rails (3.2.12)
      actionmailer (= 3.2.12)
      actionpack (= 3.2.12)
      activerecord (= 3.2.12)
      activeresource (= 3.2.12)
      activesupport (= 3.2.12)
      bundler (~> 1.0)
      railties (= 3.2.12)
    railties (3.2.12)
      actionpack (= 3.2.12)
      activesupport (= 3.2.12)
      rack-ssl (~> 1.3.2)
      rake (>= 0.8.7)
      rdoc (~> 3.4)
      thor (>= 0.14.6, < 2.0)
    rake (10.0.3)
    rdoc (3.12.2)
      json (~> 1.4)
    ref (1.0.2)
    ri_cal (0.8.8)
    sass (3.2.7)
    sass-rails (3.2.6)
      railties (~> 3.2.0)
      sass (>= 3.1.10)
      tilt (~> 1.3)
    signet (0.4.5)
      addressable (>= 2.2.3)
      faraday (~> 0.8.1)
      jwt (>= 0.1.5)
      multi_json (>= 1.0.0)
    sprockets (2.2.2)
      hike (~> 1.2)
      multi_json (~> 1.0)
      rack (~> 1.0)
      tilt (~> 1.1, != 1.3.0)
    therubyracer (0.11.4)
      libv8 (~> 3.11.8.12)
      ref
    thin (1.5.0)
      daemons (>= 1.0.9)
      eventmachine (>= 0.12.6)
      rack (>= 1.0.0)
    thor (0.17.0)
    tilt (1.3.5)
    treetop (1.4.12)
      polyglot
      polyglot (>= 0.3.1)
    twilio-ruby (3.9.0)
      builder (>= 2.1.2)
      jwt (>= 0.1.2)
      multi_json (>= 1.3.0)
    tzinfo (0.3.37)
    uglifier (1.3.0)
      execjs (>= 0.3.0)
      multi_json (~> 1.0, >= 1.0.2)
    uuidtools (2.1.3)
    warden (1.2.1)
      rack (>= 1.0)
    whenever (0.8.2)
      activesupport (>= 2.3.4)
      chronic (>= 0.6.3)
    will_paginate (3.0.4)

PLATFORMS
  ruby

DEPENDENCIES
  activerecord-postgres-hstore
  acts_as_list
  ancestry
  bootstrap-sass
  carrierwave
  coffee-rails (~> 3.2.1)
  devise
  formtastic
  formtastic-bootstrap
  geocoder
  google-api-client
  googlestaticmap
  haml-rails
  highcharts-rails (~> 3.0.0)
  jquery-rails
  jquery-timepicker-rails
  jquery-ui-rails
  libv8
  mysql2!
  nested_form
  omniauth-google-oauth2
  pg
  public_activity
  rails (= 3.2.12)
  ri_cal
  sass-rails (~> 3.2.3)
  therubyracer
  thin
  twilio-ruby
  uglifier (>= 1.0.3)
  vestal_versions!
  whenever
  will_paginate (~> 3.0)

Reply via email to