hunter2 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Binary file
data/MANIFEST CHANGED
@@ -1,9 +1,9 @@
1
+ .hunter2.db
1
2
  Gemfile
2
3
  MANIFEST
3
4
  Rakefile
4
5
  bin/hunter2
5
6
  database.db
6
- lib/database.db
7
7
  lib/hunter2/command.rb
8
8
  lib/hunter2/model/password.rb
9
9
  lib/hunter2/spec/bacon/color_output.rb
@@ -69,6 +69,14 @@ module Hunter2
69
69
  puts "Password for #{option(:key)}: #{password}"
70
70
  end
71
71
 
72
+ def setup
73
+ Sequel::Migrator.run(
74
+ Hunter2.database,
75
+ File.expand_path('../../../migrations', __FILE__),
76
+ :target => nil
77
+ )
78
+ end
79
+
72
80
  protected
73
81
 
74
82
  def version
@@ -1,3 +1,3 @@
1
1
  module Hunter2
2
- Version = '0.0.1'
2
+ Version = '0.0.2'
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: hunter2
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.1
5
+ version: 0.0.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Abdelrahman Mahmoud
@@ -99,12 +99,12 @@ extensions: []
99
99
  extra_rdoc_files: []
100
100
 
101
101
  files:
102
+ - .hunter2.db
102
103
  - Gemfile
103
104
  - MANIFEST
104
105
  - Rakefile
105
106
  - bin/hunter2
106
107
  - database.db
107
- - lib/database.db
108
108
  - lib/hunter2/command.rb
109
109
  - lib/hunter2/model/password.rb
110
110
  - lib/hunter2/spec/bacon/color_output.rb
File without changes