geminstaller 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +3 -0
- data/README.txt +6 -5
- data/Rakefile +16 -1
- data/TODO.txt +17 -3
- data/geminstaller.yml +2 -0
- data/lib/geminstaller/gem_command_manager.rb +5 -2
- data/lib/geminstaller/registry.rb +1 -1
- data/lib/geminstaller.rb +1 -1
- data/website/src/code/index.page +1 -1
- data/website/src/community/index.page +1 -1
- data/website/src/default.template +1 -1
- data/website/src/documentation/documentation.page +6 -0
- data/website/src/documentation/index.page +6 -0
- data/website/src/documentation/tutorials.page +6 -2
- data/website/src/faq.page +7 -1
- data/website/src/index.page +14 -5
- metadata +5 -5
data/History.txt
CHANGED
data/README.txt
CHANGED
@@ -3,26 +3,27 @@ GemInstaller
|
|
3
3
|
http://geminstaller.rubyforge.org
|
4
4
|
|
5
5
|
== DESCRIPTION:
|
6
|
-
|
7
|
-
|
6
|
+
|
7
|
+
Automated Gem installation, activation, and much more!
|
8
8
|
|
9
9
|
== FEATURES:
|
10
10
|
|
11
|
-
GemInstaller provides automated
|
11
|
+
GemInstaller provides automated installation, loading and activation of RubyGems. It uses a simple YAML config file to:
|
12
12
|
|
13
13
|
* Automatically install the correct versions of all required gems wherever your app runs.
|
14
14
|
* Automatically ensure installed gems and versions are consistent across multiple applications, machines, platforms, and environments
|
15
|
-
* Automatically
|
15
|
+
* Automatically activate correct versions of gems on the ruby load path when your app runs ('require_gem'/'gem')
|
16
16
|
* Automatically reinstall missing dependency gems (built in to RubyGems > 1.0)
|
17
17
|
* Automatically detect correct platform to install for multi-platform gems (built in to RubyGems > 1.0)
|
18
18
|
* 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.
|
19
19
|
* 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.
|
20
20
|
* Allow for dynamic selection of gems, versions, and platforms to be used based on environment vars or any other logic.
|
21
21
|
* Avoid the "works on demo, breaks on production" syndrome
|
22
|
+
* Solve world hunger, prevent the global energy crisis, and wash your socks.
|
22
23
|
|
23
24
|
== SYNOPSYS:
|
24
25
|
|
25
|
-
|
26
|
+
Automated Gem installation, activation, and much more!
|
26
27
|
|
27
28
|
=== Download:
|
28
29
|
|
data/Rakefile
CHANGED
@@ -46,6 +46,13 @@ task :coverage do
|
|
46
46
|
sh "rcov -o website/output/code/coverage test/test_all.rb"
|
47
47
|
end
|
48
48
|
|
49
|
+
task :coverage_no_fail do
|
50
|
+
begin
|
51
|
+
Rake::Task[:coverage].invoke
|
52
|
+
rescue
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
49
56
|
desc "Diff the manifest"
|
50
57
|
task :diff_manifest => :clean do
|
51
58
|
f = "Manifest.tmp"
|
@@ -91,7 +98,15 @@ task :website => [:webgen, :website_rdocs, :coverage] do
|
|
91
98
|
end
|
92
99
|
|
93
100
|
desc 'Publish website to RubyForge'
|
94
|
-
task :publish_website => [:clean, :website] do
|
101
|
+
task :publish_website => [:clean, :website, :upload_website] do
|
102
|
+
end
|
103
|
+
|
104
|
+
desc 'Publish website to RubyForge even if test coverage run rails'
|
105
|
+
task :publish_website_no_fail => [:clean, :webgen, :website_rdocs, :coverage_no_fail, :upload_website] do
|
106
|
+
end
|
107
|
+
|
108
|
+
desc 'Upload website (should already be clean and generated)'
|
109
|
+
task :upload_website do
|
95
110
|
host = "thewoolleyman@rubyforge.org"
|
96
111
|
remote_dir = "/var/www/gforge-projects/geminstaller"
|
97
112
|
local_dir = 'website/output'
|
data/TODO.txt
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
=============== Unfiled =============
|
2
|
+
* Tagline: "It's not just for installing gems!" - "removes the drudgery of installing, activating, and requiring gems"
|
3
|
+
* move to Github
|
4
|
+
* autoupdate of rails trunk
|
5
|
+
* redirection of links to old svn
|
6
|
+
* Rename autogem to activate
|
7
|
+
* add GemInstaller.require
|
8
|
+
* Replace Tagline / Summary / Readme with "Install, Activate, and Require"
|
9
|
+
* Big Quick Start Link on homepage
|
10
|
+
* Update config.gems faq item with link to rails tutorial
|
11
|
+
* rename sample app to rails_fixture_app, update important files with comments pointing to fixture app
|
12
|
+
* examples dir
|
13
|
+
* geminstaller_merb_example_app
|
14
|
+
* geminstaller_rails_example_app
|
15
|
+
* Update Rails tutorial link with link to example app
|
2
16
|
================ 0.4.0 release ===================
|
3
17
|
* fix smoke tests on CI
|
4
18
|
* Investigate error when installing and loading gem in same session (like rails preinitializer) - Not reproducible - fixed in >1.1.0???
|
5
19
|
================ 0.5.0 release ===================
|
6
|
-
* If permission error, auto-install under writable_gem_home ~/gems/1.8 (configurable), Gem.clear_paths, set ENV['GEM_HOME'] to ENV['HOME']pathsepGem::ConfigMap[:ruby_version], and issue warning (saying in order to prevent warning, a) set gem_home: in ~/.gemrc, b) invoke via sudo (only if command line), c) make (and keep) current Gem.dir writeable, or d) add geminstaller (and ruby?) to sudoers file (security hole). Properties: "[no_]use_writable_gem_home" and "writable_gem_home".
|
20
|
+
* If permission error, auto-install under writable_gem_home ~/gems/1.8 (configurable), Gem.clear_paths, set ENV['GEM_HOME'] and ENV['GEM_PATH'] to ENV['HOME']pathsepGem::ConfigMap[:ruby_version], and issue warning (saying in order to prevent warning, a) set gem_home and gem_path: in ~/.gemrc, b) invoke via sudo (only if command line), c) make (and keep) current Gem.dir writeable, or d) add geminstaller (and ruby?) to sudoers file (security hole). Properties: "[no_]use_writable_gem_home" and "writable_gem_home".
|
7
21
|
* For RubyGems >=1.0.1, look at using Gem::SourceInfoCache instead of SourceIndex or --list command
|
8
22
|
* Move classes which are unused against current RubyGems into Legacy module.
|
9
23
|
* Speed! What can be done to speed things up?
|
10
24
|
* performance improvement: first try cache hit without all option, then with if not found.
|
11
25
|
* add command line tool to automatically generate files - default file, rake task (geminstaller:run, geminstaller:install, geminstaller:autogem), and preinit hook. Auto-detect rails vs. non-rails project and generate stuff accordingly. --setup, --setup-rails. Check for new-style boot.rb, fail if missing, check for RAILS_GEM_VERSION in environment.rb, warn if present.
|
12
|
-
* Merb support.
|
26
|
+
* Merb support. init.rb. See lightning talk.
|
13
27
|
* Change 'run' to automatically automatically calls both 'install' and 'autogem', add 'no-install' and 'no-autogem' option (only applicable when invoked programatically) to suppress if desired
|
14
28
|
* auto-install on app startup should not be the default unless use_writable_gem_home is implemented, because of sudo/rake doublerun/speed issues. Update autogem missing gem error message accordingly.
|
15
29
|
* also look for config file under RAILS_ROOT/config, if RAILS_ROOT is defined (somehow fails under textmate, if working dir is wrong)
|
@@ -20,7 +34,7 @@
|
|
20
34
|
* add auto-install option if gem version error is detected, update error message saying to set option
|
21
35
|
* cryptic message if "name:" is left off in yaml
|
22
36
|
* Add option to auto-update rubygems to specified version. See rubygems mailing list thread for details
|
23
|
-
* set up sample rails project with geminstaller hook and sample test under CI. Have cruise_config uninstall a dummy gem before rails tests, then have rails test ensure it was installed and loaded.
|
37
|
+
* set up sample rails project with geminstaller hook and sample test under CI. Have cruise_config uninstall a dummy gem before rails tests, then have rails test ensure it was installed and loaded. (done but not running under CI yet)
|
24
38
|
================ 0.x.x release ===================
|
25
39
|
* turn smoketest into rake task, with correct return code handling, and hook up to cruise
|
26
40
|
* look into and explain mongrel/webrick installation errors
|
data/geminstaller.yml
CHANGED
@@ -31,9 +31,12 @@ module GemInstaller
|
|
31
31
|
# with enhanced_stream_ui. Patched: http://rubyforge.org/tracker/index.php?func=detail&aid=9020&group_id=126&atid=577
|
32
32
|
# TODO: use pipe option on later versions which support it
|
33
33
|
|
34
|
-
|
34
|
+
name_regexp = "^#{name}$"
|
35
|
+
name_regexp = "/#{name_regexp}/" if GemInstaller::RubyGemsVersionChecker.matches?('>=1.2.0')
|
36
|
+
run_args = ["dependency", name_regexp, "--version", version]
|
35
37
|
run_args += additional_options
|
36
38
|
output_lines = @gem_runner_proxy.run(run_args)
|
39
|
+
p output_lines
|
37
40
|
# dependency output has all lines in the first element
|
38
41
|
output_array = output_lines[0].split("\n")
|
39
42
|
# drop the first line which just echoes the dependent gem
|
@@ -49,7 +52,7 @@ module GemInstaller
|
|
49
52
|
# convert into gems
|
50
53
|
output_gems = output_array.collect do |line|
|
51
54
|
name = line.split(' ')[0]
|
52
|
-
version_spec = line.split(/[()]/)[1]
|
55
|
+
version_spec = line.split(/[(,)]/)[1]
|
53
56
|
GemInstaller::RubyGem.new(name, :version => version_spec)
|
54
57
|
end
|
55
58
|
end
|
@@ -38,7 +38,7 @@ module GemInstaller
|
|
38
38
|
@config_builder.yaml_loader = @yaml_loader
|
39
39
|
@config_builder.output_filter = @output_filter
|
40
40
|
|
41
|
-
@gem_source_index = Gem::SourceIndex.
|
41
|
+
@gem_source_index = Gem::SourceIndex.from_installed_gems
|
42
42
|
@gem_source_index_proxy = GemInstaller::GemSourceIndexProxy.new
|
43
43
|
@gem_source_index_proxy.gem_source_index = @gem_source_index
|
44
44
|
|
data/lib/geminstaller.rb
CHANGED
data/website/src/code/index.page
CHANGED
@@ -32,7 +32,7 @@ These are some notes on the underlying design of GemInstaller, and the current s
|
|
32
32
|
<span id="rubygems_compatibility"/>
|
33
33
|
h1. Maintaining forward and backward compatibility with multiple RubyGems versions
|
34
34
|
|
35
|
-
* I've put a lot of effort into ensuring that GemInstaller works with older versions of RubyGems
|
35
|
+
* I've put a lot of effort into ensuring that GemInstaller works with older versions of RubyGems, and run automated tests against several recent versions on Continuous Integration.
|
36
36
|
|
37
37
|
* This wasn't as hard as it seems. The hardest part was figuring out what was different between versions. Once you understand that, you can add switch statements to perform different logic or tests depending on the version (which is easy if you use rubygems built in Version Requirement support - see GemInstaller::RubygemsVersionChecker).
|
38
38
|
|
@@ -6,7 +6,7 @@ h1. Feedback, Bugs, and Source Code
|
|
6
6
|
h2. Rubyforge Bug/Feature Tracker and Mailing Lists
|
7
7
|
|
8
8
|
* "RubyForge Page":http://rubyforge.org/projects/geminstaller/
|
9
|
-
* "Bug/Feature Tracker":http://
|
9
|
+
* "Bug/Feature Tracker":http://thewoolleyweb.lighthouseapp.com/projects/11580-geminstaller/overview
|
10
10
|
* "Mailing Lists":http://rubyforge.org/mail/?group_id=1902
|
11
11
|
|
12
12
|
h2. Source Code
|
@@ -377,6 +377,12 @@ h2(#dealing_with_sudo). Dealing with sudo and root-owned RubyGem installations
|
|
377
377
|
|
378
378
|
If you only run geminstaller on Windows, you don't have to worry about this section :)
|
379
379
|
|
380
|
+
<strong>UPDATE:</strong>
|
381
|
+
|
382
|
+
After thinking about this problem a lot, I've become convinced the best way to "deal with sudo" is to never use it at all. I've got a "feature planned":http://thewoolleyweb.lighthouseapp.com/projects/11580/tickets/1-automatically-create-use-and-manage-writeable-gem-home-if-system-gem-home-is-not-writeable that will address this issue, but still need to implement it.
|
383
|
+
|
384
|
+
<strong>FOR NOW, THOUGH:</strong>
|
385
|
+
|
380
386
|
<strong>Important Note:</strong> For security, the sudo command does NOT pass most environment variables. See the faq item on "Environment Variables and sudo":../faq.html#environment_vars_and_sudo for more info.
|
381
387
|
|
382
388
|
On many unix-like systems (Mac, Linux, etc.), the root user will own the local installation of RubyGems (often /usr/local/ruby) and/or the executable directory where gem executables are installed (often /usr/local/bin). If this is the case, then gems must be installed and uninstalled by the root user, or via the sudo command. This presents a problem for geminstaller, which must have this same permission to automatically install gems.
|
@@ -21,6 +21,12 @@ gems:
|
|
21
21
|
|
22
22
|
h2. Using GemInstaller with Ruby on Rails
|
23
23
|
|
24
|
+
<strong>RAILS 2.0 UPDATE:</strong>
|
25
|
+
|
26
|
+
I've created a "Sample Rails App":http://geminstaller.rubyforge.org/svn/trunk/spec/fixture/sample_rails_app/ in the source, which shows how to use the Rails 2.0 config/preinitializer.rb hook. I need to spend some time updating the docs to reflect this, but for now just "check out the source":http://geminstaller.rubyforge.org/svn/trunk/spec/fixture/sample_rails_app/
|
27
|
+
|
28
|
+
<strong>OLD RAILS 1.0 INSTRUCTIONS:</strong>
|
29
|
+
|
24
30
|
* Create geminstaller.yml in the RAILS_ROOT/config directory. Include entries for your Rails version, and any other gems your app needs (Note: If you are too lazy to make your config file manually, or don't know what gems you need, see the tutorial on "Bootstrapping your GemInstaller Config with the <code>--print-rogue-gems</code> option":tutorials.html#bootstrapping_your_geminstaller_config):
|
25
31
|
|
26
32
|
<pre>
|
@@ -74,9 +74,13 @@ See also: Docs on "Automatically Requiring Gems with the <code>autogem</code> M
|
|
74
74
|
|
75
75
|
h2(#integrating_geminstaller_into_ruby_on_rails). Integrating GemInstaller into Ruby on Rails
|
76
76
|
|
77
|
-
|
77
|
+
<strong>RAILS 2.0 UPDATE:</strong>
|
78
|
+
|
79
|
+
I've created a "Sample Rails App":http://geminstaller.rubyforge.org/svn/trunk/spec/fixture/sample_rails_app/ in the source, which shows how to use the Rails 2.0 config/preinitializer.rb hook. I need to spend some time updating the docs to reflect this, but for now just "check out the source":http://geminstaller.rubyforge.org/svn/trunk/spec/fixture/sample_rails_app/
|
78
80
|
|
79
|
-
|
81
|
+
<strong>OLD RAILS 1.0 INSTRUCTIONS:</strong>
|
82
|
+
|
83
|
+
GemInstaller can be configured to automatically install all gems in the config file, and add them to the load path when Rails boots. This means that you can check out and run your application anywhere, without having to worry about manually ensuring that the required dependency gems are installed. This works with Webrick and Mongrel.
|
80
84
|
|
81
85
|
First, you need a Rails app. I'll let you handle this step on your own. See the "Rails documentation":http://www.rubyonrails.org/docs for details.
|
82
86
|
|
data/website/src/faq.page
CHANGED
@@ -3,10 +3,13 @@ title: FAQ
|
|
3
3
|
---
|
4
4
|
h1. Frequently Asked Questions
|
5
5
|
|
6
|
+
<span id="rails_config_gems"/>
|
7
|
+
Q: Why not just use Rails' config.gems and rake tasks instead of GemInstaller?<br/>
|
8
|
+
A: I'll come up with a feature comparison chart sometime. For now, I'll mention a few reasons: 1) Rails itself cannot manage the Rails gems - but GemInstaller can via preinitializer.rb. 2) GemInstaller has more features that config.gems. 3) GemInstaller runs for any app or environment that needs to manage RubyGems, not just Rails. Like Merb! If you only use Rails, and none of these things matter to you, maybe you should consider using the Rails support :)
|
6
9
|
|
7
10
|
<span id="environment_vars_and_sudo"/>
|
8
11
|
Q: Why can't I use environment variables via ERB in geminstaller.yml when using sudo?<br/>
|
9
|
-
A: For security, the sudo command does NOT pass most environment variables. That means if you are trying to use an environment variable to control logic in your geminstaller.yml (for example to dynamically specify a gem version), then it won't work!
|
12
|
+
A: For security, the sudo command does NOT pass most environment variables. That means if you are trying to use an environment variable to control logic in your geminstaller.yml (for example to dynamically specify a gem version), then it won't work! The workaround would be to not use sudo (http://thewoolleyweb.lighthouseapp.com/projects/11580/tickets/1-automatically-create-use-and-manage-writeable-gem-home-if-system-gem-home-is-not-writeable)
|
10
13
|
|
11
14
|
Q: Why do some gems (like BlueCloth) always get reinstalled, even though they are already installed?<br/>
|
12
15
|
A: Dunno, this is either a bug in the gem or in RubyGems. It isn't a problem with GemInstaller AFAIK, it happens even if you install manually via 'gem install'. Haven't had time to debug, let me know if you figure it out.
|
@@ -17,6 +20,9 @@ A: You are on your own, this is outside of the scope of GemInstaller. The gemin
|
|
17
20
|
Q: Why don't the tests/specs run on Windows?<br/>
|
18
21
|
A: This has been improved with GemInstaller 0.3.0. Using RubyGems 1.0.1 on Windows, install_smoketest.rb, autogem_smoketest.rb, and ruby test/test_all.rb all work. See references to 'windows' on the "Code Page":code/index.html for more details.
|
19
22
|
|
23
|
+
Q: Why else should I support GemInstaller?<br/>
|
24
|
+
A: GemInstaller has an extensive, multifaceted and multiplatform suite of specs and tests which is actively maintained against the latest trunk version of RubyGems and run via Continuous Integration. It is valuable for alerting about regressions in RubyGems itself. For example, leading up to the the RubyGems 1.2.0 release, the GemInstaller spec suite identified several regression bugs in RubyGems which were promptly reported and proactively fixed by awesome Eric Hodel and others before the release.
|
25
|
+
|
20
26
|
|
21
27
|
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>This space intentionally left blank.<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
|
22
28
|
|
data/website/src/index.page
CHANGED
@@ -5,17 +5,18 @@ h1. Overview
|
|
5
5
|
|
6
6
|
h2. What is GemInstaller?
|
7
7
|
|
8
|
-
GemInstaller provides automated
|
8
|
+
GemInstaller provides automated installation, loading and activation of RubyGems. It uses a simple YAML config file to:
|
9
9
|
|
10
10
|
* Automatically install the correct versions of all required gems wherever your app runs.
|
11
11
|
* Automatically ensure installed gems and versions are consistent across multiple applications, machines, platforms, and environments
|
12
|
-
* Automatically
|
12
|
+
* Automatically activate correct versions of gems on the ruby load path when your app runs ('require_gem'/'gem')
|
13
13
|
* Automatically reinstall missing dependency gems (built in to RubyGems > 1.0)
|
14
14
|
* Automatically detect correct platform to install for multi-platform gems (built in to RubyGems > 1.0)
|
15
15
|
* 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.
|
16
16
|
* 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.
|
17
17
|
* Allow for dynamic selection of gems, versions, and platforms to be used based on environment vars or any other logic.
|
18
|
-
* Avoid the "works on demo, breaks on production" syndrome
|
18
|
+
* Avoid the "works on demo, breaks on production" syndrome.
|
19
|
+
* Solve world hunger, prevent the global energy crisis, and wash your socks.
|
19
20
|
|
20
21
|
GemInstaller can be used from the command line, or embedded to run automatically on startup for a Rails app or any other Ruby program.
|
21
22
|
|
@@ -33,16 +34,24 @@ h2. Who is responsible for GemInstaller?
|
|
33
34
|
|
34
35
|
GemInstaller was created by "Chad Woolley":http://www.thewoolleyweb.com.
|
35
36
|
|
37
|
+
h2. Why not just use Rails' config.gems?
|
38
|
+
|
39
|
+
GemInstaller "has some advantages":faq.html#rails_config_gems over Rails' config.gems.
|
40
|
+
|
36
41
|
h2(#news). News
|
37
42
|
|
38
|
-
Version 0.4.
|
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.
|
39
44
|
|
40
45
|
h2(#known_issues). Known Issues
|
41
46
|
|
42
|
-
|
47
|
+
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.
|
48
|
+
|
49
|
+
Please "report any others that you find":http://thewoolleyweb.lighthouseapp.com/projects/11580-geminstaller/overview !
|
43
50
|
|
44
51
|
h2(#history). History
|
45
52
|
|
53
|
+
* 0.4.2
|
54
|
+
** Compatibility with RubyGems 1.2.0
|
46
55
|
* 0.4.1
|
47
56
|
** Fix bug with warnings for outdated/incompatible rubygems versions.
|
48
57
|
* 0.4.0
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chad Woolley
|
@@ -9,11 +9,11 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-
|
12
|
+
date: 2008-06-24 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
16
|
-
description: "== FEATURES: GemInstaller provides automated
|
16
|
+
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
17
|
email: thewoolleyman@gmail.com
|
18
18
|
executables:
|
19
19
|
- geminstaller
|
@@ -124,9 +124,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
124
124
|
requirements: []
|
125
125
|
|
126
126
|
rubyforge_project: geminstaller
|
127
|
-
rubygems_version: 1.
|
127
|
+
rubygems_version: 1.2.0
|
128
128
|
signing_key:
|
129
129
|
specification_version: 2
|
130
|
-
summary:
|
130
|
+
summary: Automated Gem installation, activation, and much more!
|
131
131
|
test_files:
|
132
132
|
- test/test_all.rb
|