Edgars
Edgars

Reputation: 953

Using git clone in existing application

I have existing app.

I did like this:

git clone https://github.com/stefanoverna/activeadmin-globalize.git -b master

To use ActiveAdmin-globalize gem. After this I have new folder activeadmin-globalize, but how can I actually use this gem, because in these subfolders are other folders like app/ lib/ config/ etc.

How can I make it to work, but still keep my existing app functionality ? Thanks

Upvotes: 0

Views: 91

Answers (2)

Rahul Singh
Rahul Singh

Reputation: 3427

if u still got same error try with regular git syntax

gem "activeadmin-globalize", git: 'https://github.com/stefanoverna/activeadmin-globalize', branch: 'master'

Upvotes: 2

maringan
maringan

Reputation: 195

Add this line to Gemfile

gem "activeadmin-globalize", github: 'stefanoverna/activeadmin-globalize',
branch: 'master'

and in root dir run:

bundle install

Read please https://github.com/stefanoverna/activeadmin-globalize#installation

Upvotes: 3

Related Questions