rename to crowdstart-rails

This commit is contained in:
David Tai
2015-07-17 15:02:02 -07:00
parent a529c30abe
commit 37cb13c466
3 changed files with 6 additions and 39 deletions
+1 -1
View File
@@ -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
+5 -5
View File
@@ -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
-33
View File
@@ -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