gemsonrails 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.7.1 2007-11-29
2
+
3
+ * Using RubyGems 0.9.5? Use these upgraded tasks to support RubyGems 0.9.5 [thx Brent Beardsley]
4
+
1
5
  == 0.7.0 2007-07-04
2
6
 
3
7
  * Fixed the gems:freeze/link issue for gems like net-ssh, net-sftp (you'll need to refreeze these gems after rerunning gemsonrails)
@@ -2,7 +2,7 @@ module GemsOnRails #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 7
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -22,8 +22,14 @@ if %w[#{only_list.join(' ')}].include?(ENV['RAILS_ENV'])
22
22
  only_if_tab = only_list.size == 0 ? "" : " "
23
23
 
24
24
  require 'rubygems'
25
- Gem.manage_gems
26
- Gem::CommandManager.new
25
+ # RubyGems <0.9.5
26
+ # Gem.manage_gems
27
+ # Gem::CommandManager.new
28
+
29
+ # RubyGems >=0.9.5
30
+ require 'rubygems/command_manager'
31
+ require 'rubygems/commands/unpack_command'
32
+ Gem::CommandManager.instance
27
33
 
28
34
  gem = (version = ENV['VERSION']) ?
29
35
  Gem.cache.search(gem_name, "= #{version}").first :
@@ -21,8 +21,14 @@ if %w[#{only_list.join(' ')}].include?(ENV['RAILS_ENV'])
21
21
  only_if_tab = only_list.size == 0 ? "" : " "
22
22
 
23
23
  require 'rubygems'
24
- Gem.manage_gems
25
- Gem::CommandManager.new
24
+ # RubyGems <0.9.5
25
+ # Gem.manage_gems
26
+ # Gem::CommandManager.new
27
+
28
+ # RubyGems >=0.9.5
29
+ require 'rubygems/command_manager'
30
+ require 'rubygems/commands/unpack_command'
31
+ Gem::CommandManager.instance
26
32
 
27
33
  gem = Gem.cache.search(gem_name).sort_by { |g| g.version }.last
28
34
  version ||= gem.version.version rescue nil
data/website/index.html CHANGED
@@ -33,7 +33,7 @@
33
33
  <h1>Gems On Rails</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/gemsonrails"; return false'>
35
35
  Get Version
36
- <a href="http://rubyforge.org/projects/gemsonrails" class="numbers">0.7.0</a>
36
+ <a href="http://rubyforge.org/projects/gemsonrails" class="numbers">0.7.1</a>
37
37
  </div>
38
38
  <h1>&#x2192; &#8216;gemsonrails&#8217;</h1>
39
39
 
metadata CHANGED
@@ -1,33 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.4.3
3
- specification_version: 1
4
2
  name: gemsonrails
5
3
  version: !ruby/object:Gem::Version
6
- version: 0.7.0
7
- date: 2007-07-04 00:00:00 +02:00
8
- summary: Link or freeze RubyGems into your rails apps, instead of plugins To reinstall, run "gemsonrails" in rails app folder.
9
- require_paths:
10
- - lib
11
- email: your contact email for bug fixes and info
12
- homepage: http://gemsonrails.rubyforge.org
13
- rubyforge_project: gemsonrails
14
- description: Link or freeze RubyGems into your rails apps, instead of plugins To reinstall, run "gemsonrails" in rails app folder.
15
- autorequire:
16
- default_executable:
17
- bindir: bin
18
- has_rdoc: true
19
- required_ruby_version: !ruby/object:Gem::Version::Requirement
20
- requirements:
21
- - - ">"
22
- - !ruby/object:Gem::Version
23
- version: 0.0.0
24
- version:
25
- platform: ruby
26
- signing_key:
27
- cert_chain:
28
- post_install_message:
4
+ version: 0.7.1
5
+ platform: ""
29
6
  authors:
30
7
  - nicwilliams
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2007-11-29 00:00:00 +10:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: Link or freeze RubyGems into your rails apps, instead of plugins To reinstall, run "gemsonrails" in rails app folder.
17
+ email: your contact email for bug fixes and info
18
+ executables:
19
+ - gemsonrails
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - History.txt
24
+ - Manifest.txt
25
+ - README.txt
26
+ - website/index.txt
31
27
  files:
32
28
  - History.txt
33
29
  - Manifest.txt
@@ -50,22 +46,33 @@ files:
50
46
  - website/javascripts/rounded_corners_lite.inc.js
51
47
  - website/stylesheets/screen.css
52
48
  - website/template.rhtml
53
- test_files:
54
- - test/test_gemsonrails.rb
55
- - test/test_helper.rb
49
+ has_rdoc: true
50
+ homepage: http://gemsonrails.rubyforge.org
51
+ post_install_message:
56
52
  rdoc_options:
57
53
  - --main
58
54
  - README.txt
59
- extra_rdoc_files:
60
- - History.txt
61
- - Manifest.txt
62
- - README.txt
63
- - website/index.txt
64
- executables:
65
- - gemsonrails
66
- extensions: []
67
-
55
+ require_paths:
56
+ - lib
57
+ required_ruby_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: "0"
62
+ version:
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: "0"
68
+ version:
68
69
  requirements: []
69
70
 
70
- dependencies: []
71
-
71
+ rubyforge_project: gemsonrails
72
+ rubygems_version: 0.9.5
73
+ signing_key:
74
+ specification_version: 2
75
+ summary: Link or freeze RubyGems into your rails apps, instead of plugins To reinstall, run "gemsonrails" in rails app folder.
76
+ test_files:
77
+ - test/test_gemsonrails.rb
78
+ - test/test_helper.rb