smacks-apricoteatsgorilla 0.4.6 → 0.4.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,3 @@
1
- $:.unshift(File.join(File.dirname(__FILE__), "apricoteatsgorilla"))
2
-
3
- require "apricoteatsgorilla"
4
- require "xml_node"
1
+ %w(apricoteatsgorilla xml_node).each do |file|
2
+ require File.join(File.dirname(__FILE__), "apricoteatsgorilla", file)
3
+ end
@@ -1,8 +1,8 @@
1
- require "rubygems"
2
- require "hpricot"
3
- require "iconv"
1
+ %w(rubygems hpricot iconv).each do |gem|
2
+ require gem
3
+ end
4
4
 
5
- # == Apricot eats Gorilla
5
+ # == ApricotEatsGorilla
6
6
  #
7
7
  # Apricot eats Gorilla is a SOAP communication helper. It translates between
8
8
  # SOAP messages (XML) and Ruby Hashes and comes with some additional helpers
data/test/helper.rb CHANGED
@@ -1,5 +1,5 @@
1
- require "rubygems"
2
- require "test/unit"
3
- require "shoulda"
1
+ %w(rubygems test/unit shoulda).each do |gem|
2
+ require gem
3
+ end
4
4
 
5
5
  require File.join(File.dirname(__FILE__), "..", "lib", "apricoteatsgorilla")
@@ -1,7 +1,3 @@
1
- $:.unshift(File.join(File.dirname(__FILE__), "apricoteatsgorilla"))
2
-
3
- require "test_shortcut_method"
4
- require "test_xml_to_hash"
5
- require "test_hash_to_xml"
6
- require "test_soap_envelope"
7
- require "test_xml_node"
1
+ %w(shortcut xml_to_hash hash_to_xml soap_envelope xml_node).each do |file|
2
+ require File.join(File.dirname(__FILE__), "apricoteatsgorilla", "test_#{file}")
3
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smacks-apricoteatsgorilla
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.6
4
+ version: 0.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Harrington
@@ -22,7 +22,7 @@ dependencies:
22
22
  - !ruby/object:Gem::Version
23
23
  version: 0.6.164
24
24
  version:
25
- description: SOAP communication helper.
25
+ description: Apricot eats Gorilla is a SOAP communication helper.
26
26
  email:
27
27
  executables: []
28
28
 
@@ -61,12 +61,12 @@ rubyforge_project:
61
61
  rubygems_version: 1.2.0
62
62
  signing_key:
63
63
  specification_version: 2
64
- summary: SOAP communication helper.
64
+ summary: Apricot eats Gorilla is a SOAP communication helper.
65
65
  test_files:
66
66
  - test/test_apricoteatsgorilla.rb
67
67
  - test/helper.rb
68
68
  - test/apricoteatsgorilla/test_hash_to_xml.rb
69
69
  - test/apricoteatsgorilla/test_xml_to_hash.rb
70
- - test/apricoteatsgorilla/test_shortcut_method.rb
70
+ - test/apricoteatsgorilla/test_shortcut.rb
71
71
  - test/apricoteatsgorilla/test_soap_envelope.rb
72
72
  - test/apricoteatsgorilla/test_xml_node.rb