Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Rename system tools.
  • Loading branch information
Tony Spataro committed Jul 26, 2012
1 parent 5972215 commit 58e3622
Show file tree
Hide file tree
Showing 20 changed files with 12 additions and 6 deletions.
0 bin/cloud.rb → bin/cloud 100644 → 100755
File renamed without changes.
File renamed without changes.
0 bin/deploy.rb → bin/deploy 100644 → 100755
File renamed without changes.
0 bin/enroll.rb → bin/enroll 100644 → 100755
File renamed without changes.
0 bin/rad.rb → bin/rad 100644 → 100755
File renamed without changes.
0 bin/rchk.rb → bin/rchk 100644 → 100755
File renamed without changes.
0 bin/rnac.rb → bin/rnac 100644 → 100755
File renamed without changes.
File renamed without changes.
File renamed without changes.
0 bin/rs_ohai.rb → bin/rs_ohai 100644 → 100755
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
0 bin/rs_tag.rb → bin/rs_tag 100644 → 100755
File renamed without changes.
0 bin/rs_thunk.rb → bin/rs_thunk 100644 → 100755
File renamed without changes.
0 bin/rstat.rb → bin/rstat 100644 → 100755
File renamed without changes.
0 bin/system.rb → bin/system 100644 → 100755
File renamed without changes.
4 changes: 3 additions & 1 deletion lib/gem_dependencies.rb
Expand Up @@ -21,7 +21,7 @@

require 'rubygems'

# N.B. we can't use File#normalize_path yet because gems haven't been activated
# N.B. we can't use File#normalize_path yet because gems haven't been activated - Windows safety!
basedir = File.expand_path(File.join(File.dirname(__FILE__), '..'))
Dir.chdir(basedir) do
if File.exist?('Gemfile')
Expand All @@ -36,6 +36,8 @@
end
end

gem 'right_link'

gem 'eventmachine'

gem 'right_support'
Expand Down
14 changes: 9 additions & 5 deletions right_link.gemspec
@@ -1,15 +1,18 @@
# -*- mode: ruby; encoding: utf-8 -*-

Gem::Specification.new do |s|
require 'rubygems'

spec = Gem::Specification.new do |s|
s.name = 'right_link'
s.version = '5.9.0'
s.platform = Gem::Platform::RUBY

s.authors = ['RightScale']
s.email = 'support@rightscale.com'
s.homepage = 'https://github.com/rightscale/right_link'
s.summary = %q{Reusable foundation code.}
s.description = %q{A toolkit of useful, reusable foundation code created by RightScale.}

s.summary = %q{RightScale management agent.}
s.description = %q{A daemon that connects systems to the RightScale cloud management platform.}

s.required_rubygems_version = '>= 1.3.7'

Expand All @@ -26,10 +29,11 @@ Gem::Specification.new do |s|
Dir.glob('Gemfile.lock') +
Dir.glob('init/*') +
Dir.glob('actors/*.rb') +
Dir.glob('bin/*.rb') +
Dir.glob('bin/*.sh') +
Dir.glob('bin/*') +
Dir.glob('lib/**/*.rb') +
Dir.glob('lib/**/*.pub') +
Dir.glob('scripts/*') +
Dir.glob('lib/instance/cook/*.crt')

s.executables = Dir.glob('bin/*').map { |f| File.basename(f) }
end

0 comments on commit 58e3622

Please sign in to comment.