anaximander 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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 009aaa84665dcd8497a59b9e47acef29008613ea
4
- data.tar.gz: 956c8d4a45e84443af161c5b4c78c4c33f8a54fb
3
+ metadata.gz: f9e3359bae54bf4ecd9fc4a37f84b0c0df636070
4
+ data.tar.gz: 82313abe2e66bb791028405f7152fb062c7189b5
5
5
  SHA512:
6
- metadata.gz: af827976b24b5f734391e3229a2c6fbd2a05ea012b7766517367d547beca19964bacfd59e96c3a857d12a2ae18d071c6c34f70fe2a7e6354d639b6baab0aa865
7
- data.tar.gz: 4e49ba0bb2b67931ac4826f3e2e1913c3ae32885af892226c563488ff069e044c3f36de3c799885381a2581f53f96bb81cb421563874134195f6b9ae328313cd
6
+ metadata.gz: 59cffdde5da53a7075002133514fe9f5500944cf6cdb7ee5a953a3a16504fa0229c2ed0d9300b27f40ab4cac75bda31afce4b0f89790f5fb7cf0adfaccc36a03
7
+ data.tar.gz: 3e774f5945f2d658276f3444ff87cbe2c18c1ca23f3c4ffb42534e5ad3beb1328d077cf2357c8e8dd07fb62992c45e977d3994c0eb3a0d3aa72811d6ab1a5bdd
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ script: "rake"
2
+ rvm:
3
+ - "2.1.1"
4
+ - "2.1.2"
data/README.md CHANGED
@@ -1,3 +1,6 @@
1
+ [![TravisCI](https://travis-ci.org/mnoble/anaximander.svg?branch=master)](https://travis-ci.org/mnoble/anaximander)  
2
+ [![CodeClimate](https://codeclimate.com/github/mnoble/anaximander.png)](https://codeclimate.com/github/mnoble/anaximander)
3
+
1
4
  # Anaximander
2
5
 
3
6
  Anaximander is a small library for crawling a website and rendering the
@@ -13,6 +16,12 @@ gem install anaximander
13
16
  mapgen <url>
14
17
  ```
15
18
 
19
+ ## Example Site
20
+
21
+ ```sh
22
+ mapgen http://anaximander.herokuapp.com/index.html
23
+ ```
24
+
16
25
  ## Running Tests
17
26
 
18
27
  ```sh
@@ -40,7 +49,7 @@ map the entire world.
40
49
 
41
50
  ## Contributing
42
51
 
43
- 1. Fork it ( https://github.com/[my-github-username]/anaximander/fork )
52
+ 1. Fork it ( https://github.com/mnoble/anaximander/fork )
44
53
  2. Create your feature branch (`git checkout -b my-new-feature`)
45
54
  3. Commit your changes (`git commit -am 'Add some feature'`)
46
55
  4. Push to the branch (`git push origin my-new-feature`)
data/Rakefile CHANGED
@@ -1,2 +1,5 @@
1
1
  require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+ RSpec::Core::RakeTask.new(:spec)
4
+ task :default => :spec
2
5
 
@@ -1,3 +1,3 @@
1
1
  module Anaximander
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anaximander
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
  - Matte Noble
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-13 00:00:00.000000000 Z
11
+ date: 2014-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -132,6 +132,7 @@ extra_rdoc_files: []
132
132
  files:
133
133
  - ".gitignore"
134
134
  - ".rspec"
135
+ - ".travis.yml"
135
136
  - Gemfile
136
137
  - LICENSE.txt
137
138
  - README.md