mikutter_plugin_base 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -24,6 +24,7 @@ Finally execute mikkuter with bundled gems:
24
24
 
25
25
  ```ruby
26
26
  # path/to/mikutter/plugin/dir/sample.rb
27
+ require 'mikutter_plugin_base'
27
28
 
28
29
  class Sample < Mikutter::PluginBase
29
30
  def run(plugin)
@@ -1,3 +1,3 @@
1
1
  module MikutterPluginBase
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.version = MikutterPluginBase::VERSION
9
9
  gem.authors = ["Taiki ONO"]
10
10
  gem.email = ["taiks.4559@gmail.com"]
11
- gem.description = %q{Write mikutter plugin using module system.}
11
+ gem.description = %q{Write mikutter plugin using module system like Sinatra.}
12
12
  gem.summary = %q{Add new way to write mikutter plugin.}
13
13
  gem.homepage = "http://taiki45.github.com/mikutter-plugin-base/"
14
14
 
@@ -16,4 +16,6 @@ Gem::Specification.new do |gem|
16
16
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
+
20
+ gem.add_dependency 'active_support'
19
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mikutter_plugin_base
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,8 +10,24 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
  date: 2013-02-17 00:00:00.000000000 Z
13
- dependencies: []
14
- description: Write mikutter plugin using module system.
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: active_support
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ description: Write mikutter plugin using module system like Sinatra.
15
31
  email:
16
32
  - taiks.4559@gmail.com
17
33
  executables: []