pkg-config 1.0.0 → 1.0.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.
Files changed (5) hide show
  1. data/NEWS +4 -0
  2. data/README.rdoc +7 -0
  3. data/Rakefile +1 -1
  4. data/lib/pkg-config.rb +1 -1
  5. metadata +3 -3
data/NEWS CHANGED
@@ -1,5 +1,9 @@
1
1
  = NEWS
2
2
 
3
+ == 1.0.1 - 2010/09/02
4
+
5
+ * support installing without gem.
6
+
3
7
  == 1.0.0 - 2010/09/02
4
8
 
5
9
  * Initial release!
@@ -14,8 +14,15 @@ A pkg-config implementation by Ruby.
14
14
 
15
15
  == Install
16
16
 
17
+ === Package
18
+
17
19
  # gem install pkg-config
18
20
 
21
+ === No package
22
+
23
+ % ruby extconf.rb
24
+ # make install
25
+
19
26
  == Documents
20
27
 
21
28
  * TODO
data/Rakefile CHANGED
@@ -45,6 +45,6 @@ project = Hoe.spec('pkg-config') do |project|
45
45
  :has_rdoc => false,
46
46
  }
47
47
  news = base_dir + "NEWS"
48
- project.changes = news.read.gsub(/^== (?m:.*)/, '')
48
+ project.changes = news.read.split(/^== .*$/)[1].strip
49
49
  project.description = "A pkg-cofnig implementation by Ruby"
50
50
  end
@@ -251,7 +251,7 @@ class PackageConfig
251
251
  end
252
252
 
253
253
  module PKGConfig
254
- VERSION = "1.0.0"
254
+ VERSION = "1.0.1"
255
255
 
256
256
  module_function
257
257
  def msvc?
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pkg-config
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 1
10
+ version: 1.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Kouhei Sutou