-
Notifications
You must be signed in to change notification settings - Fork 543
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
Refactors code and other minor changes #28
Conversation
Signed-off-by: Akash Manohar J <akash@akash.im>
Signed-off-by: Akash Manohar J <akash@akash.im>
Signed-off-by: Akash Manohar J <akash@akash.im>
require 'rubygems' | ||
require 'openssl' | ||
|
||
gem 'rest-client', '~> 1.4' |
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.
What did you think of my comment on this on the previous pull request (#27 (comment))?
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.
Sorry, I forgot to reply to that.
gem() method is provided by Bundler. You can check that from your console itself. Try bundle exec irb
, then do method(:gem).source_location
. That'll give you the location of the definition.
As per my bundler version (1.1.rc), it's from line-122 of lib/bundler/rubygems_integration.rb
I also did a code search of rubygems/rubygems repo on Github to verify my facts https://github.com/search?q=repo%3Arubygems%2Frubygems+kernel&repo=&langOverride=&start_value=1&type=Code&language=
And it turned out that Rubygems doesn't provide a global gem() method. I checked that rest-client is at v1.6.x, since you are using 1.4 I assume it's because you want 1.8.7 compatibility. Why not just specify that in the gemspec? And also in the readme too. So then anyone who's using the gem from source and without Bundler, will find it easier to install specific versions of dependencies.
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.
It seems like rubygems does provide a gem() method. irb
and then method(:gem).source_location
.
I would leave it upto you as to what to do now. Should I add that line back if , rebase the commits and send another pull request?
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.
Yep, would add it back, and rebase. You don't actually need to do another pull request -- fine to just 'git push -f' this branch; the pull request will automatically update.
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.
(Note that the reason we require ~> 1.4 is that pre-1.4 didn't support using your own CA file, or something along those lines. ~> 1.4 allows people to use any version above 1.4 but less than 2.0. We should probably add this to the README.)
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.
Oh I didn't know about that.
Akash Manohar J
http://akash.im
@HashNuke
On Wednesday 23 May 2012 at 11:29 AM, Greg Brockman wrote:
require 'rubygems'
require 'openssl'
-gem 'rest-client', '~> 1.4'
(Note that the reason we require ~> 1.4 is that pre-1.4 didn't support using your own CA file, or something along those lines. ~> 1.4 allows people to use any version above 1.4 but less than 2.0. We should probably add this to the README.)
Reply to this email directly or view it on GitHub:
https://github.com/stripe/stripe-ruby/pull/28/files#r865777
Signed-off-by: Akash Manohar J <akash@akash.im>
Signed-off-by: Akash Manohar J <akash@akash.im>
Signed-off-by: Akash Manohar J <akash@akash.im>
Awesome, thanks much. |
I'm still having a few doubts, won't the dependency be resolved while installing the gem itself, since the version limit is mentioned in the gemspec? P.S: You can go ahead and merge it if you feel this is sufficient for now. |
Refactors code into different files and other minor changes
That should be the case, yes, for a normal install. However, we've
On Tue, May 22, 2012 at 11:06 PM, Akash Manohar
|
Update OpenAPI specification
Hi there
This is a re-submit of #27 with changes that were pointed out. (I've closed #27).
Changes:
Tests now have to be run with
bundle exec rake test
or equivalent in rbenv. Running without thebundle exec
will fail.Fixes (as pointed out in #27)
Refactors code into different files and other minor changes #27 (comment)
Refactors code into different files and other minor changes #27 (comment)
Refactors code into different files and other minor changes #27 (comment)
P.S: In good faith and as a random response to a tweet - https://twitter.com/avdi/status/202091097906888704