apt-spy2 0.2.1 → 0.2.2

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/bin/apt-spy2 CHANGED
@@ -3,7 +3,6 @@
3
3
  require 'rubygems'
4
4
  require 'bundler/setup'
5
5
 
6
-
7
6
  require 'thor'
8
7
  require 'open-uri'
9
8
  require 'colored'
@@ -1,5 +1,5 @@
1
1
  module Apt
2
2
  module Spy2
3
- VERSION = "0.2.1"
3
+ VERSION = "0.2.2"
4
4
  end
5
5
  end
data/lib/apt/spy2.rb CHANGED
@@ -81,7 +81,7 @@ class AptSpy2 < Thor
81
81
 
82
82
  t = Time.now
83
83
  r = `lsb_release -c`.split(" ")[1]
84
- sources = "## Updated on #{t.to_s}\n"
84
+ sources = "## Updated on #{t.to_s} by apt-spy2\n"
85
85
  sources << "deb #{mirror} #{r} main restricted universe multiverse\n"
86
86
  sources << "deb #{mirror} #{r}-updates main restricted universe multiverse\n"
87
87
  sources << "deb #{mirror} #{r}-backports main restricted universe multiverse\n"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apt-spy2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-07-20 00:00:00.000000000 Z
12
+ date: 2013-07-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: thor
@@ -90,8 +90,6 @@ files:
90
90
  - Rakefile
91
91
  - Vagrantfile
92
92
  - apt-spy2.gemspec
93
- - apt-spy2/Gemfile
94
- - apt-spy2/lib/apt/spy2.rb
95
93
  - bin/apt-spy2
96
94
  - lib/apt/spy2.rb
97
95
  - lib/apt/spy2/version.rb
data/apt-spy2/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in apt-spy2.gemspec
4
- gemspec
@@ -1,7 +0,0 @@
1
- require "apt/spy2/version"
2
-
3
- module Apt
4
- module Spy2
5
- # Your code goes here...
6
- end
7
- end