path-to 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.txt +5 -0
  2. data/README.rdoc +6 -2
  3. data/lib/path-to.rb +2 -1
  4. metadata +1 -1
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 0.0.3 2009-04-18
2
+
3
+ * Minor enhancement:
4
+ * Update README with installation and contact info
5
+
1
6
  == 0.0.2 2009-04-18
2
7
 
3
8
  * Minor bugfix:
data/README.rdoc CHANGED
@@ -47,6 +47,10 @@ HTTP support comes courtesy of HTTParty (the Path class includes it). To GET an
47
47
 
48
48
  app.users["dojo"].articles["my-article"].get #=> "<html>...</html>"
49
49
 
50
- == Installation, Dependencies, Testing
50
+ == Installation
51
51
 
52
- TODO
52
+ sudo gem install path-to
53
+
54
+ == Author
55
+
56
+ Mike Burrows (asplake), email mailto:mjb@asplake.co.uk, website positiveincline.com[http://positiveincline.com] (articles tagged path-to[http://positiveincline.com/?tag=path-to])
data/lib/path-to.rb CHANGED
@@ -1,7 +1,8 @@
1
1
  module PathTo
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
4
4
 
5
5
  $:.push File.dirname(__FILE__)
6
+
6
7
  require "path-to/application"
7
8
  require "path-to/path"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: path-to
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Burrows (asplake)