SocImp is a Ruby gem that enables your application to import and save images from social media services. Currently supported services are Twitter, Instagram, and Tumblr.
SocImp is not yet available on RubyGems as it is very early in its development. The easiest way is using Bundler:
In your Gemfile:
gem 'soc_imp', :git => 'git@github.com:stoicsquirrel/soc_imp.git'
In your application directory:
$ bundle install
Once the gem is installed, you'll need to run the install generator:
rails generate soc_imp:install
The generator will install an initializer with all of SocImp's configuration options.
It is important to go into the generated config file and set up ...
SocImp relies on the Twitter, Tumblr, and Instagram gems for access to their respective services. Add them to your Gemfile as needed:
gem 'twitter', '~> 4.0'
gem 'tumblr_client'
gem 'instagram'