mushikago-sdk 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/Gemfile +3 -0
  2. data/LICENSE +20 -0
  3. data/README +0 -0
  4. data/Rakefile +40 -0
  5. data/lib/mushikago/version.rb +1 -1
  6. metadata +9 -5
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'http://rubygems.org'
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 MiningBrownie, Inc.
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README ADDED
File without changes
data/Rakefile ADDED
@@ -0,0 +1,40 @@
1
+ $:.unshift File.expand_path('../lib', __FILE__)
2
+ require 'rubygems'
3
+ require 'bundler'
4
+ Bundler.setup :default, :test, :development
5
+
6
+ Bundler::GemHelper.install_tasks
7
+
8
+ require 'rspec/core/rake_task'
9
+ ENV['SPEC_OPTS'] = '--colour'
10
+ RSpec::Core::RakeTask.new(:spec) do |spec|
11
+ spec.pattern = 'spec/**/*_spec.rb'
12
+ end
13
+
14
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
15
+ spec.pattern = 'spec/**/*_spec.rb'
16
+ spec.rcov = true
17
+ end
18
+
19
+ task :spec
20
+ task :default => :spec
21
+
22
+ begin
23
+ require 'yard'
24
+ YARD_OPTS = ['-m', 'markdown', '-M', 'maruku']
25
+ DOC_FILES = ['lib/**/*.rb', 'README.markdown']
26
+
27
+ YARD::Rake::YardocTask.new(:doc) do |t|
28
+ t.files = DOC_FILES
29
+ t.options = YARD_OPTS
30
+ end
31
+
32
+ namespace :doc do
33
+ YARD::Rake::YardocTask.new(:pages) do |t|
34
+ t.files = DOC_FILES
35
+ t.options = YARD_OPTS + ['-o', '../mushikago.doc']
36
+ end
37
+ end
38
+ rescue LoadError
39
+ puts "You need to install YARD."
40
+ end
@@ -1,4 +1,4 @@
1
1
  module Mushikago
2
2
  # Mushikago SDK for Ruby のバージョン
3
- VERSION = '0.1.5'
3
+ VERSION = '0.1.6'
4
4
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mushikago-sdk
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 5
10
- version: 0.1.5
9
+ - 6
10
+ version: 0.1.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Toru Matsuoka
@@ -117,7 +117,7 @@ dependencies:
117
117
  version: "0"
118
118
  type: :development
119
119
  version_requirements: *id007
120
- description: A SDK for Mushikago.
120
+ description: A SDK for Mushikago Web Service.
121
121
  email:
122
122
  - t.matsuoka@miningbrownie.co.jp
123
123
  executables: []
@@ -145,6 +145,10 @@ files:
145
145
  - lib/mushikago/http/client.rb
146
146
  - lib/mushikago/http.rb
147
147
  - lib/mushikago-sdk.rb
148
+ - LICENSE
149
+ - README
150
+ - Rakefile
151
+ - Gemfile
148
152
  - spec/spec_helper.rb
149
153
  - spec/mushikago/auth/signer_spec.rb
150
154
  - spec/mushikago/auth/signature_spec.rb
@@ -190,7 +194,7 @@ rubyforge_project:
190
194
  rubygems_version: 1.8.10
191
195
  signing_key:
192
196
  specification_version: 3
193
- summary: A SDK for Mushikago.
197
+ summary: Mushikago SDK for Ruby
194
198
  test_files:
195
199
  - spec/spec_helper.rb
196
200
  - spec/mushikago/auth/signer_spec.rb