mirrored 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.txt CHANGED
@@ -1,5 +1,11 @@
1
- 0.1.1 - Oct 6, 2007
2
- * Updated README file as I forgot to
1
+ 0.1.3
2
+ * removed specific hpricot version requirement, instead now requiring anything over 0.5
3
+
4
+ 0.1.2
5
+ * added MIT-LICENSE
3
6
 
4
- 0.1.0 - Oct 6, 2007
5
- * initial release
7
+ 0.1.1
8
+ * Updated README file as I forgot to
9
+
10
+ 0.1.0
11
+ * initial release
@@ -2,7 +2,7 @@ module Mirrored #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/test/test_base.rb CHANGED
@@ -26,8 +26,8 @@ class TestBase < Test::Unit::TestCase
26
26
 
27
27
  test 'should find correct api url based on service' do
28
28
  Mirrored::Base.establish_connection(:delicious, 'jnunemaker', 'password')
29
- assert_equal 'https://api.del.icio.us/v1', Mirrored::Base.api_url
29
+ assert_equal 'https://api.del.icio.us/v1/', Mirrored::Base.api_url
30
30
  Mirrored::Base.establish_connection(:magnolia, 'jnunemaker', 'password')
31
- assert_equal 'https://ma.gnolia.com/api/mirrord/v1', Mirrored::Base.api_url
31
+ assert_equal 'https://ma.gnolia.com/api/mirrord/v1/', Mirrored::Base.api_url
32
32
  end
33
33
  end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: mirrored
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.2
7
- date: 2007-10-23 00:00:00 -04:00
6
+ version: 0.1.3
7
+ date: 2007-10-28 00:00:00 -04:00
8
8
  summary: Wrapper for delicious and magnolia mirrored apis
9
9
  require_paths:
10
10
  - lib