forked from twilio/twilio-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the Rakefile, examples, and tests for move over to Gemcutter
- Loading branch information
Kyle Conroy
committed
Jan 8, 2010
1 parent
a583e9a
commit 7d64f71
Showing
6 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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( | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|