keystorage 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.2
1
+ 0.4.3
data/bin/keystorage CHANGED
@@ -1,2 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- require __FILE__ + '.rb'
2
+ $:.unshift(File.dirname(__FILE__) + '/../lib')
3
+ require 'keystorage/cli'
4
+
5
+ Keystorage::CLI::run(ARGV)
data/keystorage.gemspec CHANGED
@@ -5,14 +5,15 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{keystorage}
8
- s.version = "0.4.2"
8
+ s.version = "0.4.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Yoshihiro TAKAHARA"]
12
- s.date = %q{2011-01-16}
12
+ s.date = %q{2011-01-17}
13
+ s.default_executable = %q{keystorage}
13
14
  s.description = %q{This is a command to store and manage your passwords.}
14
15
  s.email = %q{y.takahara@gmail.com}
15
- s.executables = ["keystorage", "keystorage.rb"]
16
+ s.executables = ["keystorage"]
16
17
  s.extra_rdoc_files = [
17
18
  "LICENSE.txt",
18
19
  "README.rdoc"
@@ -24,7 +25,6 @@ Gem::Specification.new do |s|
24
25
  "Rakefile",
25
26
  "VERSION",
26
27
  "bin/keystorage",
27
- "bin/keystorage.rb",
28
28
  "keystorage.gemspec",
29
29
  "lib/keystorage.rb",
30
30
  "lib/keystorage/cli.rb",
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: keystorage
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 2
10
- version: 0.4.2
9
+ - 3
10
+ version: 0.4.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Yoshihiro TAKAHARA
@@ -15,8 +15,8 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-01-16 00:00:00 +09:00
19
- default_executable:
18
+ date: 2011-01-17 00:00:00 +09:00
19
+ default_executable: keystorage
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  type: :development
@@ -82,7 +82,6 @@ description: This is a command to store and manage your passwords.
82
82
  email: y.takahara@gmail.com
83
83
  executables:
84
84
  - keystorage
85
- - keystorage.rb
86
85
  extensions: []
87
86
 
88
87
  extra_rdoc_files:
@@ -95,7 +94,6 @@ files:
95
94
  - Rakefile
96
95
  - VERSION
97
96
  - bin/keystorage
98
- - bin/keystorage.rb
99
97
  - keystorage.gemspec
100
98
  - lib/keystorage.rb
101
99
  - lib/keystorage/cli.rb
data/bin/keystorage.rb DELETED
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require 'pp'
3
- require 'optparse'
4
- $:.unshift(File.dirname(__FILE__) + '/../lib')
5
- require 'keystorage/cli'
6
-
7
- Keystorage::CLI::run(ARGV)