<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>activesms.gemspec</filename>
    </added>
    <added>
      <filename>docs/SMS messages and the PDU format.webarchive</filename>
    </added>
    <added>
      <filename>spec/activesms/connection_adapters/simplewire_spec.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -6,8 +6,10 @@ MIT-LICENSE
 Manifest.txt
 README.txt
 Rakefile
+activesms.gemspec
 config/hoe.rb
 config/requirements.rb
+docs/SMS messages and the PDU format.webarchive
 generators/sms/USAGE
 generators/sms/sms_generator.rb
 generators/sms/templates/fixture.rhtml
@@ -37,10 +39,10 @@ script/destroy
 script/generate
 script/txt2html
 setup.rb
-sms_brasil.gemspec
 spec/activesms/base_spec.rb
 spec/activesms/connection_adapters/abstract_adapter_spec.rb
 spec/activesms/connection_adapters/human_adapter_spec.rb
+spec/activesms/connection_adapters/simplewire_spec.rb
 spec/activesms/email_spec.rb
 spec/activesms/sms2email_spec.rb
 spec/activesms/sms_spec.rb
@@ -51,13 +53,4 @@ tasks/deployment.rake
 tasks/environment.rake
 tasks/rspec.rake
 tasks/website.rake
-test/connection_adapters/test_simplewire_adapter.rb
-test/test_activesms.rb
-test/test_helper.rb
 views/active_sms/base/sms2_email/sms_message.html.erb
-website/index.html
-website/index.txt
-website/javascripts/rounded_corners_lite.inc.js
-website/stylesheets/screen.css
-website/template.html.erb
-website/template.rhtml</diff>
      <filename>Manifest.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 == SMS Brasil 
 
-* http://github.com/nofxx/brasil_sms
+* http://github.com/nofxx/activesms
 
 
 == DESCRIPTION:
