From 37cb13c466b3d09863ede69c16bad25adf56fcb0 Mon Sep 17 00:00:00 2001 From: David Tai Date: Fri, 17 Jul 2015 15:02:02 -0700 Subject: [PATCH] rename to crowdstart-rails --- Gemfile | 2 +- README.md | 10 +++++----- crowdstart-ruby.gemspec | 33 --------------------------------- 3 files changed, 6 insertions(+), 39 deletions(-) delete mode 100644 crowdstart-ruby.gemspec diff --git a/Gemfile b/Gemfile index 6049312..d0438bf 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,4 @@ source 'https://rubygems.org' -# Specify your gem's dependencies in crowdstart-ruby.gemspec +# Specify your gem's dependencies in crowdstart-rails.gemspec gemspec diff --git a/README.md b/README.md index 328f68f..3770dc9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Crowdstart::Ruby +# Crowdstart::Rails -Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/crowdstart/ruby`. To experiment with that code, run `bin/console` for an interactive prompt. +Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/crowdstart/rails`. To experiment with that code, run `bin/console` for an interactive prompt. TODO: Delete this and the text above, and describe your gem @@ -9,7 +9,7 @@ TODO: Delete this and the text above, and describe your gem Add this line to your application's Gemfile: ```ruby -gem 'crowdstart-ruby' +gem 'crowdstart-rails' ``` And then execute: @@ -18,7 +18,7 @@ And then execute: Or install it yourself as: - $ gem install crowdstart-ruby + $ gem install crowdstart-rails ## Usage @@ -32,7 +32,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To ## Contributing -Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/crowdstart-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct. +Bug reports and pull requests are welcome on GitHub at https://github.com/crowdstart/crowdstart-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct. ## License diff --git a/crowdstart-ruby.gemspec b/crowdstart-ruby.gemspec deleted file mode 100644 index 6ebffd3..0000000 --- a/crowdstart-ruby.gemspec +++ /dev/null @@ -1,33 +0,0 @@ -# coding: utf-8 -lib = File.expand_path('../lib', __FILE__) -$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) -require 'crowdstart/ruby/version' - -Gem::Specification.new do |spec| - spec.name = "crowdstart-ruby" - spec.version = Crowdstart::Ruby::VERSION - spec.authors = ["David Tai"] - spec.email = ["david@verus.io"] - - spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.} - spec.description = %q{TODO: Write a longer description or delete this line.} - spec.homepage = "TODO: Put your gem's website or public repo URL here." - spec.license = "MIT" - - # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or - # delete this section to allow pushing this gem to any host. - if spec.respond_to?(:metadata) - spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'" - else - raise "RubyGems 2.0 or newer is required to protect against public gem pushes." - end - - spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } - spec.bindir = "exe" - spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } - spec.require_paths = ["lib"] - - spec.add_development_dependency "bundler", "~> 1.10" - spec.add_development_dependency "rake", "~> 10.0" - spec.add_development_dependency "rspec" -end