rangefinder 0.0.1 → 0.0.2

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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ODRiODljY2Q5MmFhZjBjYzg1ZjI5Y2YxMDgyZmY1YWZiOTk0MTA4YQ==
4
+ MDBjZWQ3Mzg5ZmE3ZTgzMDQ2NDViOGQ3ODU1ZDk2ODVlNjQyZDE2Ng==
5
5
  data.tar.gz: !binary |-
6
- YTgwODAzMjA3ODNjNTZmYjZkYWNhMGQ3YjM4MTdjYmMzNzFmN2RmMg==
6
+ NDMxNDc1ODI2MDkyZTI1NTVjZTc0ZmU0MGY1MzM2MDQ2ZmQ1YzU2Yw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NDk5NWUwNWI0NGMyMzRlMTcwYWI5OGQ0N2M5NGNiMzU2MTc5ZDM1NmFkMTU2
10
- NWRmZTRiYWMwOTVlZmFjZTc2OGQyZDY5ODdjMzk2ODk0Yjg5MjAyYjQ4YWQ2
11
- MzJiY2ZhOGY4NDkxNGI2NjU1NmIzZTg0YWVkZmJiMWUxYzU5NWQ=
9
+ OTA5Y2M1M2MzMjBkZmU0MTNkNTliNzhiZTNlZTI5NTM3MGFhYmQ1ZGU3NDNh
10
+ YTBiOWViNWQ1YmE4ZWFlOTg4NzZiMzdkZjY3ZDFjYTJjNjM0ZTQ0ZjNiNzNi
11
+ ZjAwZjVmNGFjMmU1ZTM3NDYwM2FiOGQ2YzczMjdmNzBjN2YwMzI=
12
12
  data.tar.gz: !binary |-
13
- ZDFmMmE3NWM2YTMzNDNhNjU0ZTdjYWU2YTRmNjZjYmZmMGQ5ZTllYzY2YTdl
14
- ZWJiNGY3ZjZlOTM1YmU1ZmYzYzUxZTVjYzE2MGE2OWY0OTA0MGM4YjljZTFi
15
- YWNlZWM2NjA0MzA1MjBmYjlhNTMwNDE1OWMzYjhlYzcyMGJhMTI=
13
+ OGUwZTBkZDEyYTEyZjg0YjkwMTQ0NjgzYzUxYWZkZmJkZTRlYTQ0ZmZmY2M3
14
+ MWJkMTEzM2Q0NDc4OTdkMmM1MGYxY2ZjNDAxZWU0NjNjNzFlOTRmZDRiMmIx
15
+ Y2QxOGQ5OWU3ZGUwMzQ1Zjc3YjVlYjAyZDE2NGM5NTRkYmJlMGY=
data/CHANGELOG CHANGED
@@ -1,3 +1,9 @@
1
+ 0.0.2 / 2014-01-10
2
+
3
+ * Bug fixes
4
+
5
+ * Rangefinder.probe should just return ranges!
6
+
1
7
  0.0.1 / 2014-01-10
2
8
 
3
9
  Initial release!
data/README.md CHANGED
@@ -45,7 +45,7 @@ Now you can scrape them one by one:
45
45
 
46
46
  It's nice when your probe block makes a call that is cached somehow. That way when you go back and use the ranges, you're not hitting all those URLs over again.
47
47
 
48
- ##$ Goals
48
+ ### Goals
49
49
 
50
50
  By default
51
51
 
@@ -11,6 +11,7 @@ class Rangefinder
11
11
 
12
12
  def probe(options = {}, &blk)
13
13
  ranges, _, _ = probe_with_hits_and_misses(options, &blk)
14
+ ranges
14
15
  end
15
16
 
16
17
  def probe_with_hits_and_misses(options = {}, &blk)
@@ -1,3 +1,3 @@
1
1
  class Rangefinder
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rangefinder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seamus Abshere