Skip to content

Commit

Permalink
hiding executables in gemspec, were causing trouble
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip (flip) Kromer committed Aug 26, 2011
1 parent a7d41ff commit cafd800
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
1 change: 1 addition & 0 deletions Rakefile
Expand Up @@ -24,6 +24,7 @@ Configliere manage settings from many sources: static constants, simple config f
} #'
gem.email = "coders@infochimps.org"
gem.authors = ["infochimps", "mrflip"]
gem.executables = []
end
Jeweler::RubygemsDotOrgTasks.new
rescue LoadError
Expand Down
14 changes: 6 additions & 8 deletions configliere.gemspec
Expand Up @@ -5,19 +5,18 @@

Gem::Specification.new do |s|
s.name = %q{configliere}
s.version = "0.4.7"
s.version = "0.4.8"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["infochimps", "mrflip"]
s.date = %q{2011-06-28}
s.authors = [%q{infochimps}, %q{mrflip}]
s.date = %q{2011-08-26}
s.description = %q{ You've got a script. It's got some settings. Some settings are for this module, some are for that module. Most of them don't change. Except on your laptop, where the paths are different. Or when you're in production mode. Or when you're testing from the command line.
"" So, Consigliere of mine, I think you should tell your Don what everyone knows. "" -- Don Corleone
Configliere manage settings from many sources: static constants, simple config files, environment variables, commandline options, straight ruby. You don't have to predefine anything, but you can ask configliere to type-convert, require, document or password-obscure any of its fields. Modules can define config settings independently of each other and the main program.
}
s.email = %q{coders@infochimps.org}
s.executables = ["configliere", "configliere-decrypt", "configliere-delete", "configliere-dump", "configliere-encrypt", "configliere-list", "configliere-set"]
s.extra_rdoc_files = [
"LICENSE",
"README.textile"
Expand All @@ -28,7 +27,6 @@ Configliere manage settings from many sources: static constants, simple config f
"CHANGELOG.textile",
"FEATURES.txt",
"Gemfile",
"Gemfile.lock",
"LICENSE",
"README.textile",
"Rakefile",
Expand Down Expand Up @@ -77,9 +75,9 @@ Configliere manage settings from many sources: static constants, simple config f
"spec/spec_helper.rb"
]
s.homepage = %q{http://infochimps.com/labs}
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.5.0}
s.licenses = [%q{MIT}]
s.require_paths = [%q{lib}]
s.rubygems_version = %q{1.8.6}
s.summary = %q{Wise, discreet configuration management}
s.test_files = [
"examples/config_block_script.rb",
Expand Down

0 comments on commit cafd800

Please sign in to comment.