From aa2d5b9f51db1fc76cd802ecca795582966ee6a8 Mon Sep 17 00:00:00 2001 From: Loic Nageleisen Date: Sun, 14 Feb 2016 16:59:21 +0100 Subject: [PATCH] name the damn thing --- lib/normandy.rb | 1 + channel.gemspec => normandy.gemspec | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 lib/normandy.rb rename channel.gemspec => normandy.gemspec (70%) diff --git a/lib/normandy.rb b/lib/normandy.rb new file mode 100644 index 0000000..7dbd74e --- /dev/null +++ b/lib/normandy.rb @@ -0,0 +1 @@ +require 'channel' diff --git a/channel.gemspec b/normandy.gemspec similarity index 70% rename from channel.gemspec rename to normandy.gemspec index 598a6b3..9807f30 100644 --- a/channel.gemspec +++ b/normandy.gemspec @@ -1,13 +1,13 @@ Gem::Specification.new do |s| - s.name = 'channel' + s.name = 'normandy' s.version = '0.1.0' s.licenses = ['MIT'] - s.summary = 'Channels' + s.summary = 'Channels, CSP style' s.description = 'Share memory by communicating' s.authors = ['Loic Nageleisen'] s.email = 'loic.nageleisen@gmail.com' - s.files = ['lib/channel.rb'] - s.homepage = 'https://github.com/lloeki/channel' + s.files = ['lib/**/*.rb'] + s.homepage = 'https://github.com/lloeki/normandy' s.add_development_dependency 'pry' s.add_development_dependency 'rubocop'