runcoderun-gem_sync 1.2.0 → 1.3.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.
data/Rakefile CHANGED
@@ -1,6 +1,4 @@
1
- require 'rubygems'
2
1
  require 'rake'
3
- require 'micronaut/rake_task'
4
2
 
5
3
  begin
6
4
  require 'jeweler'
@@ -11,23 +9,29 @@ begin
11
9
  gem.email = "rob@runcoderun.com"
12
10
  gem.homepage = "http://github.com/runcoderun/gem_sync"
13
11
  gem.authors = ["Rob Sanheim"]
14
- gem.add_development_dependency "spicycode-micronaut"
12
+ gem.add_development_dependency "micronaut"
15
13
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
16
14
  end
17
15
  rescue LoadError
18
16
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
19
17
  end
20
18
 
21
- Micronaut::RakeTask.new(:examples)
22
- namespace :examples do
19
+ begin
20
+
21
+ require 'micronaut/rake_task'
22
+ Micronaut::RakeTask.new(:examples)
23
+ namespace :examples do
23
24
 
24
- desc "Run all micronaut examples using rcov"
25
- Micronaut::RakeTask.new :coverage do |t|
26
- t.pattern = "examples/**/*_example.rb"
27
- t.rcov = true
28
- t.rcov_opts = %[--exclude "gems/*,/Library/Ruby/*,config/*" --text-summary --sort coverage]
29
- end
25
+ desc "Run all micronaut examples using rcov"
26
+ Micronaut::RakeTask.new :coverage do |t|
27
+ t.pattern = "examples/**/*_example.rb"
28
+ t.rcov = true
29
+ t.rcov_opts = %[--exclude "gems/*,/Library/Ruby/*,config/*" --text-summary --sort coverage]
30
+ end
30
31
 
32
+ end
33
+ rescue LoadError
34
+ puts "Micronaut required for test suite"
31
35
  end
32
36
 
33
37
  desc 'Load the library in an IRB session'
@@ -35,4 +39,10 @@ task :console do
35
39
  sh %(irb -r lib/rcr/gem_sync.rb)
36
40
  end
37
41
 
38
- task :default => [:check_dependencies, :examples]
42
+ p RUBY_VERSION
43
+ p RUBY_VERSION =~ /1.9/
44
+ if RUBY_VERSION =~ /1.9/
45
+ task :default => :examples
46
+ else
47
+ task :default => [:check_dependencies, :examples]
48
+ end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.3.0
@@ -1,9 +1,6 @@
1
1
  lib_path = File.expand_path(File.dirname(__FILE__) + "/../lib")
2
2
  $LOAD_PATH.unshift lib_path unless $LOAD_PATH.include?(lib_path)
3
3
 
4
- require 'rubygems'
5
- gem "spicycode-micronaut"
6
- gem "mocha"
7
4
  require 'micronaut'
8
5
  require 'mocha'
9
6
  require 'log_buddy'
data/gem_sync.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{gem_sync}
8
- s.version = "1.2.0"
8
+ s.version = "1.3.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Rob Sanheim"]
12
- s.date = %q{2009-09-09}
12
+ s.date = %q{2009-09-13}
13
13
  s.default_executable = %q{gem_sync}
14
14
  s.description = %q{Tool to install rubygems for RunCodeRun, though it could be used to bootstrap your own machines as well.}
15
15
  s.email = %q{rob@runcoderun.com}
@@ -55,11 +55,11 @@ Gem::Specification.new do |s|
55
55
  s.specification_version = 3
56
56
 
57
57
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
58
- s.add_development_dependency(%q<spicycode-micronaut>, [">= 0"])
58
+ s.add_development_dependency(%q<micronaut>, [">= 0"])
59
59
  else
60
- s.add_dependency(%q<spicycode-micronaut>, [">= 0"])
60
+ s.add_dependency(%q<micronaut>, [">= 0"])
61
61
  end
62
62
  else
63
- s.add_dependency(%q<spicycode-micronaut>, [">= 0"])
63
+ s.add_dependency(%q<micronaut>, [">= 0"])
64
64
  end
65
65
  end
@@ -24,10 +24,12 @@ bacon
24
24
  bcrypt-ruby (2.0.5, 2.0.3) +ruby_186
25
25
  beanstalk-client
26
26
  bmabey-fakefs
27
- BRIMIL01-meetup_api
27
+ BRIMIL01-meetup_api +ruby_186 # depends on json, which doesn't build on ruby19
28
28
  binarylogic-authlogic
