qusion 0.1.3 → 0.1.4

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/Rakefile CHANGED
@@ -3,8 +3,6 @@ require 'rake/rdoctask'
3
3
  require 'rubygems'
4
4
  require 'bundler'
5
5
  require "spec/rake/spectask"
6
- require "cucumber"
7
- require "cucumber/rake/task"
8
6
 
9
7
  desc 'Default: run specs.'
10
8
  task :default => :spec
@@ -32,11 +30,6 @@ rescue LoadError
32
30
  end
33
31
  Jeweler::RubygemsDotOrgTasks.new
34
32
 
35
- desc "Run Cucumber Features"
36
- Cucumber::Rake::Task.new do |t|
37
- t.cucumber_opts = "-c -n"
38
- end
39
-
40
33
  desc "Run all of the specs"
41
34
  Spec::Rake::SpecTask.new do |t|
42
35
  t.ruby_opts << '-rubygems'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.3
1
+ 0.1.4
@@ -18,7 +18,7 @@ module Qusion
18
18
  end
19
19
 
20
20
  def load_framework_config
21
- @config_path = Rails.root + "/config/amqp.yml"
21
+ @config_path = "#{Rails.root}/config/amqp.yml"
22
22
  @framework_env = Rails.env
23
23
  end
24
24
 
data/qusion.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{qusion}
8
- s.version = "0.1.3"
8
+ s.version = "0.1.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Dan DeLeo", "Christopher R. Murphy"]
12
- s.date = %q{2010-12-10}
12
+ s.date = %q{2010-12-22}
13
13
  s.description = %q{Makes AMQP work with Ruby on Rails with no fuss.}
14
14
  s.email = %q{cmurphy@customink.com}
15
15
  s.extra_rdoc_files = [
@@ -29,9 +29,9 @@ Gem::Specification.new do |s|
29
29
  "qusion.gemspec",
30
30
  "spec/fixtures/framework-amqp.yml",
31
31
  "spec/fixtures/hardcoded-amqp.yml",
32
- "spec/mock_rails.rb",
33
32
  "spec/spec.opts",
34
33
  "spec/spec_helper.rb",
34
+ "spec/stub_rails.rb",
35
35
  "spec/unit/amqp_config_spec.rb",
36
36
  "spec/unit/channel_pool_spec.rb",
37
37
  "spec/unit/qusion_spec.rb"
@@ -41,8 +41,8 @@ Gem::Specification.new do |s|
41
41
  s.rubygems_version = %q{1.3.7}
42
42
  s.summary = %q{Makes AMQP work with Ruby on Rails with no fuss.}
43
43
  s.test_files = [
44
- "spec/mock_rails.rb",
45
44
  "spec/spec_helper.rb",
45
+ "spec/stub_rails.rb",
46
46
  "spec/unit/amqp_config_spec.rb",
47
47
  "spec/unit/channel_pool_spec.rb",
48
48
  "spec/unit/qusion_spec.rb"
File without changes
@@ -1,6 +1,6 @@
1
1
  # encoding: UTF-8
2
2
  require File.dirname(__FILE__) + "/../../spec_helper"
3
- require File.dirname(__FILE__) + "/../../mock_rails"
3
+ require File.dirname(__FILE__) + "/../../stub_rails"
4
4
 
5
5
  describe AmqpConfig do
6
6
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 3
9
- version: 0.1.3
8
+ - 4
9
+ version: 0.1.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Dan DeLeo
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-12-10 00:00:00 -05:00
18
+ date: 2010-12-22 00:00:00 -05:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -130,9 +130,9 @@ files:
130
130
  - qusion.gemspec
131
131
  - spec/fixtures/framework-amqp.yml
132
132
  - spec/fixtures/hardcoded-amqp.yml
133
- - spec/mock_rails.rb
134
133
  - spec/spec.opts
135
134
  - spec/spec_helper.rb
135
+ - spec/stub_rails.rb
136
136
  - spec/unit/amqp_config_spec.rb
137
137
  - spec/unit/channel_pool_spec.rb
138
138
  - spec/unit/qusion_spec.rb
@@ -150,7 +150,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
150
150
  requirements:
151
151
  - - ">="
152
152
  - !ruby/object:Gem::Version
153
- hash: -1255364507768212754
153
+ hash: 4545527919931505448
154
154
  segments:
155
155
  - 0
156
156
  version: "0"
@@ -170,8 +170,8 @@ signing_key:
170
170
  specification_version: 3
171
171
  summary: Makes AMQP work with Ruby on Rails with no fuss.
172
172
  test_files:
173
- - spec/mock_rails.rb
174
173
  - spec/spec_helper.rb
174
+ - spec/stub_rails.rb
175
175
  - spec/unit/amqp_config_spec.rb
176
176
  - spec/unit/channel_pool_spec.rb
177
177
  - spec/unit/qusion_spec.rb