diff --git a/README.md b/README.md index 0e0fc1b..0e37642 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ As with Nitin's PyEDS, there are a few things left to do: - consider adding an authenticateIP() function that uses the IP authentication method. - deal with expired tokens, etc. - change argument lists to argument hashes to conform to ruby style. + - use something like the fakeweb gem to avoid hitting the API during tests. Sam Popowich, Sam.Popowich@ualberta.ca diff --git a/ruby_eds-1.0.1.gem b/ruby_eds-1.0.1.gem new file mode 100644 index 0000000..bd4892a Binary files /dev/null and b/ruby_eds-1.0.1.gem differ diff --git a/ruby_eds-1.0.2.gem b/ruby_eds-1.0.2.gem new file mode 100644 index 0000000..b054d61 Binary files /dev/null and b/ruby_eds-1.0.2.gem differ diff --git a/ruby_eds.gemspec b/ruby_eds.gemspec new file mode 100644 index 0000000..4027a4a --- /dev/null +++ b/ruby_eds.gemspec @@ -0,0 +1,12 @@ +Gem::Specification.new do |s| + s.name = "ruby_eds" + s.version = "1.0.2" + s.date = "2013-06-30" + s.summary = "Ruby wrapper for EDS API." + s.description = s.summary + s.author = ["Sam Popowich"] + s.email = "Sam.Popowich@ualberta.ca" + s.homepage = "http://github.com/ualbertalib/ruby_eds" + s.files = ["lib/ruby_eds.rb"] + s.license = 'MIT' +end