amq-protocol 0.5.0 → 0.6.0.pre

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.
data/amq-protocol.gemspec CHANGED
@@ -27,13 +27,6 @@ Gem::Specification.new do |s|
27
27
  s.extra_rdoc_files = ["README.textile"] + Dir.glob("doc/*")
28
28
 
29
29
 
30
- begin
31
- require "changelog"
32
- s.post_install_message = CHANGELOG.new.version_changes
33
- rescue LoadError
34
- # warn "You have to have changelog gem installed for post install message"
35
- end
36
-
37
30
  # RubyForge
38
31
  s.rubyforge_project = "amq-protocol"
39
32
  end
@@ -1,5 +1,5 @@
1
1
  module AMQ
2
2
  module Protocol
3
- VERSION = "0.5.0".freeze
3
+ VERSION = "0.6.0.pre"
4
4
  end # Protocol
5
5
  end # AMQ
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amq-protocol
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
5
- prerelease:
4
+ hash: 4034470010463317433
5
+ prerelease: 6
6
6
  segments:
7
7
  - 0
8
- - 5
8
+ - 6
9
9
  - 0
10
- version: 0.5.0
10
+ - pre
11
+ version: 0.6.0.pre
11
12
  platform: ruby
12
13
  authors:
13
14
  - Jakub Stastny
@@ -17,7 +18,7 @@ authors:
17
18
  autorequire:
18
19
  bindir: bin
19
20
  cert_chain:
20
- date: 2011-04-16 00:00:00 +04:00
21
+ date: 2011-04-17 00:00:00 +04:00
21
22
  default_executable:
22
23
  dependencies: []
23
24
 
@@ -36,7 +37,6 @@ files:
36
37
  - .gitmodules
37
38
  - .rspec
38
39
  - .travis.yml
39
- - CHANGELOG
40
40
  - CONTRIBUTORS
41
41
  - Gemfile
42
42
  - Gemfile.lock
@@ -96,12 +96,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
96
96
  required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  none: false
98
98
  requirements:
99
- - - ">="
99
+ - - ">"
100
100
  - !ruby/object:Gem::Version
101
- hash: 3
101
+ hash: 25
102
102
  segments:
103
- - 0
104
- version: "0"
103
+ - 1
104
+ - 3
105
+ - 1
106
+ version: 1.3.1
105
107
  requirements: []
106
108
 
107
109
  rubyforge_project: amq-protocol
data/CHANGELOG DELETED
@@ -1,3 +0,0 @@
1
- = Version 0.0.1
2
- * [FEATURE] Basic code generation.
3
- * [FEATURE] Generate only methods which are actually required by the client.