smart_tag 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/bin/smart_tag ADDED
@@ -0,0 +1,2 @@
1
+ require "smart_tag"
2
+ SmartTag.create_tag(ARGV[0], ARGV[1])
@@ -1,3 +1,3 @@
1
1
  module SmartTag
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/lib/smart_tag.rb CHANGED
@@ -2,6 +2,6 @@ require "smart_tag/version"
2
2
 
3
3
  module SmartTag
4
4
  def self.create_tag(name, value)
5
- puts "#{name} #{value}"
5
+ puts "#{name} #{value}"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smart_tag
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -14,7 +14,8 @@ dependencies: []
14
14
  description: ! 'Tag-it: a jQuery UI plugin'
15
15
  email:
16
16
  - info@tuliang.org
17
- executables: []
17
+ executables:
18
+ - smart_tag
18
19
  extensions: []
19
20
  extra_rdoc_files: []
20
21
  files:
@@ -23,6 +24,7 @@ files:
23
24
  - LICENSE.txt
24
25
  - README.md
25
26
  - Rakefile
27
+ - bin/smart_tag
26
28
  - lib/smart_tag.rb
27
29
  - lib/smart_tag/version.rb
28
30
  - smart_tag.gemspec