schubert-minglr 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -48,7 +48,6 @@ rescue LoadError
48
48
  end
49
49
  end
50
50
 
51
-
52
51
  require 'rake/rdoctask'
53
52
  Rake::RDocTask.new do |rdoc|
54
53
  if File.exist?('VERSION.yml')
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
+ :patch: 1
2
3
  :major: 1
3
4
  :minor: 3
4
- :patch: 0
@@ -1,4 +1,9 @@
1
- require 'httpclient'
1
+ begin
2
+ require 'httpclient'
3
+ rescue LoadError
4
+ puts "httpclient is not available. In order to run minglr, you must: sudo gem install cucumber"
5
+ exit 1
6
+ end
2
7
 
3
8
  module Resources
4
9
 
data/lib/minglr.rb CHANGED
@@ -1,8 +1,18 @@
1
1
  MINGLR_ENV = "normal" unless defined?(MINGLR_ENV)
2
2
 
3
3
  require 'rubygems'
4
- require 'activesupport'
5
- require 'activeresource'
4
+ begin
5
+ require 'activesupport'
6
+ rescue LoadError
7
+ puts "activesupport is not available. In order to run minglr, you must: sudo gem install activesupport"
8
+ exit 1
9
+ end
10
+ begin
11
+ require 'activeresource'
12
+ rescue LoadError
13
+ puts "activeresource is not available. In order to run minglr, you must: sudo gem install activeresource"
14
+ exit 1
15
+ end
6
16
  require 'optparse'
7
17
 
8
18
  prefix = File.join(File.dirname(__FILE__), "minglr")
data/minglr.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{minglr}
5
- s.version = "1.3.0"
5
+ s.version = "1.3.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Michael Schubert", "Stephen Chu", "Chris O'Meara"]
9
- s.date = %q{2009-07-27}
9
+ s.date = %q{2009-07-28}
10
10
  s.description = %q{* This gem provides two executable binaries to interact with Mingle (http://mingle.thoughtworks.com/mingle-agile-project-management) through its API. It also has sample interactive Rake task on how to facilitate easy card movements when a card enters/exits the development queue. * mtx is a binary that facilities transition changes for use on rake tasks * minglr is a more interactive tool that provides a quick interface for many common uses}
11
11
  s.email = %q{michael@schubert.cx}
12
12
  s.executables = ["mtx", "minglr"]
@@ -60,11 +60,12 @@ Gem::Specification.new do |s|
60
60
  "test/resources/user_test.rb",
61
61
  "test/test_helper.rb"
62
62
  ]
63
+ s.has_rdoc = true
63
64
  s.homepage = %q{http://github.com/schubert/minglr}
64
65
  s.post_install_message = %q{PostInstall.txt}
65
66
  s.rdoc_options = ["--charset=UTF-8"]
66
67
  s.require_paths = ["lib"]
67
- s.rubygems_version = %q{1.3.5}
68
+ s.rubygems_version = %q{1.3.1}
68
69
  s.summary = %q{command line user tool for Mingle (http://mingle.thoughtworks.com/mingle-agile-project-management)}
69
70
  s.test_files = [
70
71
  "test/action_test.rb",
@@ -83,7 +84,7 @@ Gem::Specification.new do |s|
83
84
 
84
85
  if s.respond_to? :specification_version then
85
86
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
86
- s.specification_version = 3
87
+ s.specification_version = 2
87
88
 
88
89
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
89
90
  else
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: schubert-minglr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Schubert
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2009-07-27 00:00:00 -07:00
14
+ date: 2009-07-28 00:00:00 -07:00
15
15
  default_executable:
16
16
  dependencies: []
17
17
 
@@ -70,7 +70,7 @@ files:
70
70
  - test/resources/property_definition_test.rb
71
71
  - test/resources/user_test.rb
72
72
  - test/test_helper.rb
73
- has_rdoc: false
73
+ has_rdoc: true
74
74
  homepage: http://github.com/schubert/minglr
75
75
  licenses:
76
76
  post_install_message: PostInstall.txt
@@ -95,7 +95,7 @@ requirements: []
95
95
  rubyforge_project:
96
96
  rubygems_version: 1.3.5
97
97
  signing_key:
98
- specification_version: 3
98
+ specification_version: 2
99
99
  summary: command line user tool for Mingle (http://mingle.thoughtworks.com/mingle-agile-project-management)
100
100
  test_files:
101
101
  - test/action_test.rb