geminstaller 0.4.3 → 0.4.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,6 @@
1
+ == 0.4.4 / 2008-09-20
2
+ * Compatibility with RubyGems 1.3.0
3
+
1
4
  == 0.4.3 / 2008-06-23
2
5
  * Repackage gem with released version of RubyGems 1.2.0, to avoid problems for older versions of RubyGems.
3
6
 
@@ -24,7 +24,7 @@ gems:
24
24
  - name: ruby-debug
25
25
  version: '>= 0.9.3'
26
26
  - name: webgen
27
- version: '>= 0.4.2'
27
+ version: '= 0.4.2'
28
28
  <% if RUBY_PLATFORM =~ /mswin/ %>
29
29
  - name: win32-process
30
30
  version: '>= 0.5.5'
@@ -34,7 +34,7 @@ module GemInstaller
34
34
  end
35
35
 
36
36
  def self.version
37
- "0.4.3"
37
+ "0.4.4"
38
38
  end
39
39
 
40
40
  def self.create_application(args = [], registry = nil)
@@ -25,6 +25,10 @@ module GemInstaller
25
25
  def puts(output)
26
26
  print("#{output}\n")
27
27
  end
28
+
29
+ def tty?
30
+ false
31
+ end
28
32
 
29
33
  def flush
30
34
  end
@@ -38,10 +38,6 @@ h2. Why not just use Rails' config.gems?
38
38
 
39
39
  GemInstaller "has some advantages":faq.html#rails_config_gems over Rails' config.gems.
40
40
 
41
- h2(#news). News
42
-
43
- Version 0.4.1 of GemInstaller is released. This is tested and working against RubyGems 1.1.1. Version 1.1.0 of RubyGems had some problems with GemInstaller, and is not supported.
44
-
45
41
  h2(#known_issues). Known Issues
46
42
 
47
43
  I have a "list of high priority bugs and features":http://thewoolleyweb.lighthouseapp.com/projects/11580-geminstaller/tickets?q=tagged%3Ahigh_priority that need to be addressed before a 1.0 release.
@@ -50,6 +46,8 @@ Please "report any others that you find":http://thewoolleyweb.lighthouseapp.com/
50
46
 
51
47
  h2(#history). History
52
48
 
49
+ * 0.4.4
50
+ ** Compatibility with RubyGems 1.3.0
53
51
  * 0.4.3
54
52
  ** Repackage gem with released version of RubyGems 1.2.0.
55
53
  * 0.4.2
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geminstaller
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chad Woolley
@@ -9,10 +9,19 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-06-23 00:00:00 -07:00
12
+ date: 2008-09-20 00:00:00 -07:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: hoe
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.7.0
24
+ version:
16
25
  description: "Automated Gem installation, activation, and much more! == FEATURES: GemInstaller provides automated installation, loading and activation of RubyGems. It uses a simple YAML config file to: * Automatically install the correct versions of all required gems wherever your app runs. * Automatically ensure installed gems and versions are consistent across multiple applications, machines, platforms, and environments * Automatically activate correct versions of gems on the ruby load path when your app runs ('require_gem'/'gem') * Automatically reinstall missing dependency gems (built in to RubyGems > 1.0) * Automatically detect correct platform to install for multi-platform gems (built in to RubyGems > 1.0) * Print YAML for \"rogue gems\" which are not specified in the current config, to easily bootstrap your config file, or find gems that were manually installed without GemInstaller. * Allow for common configs to be reused across projects or environments by supporting multiple config files, including common config file snippets, and defaults with overrides. * Allow for dynamic selection of gems, versions, and platforms to be used based on environment vars or any other logic. * Avoid the \"works on demo, breaks on production\" syndrome * Solve world hunger, prevent the global energy crisis, and wash your socks. == SYNOPSYS:"
17
26
  email: thewoolleyman@gmail.com
18
27
  executables:
@@ -124,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
133
  requirements: []
125
134
 
126
135
  rubyforge_project: geminstaller
127
- rubygems_version: 1.2.0
136
+ rubygems_version: 1.2.0.1861
128
137
  signing_key:
129
138
  specification_version: 2
130
139
  summary: Automated Gem installation, activation, and much more!