kinit 0.0.4 → 0.0.5
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/run_kinit +2 -0
- data/lib/kinit.rb +7 -7
- data/lib/kinit/railtie.rb +11 -0
- data/lib/kinit/version.rb +1 -1
- data/lib/tasks/kinit_enforcer.rake +6 -0
- metadata +10 -7
data/bin/run_kinit
CHANGED
data/lib/kinit.rb
CHANGED
@@ -1,22 +1,22 @@
|
|
1
|
+
Dir["tasks/*.rake"].each { |ext| load ext } if defined?(Rake)
|
2
|
+
|
1
3
|
require "kinit/version"
|
2
4
|
|
3
5
|
|
4
6
|
module Kinit
|
7
|
+
require 'kinit/railtie' if defined?(Rails)
|
5
8
|
|
6
9
|
class GemsEnforcer
|
7
10
|
|
8
11
|
#class GemNotPresent < Exception; end
|
12
|
+
#attr_reader :error, :message
|
9
13
|
GemError = Class.new(ArgumentError)
|
10
|
-
|
11
|
-
AlphabetError = Class.new(ArgumentError)
|
12
|
-
|
13
|
-
attr_reader :error, :message
|
14
|
-
|
14
|
+
|
15
15
|
#def initialize (app, options={})
|
16
16
|
#end
|
17
17
|
|
18
|
-
def initialize
|
19
|
-
end
|
18
|
+
#def initialize
|
19
|
+
#end
|
20
20
|
|
21
21
|
def CheckIsGemPresent
|
22
22
|
#return true if Gem::Specification.find_by_name(gemName)
|
data/lib/kinit/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kinit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
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-05-
|
12
|
+
date: 2013-05-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -59,9 +59,9 @@ dependencies:
|
|
59
59
|
- - ! '>='
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
|
-
description:
|
63
|
-
|
64
|
-
|
62
|
+
description: A gem enforcer tool to check and enforce important gems and best practices
|
63
|
+
for code quality in ruby and rails code. Its configurable to enable disable what
|
64
|
+
all to enforce.
|
65
65
|
email:
|
66
66
|
- rohan_daxini@yahoo.com
|
67
67
|
executables:
|
@@ -70,9 +70,11 @@ extensions:
|
|
70
70
|
- ext/kinit/extconf.rb
|
71
71
|
extra_rdoc_files: []
|
72
72
|
files:
|
73
|
+
- lib/kinit/railtie.rb
|
73
74
|
- lib/kinit/version.rb
|
74
75
|
- lib/kinit.rb
|
75
76
|
- bin/run_kinit
|
77
|
+
- lib/tasks/kinit_enforcer.rake
|
76
78
|
- ext/kinit/extconf.rb
|
77
79
|
homepage: https://github.com/rohandaxini/kinit
|
78
80
|
licenses:
|
@@ -99,6 +101,7 @@ rubyforge_project:
|
|
99
101
|
rubygems_version: 1.8.25
|
100
102
|
signing_key:
|
101
103
|
specification_version: 3
|
102
|
-
summary:
|
103
|
-
|
104
|
+
summary: A gem enforcer tool to check and enforce important gems and best practices
|
105
|
+
for code quality in ruby and rails code. Its configurable to enable disable what
|
106
|
+
all to enforce.
|
104
107
|
test_files: []
|