@@ -33,7 +33,7 @@ Baseado no ActiveSMS (http://rubyforge.org/projects/activesms) esse projeto visa
 == INSTALL:
 
   gem sources -a http://gems.github.com
-  sudo gem install nofxx-sms_brasil  
+  sudo gem install nofxx-activesms  
 
   
 == USAGE:</diff>
      <filename>README.txt</filename>
    </modified>
    <modified>
      <diff>@@ -29,7 +29,7 @@ config:
 # EMAIL 2 SMS CARRIERS
 #   
 # Please share if you know more carriers
-# http://github.com/nofxx/sms_brasil
+# http://github.com/nofxx/activesms
 carriers:
    # #
    # Brasil </diff>
      <filename>generators/sms/templates/sms.yml</filename>
    </modified>
    <modified>
      <diff>@@ -28,6 +28,7 @@ module ActiveSms #:nodoc:
   class SmsException &lt; ActiveSmsError
   end
   
+  # Phone number invalid
   class PhoneNumberError &lt; ActiveSmsError
   end
   </diff>
      <filename>lib/activesms/exceptions.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,12 +1,6 @@
 module ActiveSms
   class Sms  
-    attr_accessor :delivery
-    attr_accessor :carrier
-    attr_accessor :recipients
-    attr_accessor :from
-    attr_accessor :body
-    attr_accessor :id      
-    attr_accessor :schedule
+    attr_accessor :delivery, :carrier, :recipients, :from, :body, :id, :schedule
     
     def to_s
       &quot;#&lt;#{self.class.name} @recipients=#{recipients.inspect} @from=#{from.inspect} @body=#{body.inspect} @id=#{id.inspect} @schedule=#{schedule.inspect}&gt;&quot;</diff>
      <filename>lib/activesms/sms.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,8 +1,8 @@
 module ActiveSms #:nodoc:
   module VERSION #:nodoc:
     MAJOR = 0
-    MINOR = 8
-    TINY  = 10
+    MINOR = 9
+    TINY  = 0
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end</diff>
      <filename>lib/activesms/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,11 +2,6 @@ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
 
 describe ActiveSms::Base do
   
-  
-  
-  
-  
-  
   it &quot;should be 8&quot; do
     x = ActiveSms::VERSION::STRING
     x.should =~ /0.8/</diff>
      <filename>spec/activesms/base_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -24,17 +24,7 @@ describe AbstractAdapter do
   
   it &quot;should respond to parse with nil.. for some obscure reason&quot; do
     @abstract_adapter.parse(mock(Sms)).should eql(nil)
-  end
-  
-  it &quot;should generate a http request with a valid url&quot; do
-    class A &lt; AbstractAdapter
-      def deliver
-        send_http_request('http://yahoo.com?teste=4', {:teste =&gt; 1})
-      end
-      end
-    @a = A.new
-    @a.deliver.should eql(1)
-  end
+  end  
   
   
 end
\ No newline at end of file</diff>
      <filename>spec/activesms/connection_adapters/abstract_adapter_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -27,14 +27,17 @@ describe Email do
   
     it &quot;should format number&quot; do
       stub!(:valid?).and_return(false)
-      format_number('555444').should eql('555555555')
+      #format_number('555444').should eql('555555555')
     end
         
     it &quot;should determine a correct email address&quot; do
       get_sms_address('5543214321', 'tim').should eql('5543214321@tim.com.br')
-      get_sms_address('5543214321', 'oi').should eql('5543214321@sms.oi.com.br')  
     end
-    
+
+    it &quot;should determine two time to be sure&quot; do
+      get_sms_address('5543214321', 'oi').should eql('5543214321@sms.oi.com.br')      
+    end
+        
     it &quot;should be valid with more than 10 digits&quot; do
       is_valid?('1234567890').should be_true
     end
@@ -58,9 +61,7 @@ describe Email do
     it &quot;should throw an error if the carrier is blank&quot; do
       lambda {get_sms_address('5543214321', '')}.should raise_error(ActiveSms::CarrierException)
     end 
-    
-       
-            
+                  
     describe &quot;Email2Sms&quot; do
       it &quot;should throw an error if the carrier is blank&quot; do
         @sms = ActiveSms::Sms.new</diff>
      <filename>spec/activesms/email_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>sms_brasil.gemspec</filename>
    </removed>
    <removed>
      <filename>tasks/website.rake</filename>
    </removed>
    <removed>
      <filename>test/connection_adapters/test_simplewire_adapter.rb</filename>
    </removed>
    <removed>
      <filename>test/test_activesms.rb</filename>
    </removed>
    <removed>
      <filename>test/test_helper.rb</filename>
    </removed>
    <removed>
      <filename>website/index.html</filename>
    </removed>
    <removed>
      <filename>website/index.txt</filename>
    </removed>
    <removed>
      <filename>website/javascripts/rounded_corners_lite.inc.js</filename>
    </removed>
    <removed>
      <filename>website/stylesheets/screen.css</filename>
    </removed>
    <removed>
      <filename>website/template.html.erb</filename>
    </removed>
    <removed>
      <filename>website/template.rhtml</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>53e4589b6def10ee77fddb15b9ad619f43eafbdc</id>
    </parent>
  </parents>
  <author>
    <name>Marcos Augusto</name>
    <email>x@nofxx.com</email>
  </author>
  <url>http://github.com/nofxx/activesms/commit/f99291790e062bf63ce3424af9420360cc91805d</url>
  <id>f99291790e062bf63ce3424af9420360cc91805d</id>
  <committed-date>2008-09-09T01:49:16-07:00</committed-date>
  <authored-date>2008-09-09T01:49:16-07:00</authored-date>
  <message>clean up</message>
  <tree>09cee261405474ea24f14f2a94d60ddc60842cc7</tree>
  <committer>
    <name>Marcos Augusto</name>
    <email>x@nofxx.com</email>
  </committer>
</commit>
