kballard-osx-plist 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest.txt CHANGED
@@ -4,7 +4,6 @@ README.txt
4
4
  Rakefile
5
5
  ext/plist/extconf.rb
6
6
  ext/plist/plist.c
7
- plist.gemspec
8
7
  test/fixtures/xml_plist
9
8
  test/suite.rb
10
9
  test/test_plist.rb
data/README.txt CHANGED
@@ -1,6 +1,7 @@
1
1
  == osx/plist
2
- by Kevin Ballard
3
- http://github.com/kballard/osx-plist
2
+
3
+ * http://github.com/kballard/osx-plist
4
+ * by Kevin Ballard
4
5
 
5
6
  == DESCRIPTION:
6
7
 
data/Rakefile CHANGED
@@ -1,10 +1,9 @@
1
1
  require 'rubygems'
2
2
  require 'hoe'
3
3
 
4
- Hoe.new('osx-plist', "1.0.1") do |p|
5
- p.author = "Kevin Ballard"
6
- p.email = "kevin@sb.org"
7
- p.summary = "Property List manipulation for OS X"
8
- p.url = "http://www.github.com/kballard/osx-plist"
9
- p.spec_extras = {:extensions => "ext/plist/extconf.rb"}
4
+ Hoe.spec 'osx-plist' do
5
+ developer("Kevin Ballard", "kevin@sb.org")
6
+ self.version = "1.0.2"
7
+ self.summary = "Property List manipulation for OS X"
8
+ self.spec_extras = {:extensions => "ext/plist/extconf.rb"}
10
9
  end
data/ext/plist/extconf.rb CHANGED
@@ -1,7 +1,5 @@
1
1
  #!/usr/bin/ruby
2
2
  require 'mkmf'
3
- newFlags = " -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk"
4
- $CFLAGS += newFlags
5
- $LDFLAGS += ' -framework CoreFoundation' + newFlags + ' -undefined suppress -flat_namespace'
3
+ $LDFLAGS += ' -framework CoreFoundation -undefined suppress -flat_namespace'
6
4
  $LIBRUBYARG_SHARED=""
7
5
  create_makefile("osx/plist")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kballard-osx-plist
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Ballard
@@ -9,20 +9,22 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-02-05 00:00:00 -08:00
12
+ date: 2009-09-17 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: hoe
17
+ type: :development
17
18
  version_requirement:
18
19
  version_requirements: !ruby/object:Gem::Requirement
19
20
  requirements:
20
21
  - - ">="
21
22
  - !ruby/object:Gem::Version
22
- version: 1.7.0
23
+ version: 2.3.3
23
24
  version:
24
25
  description: osx/plist is a Ruby library for manipulating Property Lists natively using the built-in support in OS X.
25
- email: kevin@sb.org
26
+ email:
27
+ - kevin@sb.org
26
28
  executables: []
27
29
 
28
30
  extensions:
@@ -38,12 +40,12 @@ files:
38
40
  - Rakefile
39
41
  - ext/plist/extconf.rb
40
42
  - ext/plist/plist.c
41
- - plist.gemspec
42
43
  - test/fixtures/xml_plist
43
44
  - test/suite.rb
44
45
  - test/test_plist.rb
45
46
  has_rdoc: true
46
- homepage: http://www.github.com/kballard/osx-plist
47
+ homepage: http://github.com/kballard/osx-plist
48
+ licenses:
47
49
  post_install_message:
48
50
  rdoc_options:
49
51
  - --main
@@ -65,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
65
67
  requirements: []
66
68
 
67
69
  rubyforge_project: osx-plist
68
- rubygems_version: 1.2.0
70
+ rubygems_version: 1.3.5
69
71
  signing_key:
70
72
  specification_version: 2
71
73
  summary: Property List manipulation for OS X