xcodeide 0.1.0 → 0.1.1

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.
@@ -0,0 +1,4 @@
1
+ == 0.1.1
2
+
3
+ * Fix require statements in lib/xcodeide.rb that erroneously referred to
4
+ vstudioide, rather than xcodeide. I got burned by copy-n-paste.
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ require 'rake/rdoctask'
6
6
  require 'rake/testtask'
7
7
 
8
8
  PKG_NAME = 'xcodeide'
9
- PKG_VERSION = '0.1.0'
9
+ PKG_VERSION = '0.1.1'
10
10
 
11
11
  PKG_FILES = FileList[
12
12
  '[A-Z]*',
@@ -1,2 +1,2 @@
1
- require 'vstudioide/version'
2
- require 'vstudioide/project'
1
+ require 'xcodeide/version'
2
+ require 'xcodeide/project'
@@ -1,5 +1,5 @@
1
1
  module XcodeIDE
2
2
 
3
- VERSION = '0.1.0'.freeze
3
+ VERSION = '0.1.1'.freeze
4
4
 
5
5
  end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: xcodeide
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.0
7
- date: 2008-01-19 00:00:00 -08:00
6
+ version: 0.1.1
7
+ date: 2008-01-23 00:00:00 -08:00
8
8
  summary: A Ruby library for parsing Xcode file formats.
9
9
  require_paths:
10
10
  - lib
@@ -29,6 +29,7 @@ post_install_message:
29
29
  authors:
30
30
  - Jared Hanson
31
31
  files:
32
+ - CHANGELOG
32
33
  - LICENSE
33
34
  - Rakefile
34
35
  - README