geminstaller 0.4.3 → 0.4.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/History.txt +3 -0
- data/geminstaller.yml +1 -1
- data/lib/geminstaller.rb +1 -1
- data/lib/geminstaller/output_observer.rb +4 -0
- data/website/src/index.page +2 -4
- metadata +14 -5
data/History.txt
CHANGED
data/geminstaller.yml
CHANGED
data/lib/geminstaller.rb
CHANGED
data/website/src/index.page
CHANGED
|
@@ -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.
|
|
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-
|
|
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!
|