ruby on rails - GemFile is missing? -


i'm trying configure project sprout as3 on ubuntu 14.10, i'm getting error when i'm trying configure project(sprout-as3 someproject), on official website of projectsprout said need execute command: bundle install, , got error:

could not locate gemfile or .bundle/ directory

searching on web found rubygems file isn't on project directory, dont know is, i'm new on ruby , bundle, if me i'll thankfull?

create new gemfile in project, default gems -

 source "https://rubygems.org"    # bundle edge rails instead: gem 'rails', github: 'rails/rails'  gem 'rails', '4.1.1'  # use sqlite3 database active record  gem 'sqlite3'  # use scss stylesheets  gem 'sass-rails', '~> 4.0.3'  # use uglifier compressor javascript assets  gem 'uglifier', '>= 1.3.0'  # use coffeescript .js.coffee assets , views  gem 'coffee-rails', '~> 4.0.0'  # see https://github.com/sstephenson/execjs#readme more supported runtimes  # gem 'therubyracer',  platforms: :ruby   # use jquery javascript library  gem 'jquery-rails'  # turbolinks makes following links in web application faster. read more: https://github.com/rails/turbolinks  gem 'turbolinks'  # build json apis ease. read more: https://github.com/rails/jbuilder  gem 'jbuilder', '~> 2.0'  # bundle exec rake doc:rails generates api under doc/api.  gem 'sdoc', '~> 0.4.0',          group: :doc   # spring speeds development keeping application running in background. read more: https://github.com/rails/spring  gem 'spring',        group: :development    ........... 

and try bundle install


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -