lib/gemspec.rb in cms-inquiries-1.0.1 vs lib/gemspec.rb in cms-inquiries-1.0.2

- old
+ new

@@ -1,22 +1,22 @@ #!/usr/bin/env ruby -version = '1.0.1' +version = '1.0.2' raise "Could not get version so gemspec can not be built" if version.nil? files = Dir.glob("**/*").flatten.reject do |file| file =~ /\.gem$/ end gemspec = <<EOF Gem::Specification.new do |s| - s.name = %q{refinerycms-inquiries} + s.name = %q{cms-inquiries} s.version = %q{#{version}} s.date = %q{#{Time.now.strftime('%Y-%m-%d')}} - s.summary = %q{Inquiry handling functionality for the Refinery CMS project.} - s.description = %q{Inquiry handling functionality extracted from Refinery CMS to allow you to have a contact form and manage inquiries in the Refinery backend.} - s.homepage = %q{http://refinerycms.com} - s.email = %q{info@refinerycms.com} - s.authors = ["Resolve Digital"] + s.summary = %q{Inquiry handling functionality for the CMS project.} + s.description = %q{Inquiry handling functionality extracted from CMS to allow you to have a contact form and manage inquiries in the backend.} + s.homepage = %q{http://www.mutalis.com} + s.email = %q{services_info@mutalis.com} + s.authors = ["Mutalis LLC"] s.require_paths = %w(lib) s.files = [ '#{files.join("',\n '")}' ] @@ -24,6 +24,6 @@ s.add_dependency('filters_spam', '~> 0.2') end EOF -File.open(File.expand_path("../../refinerycms-inquiries.gemspec", __FILE__), 'w').puts(gemspec) +File.open(File.expand_path("../../cms-inquiries.gemspec", __FILE__), 'w').puts(gemspec) \ No newline at end of file