forked from HubspotCommunity/hubspot-ruby
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Removed Jeweler and cleaned up gemspec - Moved gem dependencies to gemspec - Removed references to my previous employer :)
- Loading branch information
1 parent
53e654d
commit fe20659
Showing
16 changed files
with
1,168 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,3 @@ | ||
source "http://rubygems.org" | ||
# Add dependencies required to use your gem here. | ||
# Example: | ||
# gem "activesupport", ">= 2.3.5" | ||
|
||
gem "activesupport", ">=3.0.0" | ||
gem "httparty", ">=0.10.0" | ||
|
||
# Add dependencies to develop your gem here. | ||
# Include everything needed to run rake, tests, features, etc. | ||
group :development do | ||
gem "rspec" | ||
gem "rr" | ||
gem "webmock", '< 1.10' | ||
gem "vcr" | ||
gem "rdoc" | ||
gem "bundler" | ||
gem "jeweler" | ||
gem "simplecov" | ||
gem "awesome_print" | ||
gem "timecop" | ||
gem "guard-rspec", require: false | ||
end | ||
# Add dependencies to hubspot-ruby.gemspec | ||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
# Releasing to Rubygems | ||
|
||
1. Update version in `lib/hubspot/version.rb`. | ||
2. Regenerate gemspec with `rake gemspec:generate`. | ||
3. Commit & push `version.rb` and `hubspot-ruby.gemspec`. | ||
4. Build the gem with `gem build hubspot-ruby.gemspec`. | ||
5. Push the resulting .gem file to Rubygems with `gem push` | ||
1. Update gemspec. | ||
2. Push updates to github. | ||
3. Build gem with `gem build hubspot-ruby.gemspec`. | ||
4. Push the resulting .gem file to Rubygems with `gem push` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,23 +11,6 @@ rescue Bundler::BundlerError => e | |
end | ||
require 'rake' | ||
|
||
require 'jeweler' | ||
require './lib/hubspot/version.rb' | ||
Jeweler::Tasks.new do |gem| | ||
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options | ||
gem.name = "hubspot-ruby" | ||
gem.homepage = "http://github.com/omadahealth/hubspot-ruby" | ||
#gem.license = "MIT" | ||
gem.summary = %Q{hubspot-ruby is a wrapper for the HubSpot REST API} | ||
gem.description = %Q{hubspot-ruby is a wrapper for the HubSpot REST API} | ||
gem.email = "[email protected]" | ||
gem.authors = ["Andrew DiMichele"] | ||
gem.version = Hubspot::Version::STRING | ||
|
||
# dependencies defined in Gemfile | ||
end | ||
Jeweler::RubygemsDotOrgTasks.new | ||
|
||
require 'rspec/core' | ||
require 'rspec/core/rake_task' | ||
|
||
|
Oops, something went wrong.