diff --git a/Gemfile b/Gemfile index d11d221..dd9b307 100644 --- a/Gemfile +++ b/Gemfile @@ -41,4 +41,5 @@ gem 'jquery-rails' gem "compass-rails", "~> 1.0.0", :group => :assets gem "compass-susy-plugin", "~> 0.9.0", :group => :assets -gem "dfxml", :git => "git://github.com/anarchivist/dfxml.git" \ No newline at end of file +gem "dfxml", :git => "git://github.com/anarchivist/dfxml.git" +gem "curb" diff --git a/README.md b/README.md index a5c9c15..341fb29 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,10 @@ Get the application's gems: $ bundle install +Migrate database: + + $ rake db:migrate + Start up Solr: $ cd jetty @@ -41,4 +45,4 @@ Start Gumshoe: $ rails s -Open your browser to http://localhost:3000/ and start playing! \ No newline at end of file +Open your browser to http://localhost:3000/ and start playing! diff --git a/lib/tasks/gumshoe.rake b/lib/tasks/gumshoe.rake index 0863839..a98bb58 100644 --- a/lib/tasks/gumshoe.rake +++ b/lib/tasks/gumshoe.rake @@ -47,7 +47,7 @@ namespace :gumshoe do task :download do FileUtils.mkdir "images" rescue nil curl = Curl::Easy.new - curl.url = "http://digitalcorpora.org/corp/images/nps/nps-2009-casper-rw/ubnist1.casper-rw.gen2.aff" + curl.url = "http://digitalcorpora.org/corp/nps/drives/nps-2009-casper-rw/ubnist1.casper-rw.gen2.aff" curl.perform file = File.new('images/ubnist1.casper-rw.gen2.aff', 'wb') file << curl.body_str @@ -56,4 +56,4 @@ namespace :gumshoe do end end -end \ No newline at end of file +end