Sha256: 8e76677c9a1c578190e05ae59c9fe5938bd8a552e82fdd1a8eed7da46d648a0b

Contents?: true

Size: 906 Bytes

Versions: 19

Compression:

Stored size: 906 Bytes

Contents

# Copyright (C) 2008-2011 AMEE UK Ltd. - http://www.amee.com
# Released as Open Source Software under the BSD 3-Clause license. See LICENSE.txt for details.

dir = File.dirname(__FILE__) + '/../lib'
$LOAD_PATH << dir unless $LOAD_PATH.include?(dir)

#require 'rubygems'
require 'amee'
require 'optparse'

# Command-line options - get username, password, and server
options = {}
OptionParser.new do |opts|
  opts.on("-u", "--username USERNAME", "AMEE username") do |u|
    options[:username] = u
  end  
  opts.on("-p", "--password PASSWORD", "AMEE password") do |p|
    options[:password] = p
  end
  opts.on("-s", "--server SERVER", "AMEE server") do |s|
    options[:server] = s
  end
end.parse!

# Connect
connection = AMEE::Connection.new(options[:server], options[:username], options[:password])

# Create a new profile
profile = AMEE::Profile::Profile.create(connection)
puts "#{profile.uid} created"

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
amee-4.4.0 examples/create_profile.rb
amee-4.3.2 examples/create_profile.rb
amee-4.3.1 examples/create_profile.rb
amee-4.3.0 examples/create_profile.rb
amee-4.2.0 examples/create_profile.rb
amee-3.2.1 examples/create_profile.rb
amee-3.2.0 examples/create_profile.rb
amee-4.1.7 examples/create_profile.rb
amee-4.1.6 examples/create_profile.rb
amee-4.1.5 examples/create_profile.rb
amee-4.1.4 examples/create_profile.rb
amee-4.1.3 examples/create_profile.rb
amee-3.1.2 examples/create_profile.rb
amee-3.1.1 examples/create_profile.rb
amee-4.1.2 examples/create_profile.rb
amee-4.1.1 examples/create_profile.rb
amee-4.1.0 examples/create_profile.rb
amee-4.0.0 examples/create_profile.rb
amee-3.0.1 examples/create_profile.rb