public
Description: Handles pushing data to a remote OneBody instance.
Homepage:
Clone URL: git://github.com/seven1m/onebody-updateagent.git
onebody-updateagent / onebody-updateagent.gemspec
100644 16 lines (15 sloc) 0.896 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Gem::Specification.new do |s|
  s.name = "onebody-updateagent"
  s.version = "0.3.0"
  s.author = "Tim Morgan"
  s.email = "tim@timmorgan.org"
  s.homepage = "http://github.com/seven1m/onebody-updateagent"
  s.summary = "Companion to OneBody that handles sync with external data source."
  s.files = %w(example.yml example_using_converter.yml README.markdown bin/update_onebody lib/onebody-updateagent.rb lib/updateagent/hash_extensions.rb lib/updateagent/resources.rb lib/updateagent/schema.rb lib/updateagent/updateagent.rb lib/updateagent/converters/acs_converter.rb lib/updateagent/updaters/family_updater.rb lib/updateagent/updaters/people_updater.rb lib/updateagent/updaters/external_group_updater.rb)
  s.require_path = "lib"
  s.has_rdoc = false
  s.add_dependency("fastercsv")
  s.add_dependency("highline")
  s.add_dependency("activeresource")
  s.executables = ['update_onebody']
end