Skip to content

Commit

Permalink
Updated the Rakefile, examples, and tests for move over to Gemcutter
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Conroy committed Jan 8, 2010
1 parent a583e9a commit 7d64f71
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ require 'rubygems'
require 'rake/gempackagetask'

spec = Gem::Specification.new do |s|
s.name = "twilio"
s.name = "twiliolib"
s.version = "2.0.2"
s.author = "Twilio"
s.email = "[email protected]"
s.homepage = "http://www.twilio.com/docs"
s.description = "A Ruby gem for communicating with the Twilio API and generating TwiML"
s.platform = Gem::Platform::RUBY
s.summary = "Some description"
s.summary = "A Ruby gem for communicating with the Twilio API and generating TwiML"
s.files = FileList["{lib}/*"].to_a
s.require_path = "lib"
s.test_files = FileList["{test}/response_spec.rb"].to_a
Expand Down
2 changes: 1 addition & 1 deletion example-rest.rb → examples/example-rest.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env ruby

require "lib/twilio.rb"
require 'twiliolib'

# Twilio REST API version
API_VERSION = '2008-08-01'
Expand Down
2 changes: 1 addition & 1 deletion example-twiml.rb → examples/example-twiml.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require "lib/twilio.rb"
require 'twiliolib'

# ===========================================================================
# 1. Say, Dial, and Play
Expand Down
2 changes: 1 addition & 1 deletion example-utils.rb → examples/example-utils.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env ruby

require "lib/twilio.rb"
require 'twiliolib'

# new Utils Object
utils = Twilio::Utils.new(
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/response_spec.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require File.dirname(__FILE__) + '/../lib/twilio.rb'
require 'twiliolib'

module AccountExampleHelperMethods

Expand Down

0 comments on commit 7d64f71

Please sign in to comment.