29
+ binarylogic-searchlogic
29
30
  bj
30
31
  bmabey-email_spec
32
+ botanicus-path
31
33
  builder (2.1.2)
32
34
  camping (1.5)
33
35
  capistrano
@@ -39,6 +41,7 @@ coderay
39
41
  configatron (2.2.2, 2.1.5)
40
42
  configuration
41
43
  context
44
+ couchrest
42
45
  crack
43
46
  csv-mapper (0.0.3)
44
47
  cucumber (0.3.96, 0.3.94, 0.3.92, 0.3.9)
@@ -97,6 +100,7 @@ haml (2.2.1, 2.0.9, 2.0.7, 2.0.2, 2.0.1)
97
100
  happymapper
98
101
  hashtostruct
99
102
  heckle (1.4.2, 1.4.1)
103
+ heroku
100
104
  highline (1.5.0, 1.4.0)
101
105
  hoe (1.12.2, 1.8.3, 1.8.2, 1.7.0)
102
106
  hpricot +ruby_186 +ruby_191
@@ -113,6 +117,7 @@ jeremymcanally-context
113
117
  jeremymcanally-matchy
114
118
  jeremymcanally-pending
115
119
  jeremymcanally-stump
120
+ jferris-mocha (0.9.5.0.1241126838)
116
121
  jnunemaker-twitter
117
122
  jruby-openssl +jruby
118
123
  jruby-rcov +jruby
@@ -167,13 +172,13 @@ mwmitchell-rsolr
167
172
  mwmitchell-material_girl
168
173
  mysql +ruby_186 +ruby_191
169
174
  nagoro
175
+ notahat-machinist
170
176
  net-ssh (2.0.11, 2.0.4)
171
177
  newgem
172
178
  nokogiri (1.3.2)
173
179
  oauth
174
180
  obsidian
175
181
  ohai
176
- oniguruma +ruby_186
177
182
  open4
178
183
  opscode-ohai
179
184
  opscode-mixlib-cli (1.0.4)
@@ -182,7 +187,9 @@ opscode-mixlib-log (1.0.3)
182
187
  patron
183
188
  orderedhash (0.0.6, 0.0.4)
184
189
  packet (0.1.15, 0.1.14)
190
+ paperclip
185
191
  ParseTree (3.0.3, 2.2.0)
192
+ pauldix-feedzirra
186
193
  pauldix-sax-machine
187
194
  pdf-writer (1.1.8)
188
195
  peterwald-git (1.1.4)
@@ -201,6 +208,7 @@ rake (0.8.7, 0.8.4, 0.8.3)
201
208
  railroad
202
209
  rc-rest
203
210
  rdiscount
211
+ rdoc
204
212
  RedCloth (4.1.9, 4.1.1) +ruby_186
205
213
  RedCloth # latest version _should_ work on 191 and 186
206
214
  redgreen
@@ -247,9 +255,11 @@ runcoderun-configatron
247
255
  runcoderun-gem_sync
248
256
  ruport
249
257
  schacon-git
258
+ sdoc
250
259
  selenium-client
251
260
  session
252
261
  sexp_processor (3.0.1)
262
+ sevenwire-forgery
253
263
  Shoulda (1.2.0, 1.1.1)
254
264
  sinatra
255
265
  spicycode-micronaut
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: runcoderun-gem_sync
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Sanheim
@@ -9,11 +9,11 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-09-09 00:00:00 -07:00
12
+ date: 2009-09-13 00:00:00 -07:00
13
13
  default_executable: gem_sync
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
- name: spicycode-micronaut
16
+ name: micronaut
17
17
  type: :development
18
18
  version_requirement:
19
19
  version_requirements: !ruby/object:Gem::Requirement
@@ -52,6 +52,7 @@ files:
52
52
  - lib/runcoderun_gems.txt
53
53
  has_rdoc: false
54
54
  homepage: http://github.com/runcoderun/gem_sync
55
+ licenses:
55
56
  post_install_message:
56
57
  rdoc_options:
57
58
  - --charset=UTF-8
@@ -72,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
72
73
  requirements: []
73
74
 
74
75
  rubyforge_project:
75
- rubygems_version: 1.2.0
76
+ rubygems_version: 1.3.5
76
77
  signing_key:
77
78
  specification_version: 3
78
79
  summary: gem_sync