Skip to content

Commit

Permalink
Release version 0.1.0 of the gem
Browse files Browse the repository at this point in the history
Paired with Tobias Gritschacher.

Fixed path to the repository in Gerrit. Upgraded Ruby version. Replaced
single quotes with double quotes. Added Juliusz to CREDITS file.

Change-Id: Idf5ed3fa41722faa246bfd8f57996f0478a6f886
  • Loading branch information
zeljkofilipin committed Mar 13, 2014
1 parent 402740c commit e36dbf6
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .gitreview
@@ -1,6 +1,6 @@
[gerrit]
host=gerrit.wikimedia.org
port=29418
project=mediawiki/ruby_api_client.git
project=mediawiki/ruby/api.git
defaultbranch=master
defaultrebase=0
1 change: 1 addition & 0 deletions CREDITS
Expand Up @@ -8,4 +8,5 @@ For further details on licensing, see the LICENSE file.
* Amir Aharoni
* Chris McMahon
* Jeff Hall
* Juliusz Gonera
* Željko Filipin
2 changes: 1 addition & 1 deletion Gemfile
@@ -1,4 +1,4 @@
#ruby=ruby-2.1.0
#ruby=ruby-2.1.1
#ruby-gemset=mediawiki_api

source "https://rubygems.org"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -7,7 +7,7 @@ Faraday gem to talk to the API.

Add this line to your application's Gemfile:

gem 'mediawiki_api'
gem "mediawiki_api"

And then execute:

Expand All @@ -32,6 +32,6 @@ client.delete_page("Test api", "reason for deleting")

1. Fork it ( http://github.com/<my-github-username>/mediawiki_api/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
3. Commit your changes (`git commit -am "Add some feature"`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
2 changes: 1 addition & 1 deletion lib/mediawiki_api.rb
@@ -1 +1 @@
require 'mediawiki_api/client'
require "mediawiki_api/client"
6 changes: 3 additions & 3 deletions lib/mediawiki_api/client.rb
@@ -1,6 +1,6 @@
require 'faraday'
require 'faraday-cookie_jar'
require 'json'
require "faraday"
require "faraday-cookie_jar"
require "json"

module MediawikiApi
class LoginError < StandardError
Expand Down
2 changes: 1 addition & 1 deletion spec/client_spec.rb
@@ -1,4 +1,4 @@
require 'spec_helper'
require "spec_helper"

describe MediawikiApi::Client do
subject { MediawikiApi::Client.new(api_url) }
Expand Down
6 changes: 3 additions & 3 deletions spec/spec_helper.rb
@@ -1,6 +1,6 @@
require 'webmock/rspec'
require 'json'
require 'mediawiki_api'
require "webmock/rspec"
require "json"
require "mediawiki_api"

module TestHelpers
def api_url
Expand Down

0 comments on commit e36dbf6

Please sign in to comment.