-
Notifications
You must be signed in to change notification settings - Fork 63
Lesson: Install ActiveFedora
Bess Sadler edited this page Jan 11, 2017
·
2 revisions
This Tutorial is known to work with ActiveFedora version 9.0.0.
Please update this wiki to reflect any other versions that have been tested.
- Create a project that has ActiveFedora installed as a dependency
To get started, you will create a new folder, set up a Gemfile to install ActiveFedora, and then run bundler.
mkdir af-tutorial
cd af-tutorial
Using whichever editor you prefer, create a file (in af-tutorial directory) called Gemfile with the following contents:
source 'http://rubygems.org'
gem 'active-fedora', '~> 9.0.0'
You will need the bundler Gem. If you don't have it, run gem install bundler
.
Now run bundler to install the gem:
bundle install
You should now be set to use irb to run the following examples.
Proceed to Lesson: Use RDF to Represent Flat Metadata like Dublin Core (AF7)