gemlock 0.0.1
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/.gitignore +4 -0
- data/Gemfile +4 -0
- data/Rakefile +1 -0
- data/gemlock.gemspec +20 -0
- data/lib/gemlock.rb +5 -0
- data/lib/gemlock/version.rb +3 -0
- metadata +76 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'bundler/gem_tasks'
|
data/gemlock.gemspec
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "gemlock/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "gemlock"
|
|
7
|
+
s.version = Gemlock::VERSION
|
|
8
|
+
s.authors = ["Mike Skalnik", "Brian Gardner", "Tyler Hastings", "Jabari Worthy"]
|
|
9
|
+
s.email = ["mskalnik@gatech.edu"]
|
|
10
|
+
s.homepage = ""
|
|
11
|
+
s.summary = %q{Get notified when there are updates for gems in your Rails application}
|
|
12
|
+
s.description = %q{When installed, allows a user to check for updates in their Rails application}
|
|
13
|
+
|
|
14
|
+
s.rubyforge_project = "gemlock"
|
|
15
|
+
|
|
16
|
+
s.files = `git ls-files`.split("\n")
|
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
19
|
+
s.require_paths = ["lib"]
|
|
20
|
+
end
|
data/lib/gemlock.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: gemlock
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 29
|
|
5
|
+
prerelease:
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 0
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.0.1
|
|
11
|
+
platform: ruby
|
|
12
|
+
authors:
|
|
13
|
+
- Mike Skalnik
|
|
14
|
+
- Brian Gardner
|
|
15
|
+
- Tyler Hastings
|
|
16
|
+
- Jabari Worthy
|
|
17
|
+
autorequire:
|
|
18
|
+
bindir: bin
|
|
19
|
+
cert_chain: []
|
|
20
|
+
|
|
21
|
+
date: 2011-09-18 00:00:00 -04:00
|
|
22
|
+
default_executable:
|
|
23
|
+
dependencies: []
|
|
24
|
+
|
|
25
|
+
description: When installed, allows a user to check for updates in their Rails application
|
|
26
|
+
email:
|
|
27
|
+
- mskalnik@gatech.edu
|
|
28
|
+
executables: []
|
|
29
|
+
|
|
30
|
+
extensions: []
|
|
31
|
+
|
|
32
|
+
extra_rdoc_files: []
|
|
33
|
+
|
|
34
|
+
files:
|
|
35
|
+
- .gitignore
|
|
36
|
+
- Gemfile
|
|
37
|
+
- Rakefile
|
|
38
|
+
- gemlock.gemspec
|
|
39
|
+
- lib/gemlock.rb
|
|
40
|
+
- lib/gemlock/version.rb
|
|
41
|
+
has_rdoc: true
|
|
42
|
+
homepage: ""
|
|
43
|
+
licenses: []
|
|
44
|
+
|
|
45
|
+
post_install_message:
|
|
46
|
+
rdoc_options: []
|
|
47
|
+
|
|
48
|
+
require_paths:
|
|
49
|
+
- lib
|
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
51
|
+
none: false
|
|
52
|
+
requirements:
|
|
53
|
+
- - ">="
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
hash: 3
|
|
56
|
+
segments:
|
|
57
|
+
- 0
|
|
58
|
+
version: "0"
|
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
60
|
+
none: false
|
|
61
|
+
requirements:
|
|
62
|
+
- - ">="
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
hash: 3
|
|
65
|
+
segments:
|
|
66
|
+
- 0
|
|
67
|
+
version: "0"
|
|
68
|
+
requirements: []
|
|
69
|
+
|
|
70
|
+
rubyforge_project: gemlock
|
|
71
|
+
rubygems_version: 1.5.3
|
|
72
|
+
signing_key:
|
|
73
|
+
specification_version: 3
|
|
74
|
+
summary: Get notified when there are updates for gems in your Rails application
|
|
75
|
+
test_files: []
|
|
76
|
+
|