ruby-protocol-buffers 0.8.5 → 1.0.0

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/.gitignore +10 -0
  2. data/Changelog.md +4 -0
  3. data/Rakefile +1 -3
  4. data/VERSION +1 -1
  5. metadata +14 -9
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /*.pb.rb
2
+ /*.d
3
+ /*.proto
4
+ coverage
5
+ rdoc
6
+ pkg
7
+ prof
8
+ tests
9
+ d/*
10
+ tmp
data/Changelog.md CHANGED
@@ -1,3 +1,7 @@
1
+ # ruby-protocol-buffers 1.0.0
2
+
3
+ * The library has reached to 1.0 status, hurrah
4
+
1
5
  # ruby-protocol-buffers 0.8.5
2
6
 
3
7
  * Add support for Microsoft Windows (tested on Windows 7)
data/Rakefile CHANGED
@@ -28,7 +28,7 @@ begin
28
28
  end
29
29
  Jeweler::GemcutterTasks.new
30
30
  rescue LoadError
31
- puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
31
+ # You'll need to install Jeweler to build packages
32
32
  end
33
33
 
34
34
  require 'spec/rake/spectask'
@@ -43,8 +43,6 @@ Spec::Rake::SpecTask.new(:rcov) do |spec|
43
43
  spec.rcov = true
44
44
  end
45
45
 
46
- task :spec => :check_dependencies
47
-
48
46
  task :default => :spec
49
47
 
50
48
  require 'rake/rdoctask'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.8.5
1
+ 1.0.0
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-protocol-buffers
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
4
+ hash: 23
5
+ prerelease:
5
6
  segments:
7
+ - 1
8
+ - 0
6
9
  - 0
7
- - 8
8
- - 5
9
- version: 0.8.5
10
+ version: 1.0.0
10
11
  platform: ruby
11
12
  authors:
12
13
  - Brian Palmer
@@ -14,7 +15,7 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-12-19 00:00:00 -07:00
18
+ date: 2011-03-07 00:00:00 -07:00
18
19
  default_executable: ruby-protoc
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
@@ -25,6 +26,7 @@ dependencies:
25
26
  requirements:
26
27
  - - ">="
27
28
  - !ruby/object:Gem::Version
29
+ hash: 13
28
30
  segments:
29
31
  - 1
30
32
  - 2
@@ -44,6 +46,7 @@ extra_rdoc_files:
44
46
  - README.md
45
47
  files:
46
48
  - .document
49
+ - .gitignore
47
50
  - Changelog.md
48
51
  - LICENSE
49
52
  - README.md
@@ -89,8 +92,8 @@ homepage: http://github.com/mozy/ruby-protocol-buffers
89
92
  licenses: []
90
93
 
91
94
  post_install_message:
92
- rdoc_options: []
93
-
95
+ rdoc_options:
96
+ - --charset=UTF-8
94
97
  require_paths:
95
98
  - lib
96
99
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -98,6 +101,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
98
101
  requirements:
99
102
  - - ">="
100
103
  - !ruby/object:Gem::Version
104
+ hash: 59
101
105
  segments:
102
106
  - 1
103
107
  - 8
@@ -108,19 +112,20 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
112
  requirements:
109
113
  - - ">="
110
114
  - !ruby/object:Gem::Version
115
+ hash: 3
111
116
  segments:
112
117
  - 0
113
118
  version: "0"
114
119
  requirements: []
115
120
 
116
121
  rubyforge_project:
117
- rubygems_version: 1.3.7
122
+ rubygems_version: 1.6.1
118
123
  signing_key:
119
124
  specification_version: 3
120
125
  summary: Ruby compiler and runtime for the google protocol buffers library.
121
126
  test_files:
122
- - examples/json_protobuf.rb
123
127
  - spec/compiler_spec.rb
124
128
  - spec/fields_spec.rb
125
129
  - spec/runtime_spec.rb
126
130
  - spec/spec_helper.rb
131
+ - examples/json_protobuf.rb