raptget 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Changelog +35 -0
  2. data/README +14 -0
  3. data/lib/raptget/version.rb +2 -2
  4. metadata +4 -4
data/Changelog CHANGED
@@ -0,0 +1,35 @@
1
+ commit 447bf1cb796f3601ba1809e09045f443d724dbee
2
+ Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
3
+ Date: Tue Dec 28 12:29:02 2010 +0800
4
+
5
+ Added yardoc API documentation
6
+
7
+ commit 20174fe74c38d47dc7b5ae5d9d673e68ca085a2c
8
+ Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
9
+ Date: Tue Dec 28 12:27:27 2010 +0800
10
+
11
+ bump to version 0.1.1
12
+
13
+ commit 914690cbaee71217f78deeb48a204ffe8c098bcc
14
+ Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
15
+ Date: Tue Dec 28 11:55:44 2010 +0800
16
+
17
+ changed the version module name
18
+
19
+ commit f1655df0fd2b0fa0e7b313d6140814220f468654
20
+ Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
21
+ Date: Mon Dec 27 19:52:32 2010 +0000
22
+
23
+ Added basic usage instructions
24
+
25
+ commit dcda2467fc9f4b51807ac94898f252454500ad7f
26
+ Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
27
+ Date: Mon Dec 27 19:15:24 2010 +0000
28
+
29
+ Added github page as homepage in gemspec
30
+
31
+ commit 164d7524024ec1f7ccd9d308943b3d8790a61316
32
+ Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
33
+ Date: Mon Dec 27 19:10:30 2010 +0000
34
+
35
+ Initial Commit
data/README CHANGED
@@ -1,3 +1,17 @@
1
1
  README for raptget
2
2
  ==================
3
3
 
4
+ Raptget is a gem providing a ruby interface to the apt-get package manager.
5
+
6
+ To install, type 'gem install raptget'
7
+
8
+ Usage:
9
+
10
+ require 'raptget'
11
+
12
+ packages = Array.new
13
+ packages.push('iagno')
14
+ packages.push('gnome-games')
15
+
16
+ aptget = Raptget.new
17
+ aptget.install(packages)
@@ -1,8 +1,8 @@
1
- module Raptget #:nodoc:
1
+ module RAptget #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raptget
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Joel Bryan Juliano
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-12-28 00:00:00 +00:00
18
+ date: 2010-12-28 00:00:00 +08:00
19
19
  default_executable:
20
20
  dependencies: []
21
21