-
Notifications
You must be signed in to change notification settings - Fork 254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update README.md with gemspec #355
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you're adding development info, you might also want to add something about using bundler as well
git clone https://github.com/ruby-ldap/ruby-net-ldap
cd ruby-net-ldap
gem install bundler # if you don't have it
bundle # or bundle install
bundle exec rake rubotest
In fact, bundler usage is mentioned in CONTRIBUTING.md.
Additionally, gem build ...
, is usually followed by gem install ...
- or you can use bundler's rake tasks to do that for you (bundle exec rake build
, bundle exec rake install
).
Also, the changes to lib/net/ldap.rb
would be best as another PR.
(cherry picked from commit b54d7b1)
Thank you for the feedback @jethrodaniel. Have updated the README as per your suggestions. Will raise separate PRs for the rest of the changes |
👍 thanks |
@@ -1315,6 +1316,7 @@ def new_connection | |||
:hosts => @hosts, | |||
:encryption => @encryption, | |||
:instrumentation_service => @instrumentation_service, | |||
:socket_class => @socket_class, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes to this file should be in a separate PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dhivyada ☝️
@@ -1315,6 +1316,7 @@ def new_connection | |||
:hosts => @hosts, | |||
:encryption => @encryption, | |||
:instrumentation_service => @instrumentation_service, | |||
:socket_class => @socket_class, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dhivyada ☝️
Closing as stale. Please open a new PR if there' something else you'd like to add. Thank you! |
Updates README.md