mcpp 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.md +4 -4
  2. data/lib/mcpp/version.rb +1 -1
  3. metadata +2 -2
data/README.md CHANGED
@@ -3,12 +3,12 @@ Mcpp
3
3
 
4
4
  A gem to wrap the libmcpp C preprocessor.
5
5
 
6
- Mcpp itself can be found at http://mccp.sourceforge.net
6
+ Mcpp itself can be found at [http://mcpp.sourceforge.net](http://mcpp.sourceforge.net)
7
7
 
8
8
  Installation
9
9
  ============
10
10
 
11
- 1. Install [mcpp](http://mccp.sourceforge.net) as a shared library.
11
+ 1. Install [mcpp](http://mcpp.sourceforge.net) as a shared library.
12
12
  1. `gem install mcpp`
13
13
 
14
14
  [ffi](https://github.com/ffi/ffi) is a requirement, but should be installed
@@ -25,12 +25,12 @@ The examples are hopefully more enlightening than the previous paragraph was.
25
25
 
26
26
  The actual arguments that can be passed are identical to those used by the
27
27
  command line program, and are enumerated in the mcpp man page, or online at
28
- http://mcpp.svn.sourceforge.net/viewvc/mcpp/trunk/doc/mcpp-manual.html
28
+ [http://mcpp.svn.sourceforge.net/viewvc/mcpp/trunk/doc/mcpp-manual.html](http://mcpp.svn.sourceforge.net/viewvc/mcpp/trunk/doc/mcpp-manual.html)
29
29
 
30
30
  Examples
31
31
  --------
32
32
 
33
- require 'mccp'
33
+ require 'mcpp'
34
34
 
35
35
  # Read from stdin, write to stdout
36
36
  Mcpp.preprocess
@@ -1,3 +1,3 @@
1
1
  module Mcpp
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Michael Dungan