Skip to content

Commit 17077af

Browse files
committed
initial commit
0 parents  commit 17077af

File tree

6 files changed

+39
-0
lines changed

6 files changed

+39
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.gem
2+
.bundle
3+
Gemfile.lock
4+
pkg/*

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "http://rubygems.org"
2+
3+
# Specify your gem's dependencies in odor.gemspec
4+
gemspec

Rakefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require "bundler/gem_tasks"

lib/odor.rb

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
require "odor/version"
2+
3+
module Odor
4+
# Your code goes here...
5+
end

lib/odor/version.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module Odor
2+
VERSION = "0.0.1"
3+
end

odor.gemspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# -*- encoding: utf-8 -*-
2+
$:.push File.expand_path("../lib", __FILE__)
3+
require "odor/version"
4+
5+
Gem::Specification.new do |s|
6+
s.name = "odor"
7+
s.version = Odor::VERSION
8+
s.authors = ["Dave Elliott"]
9+
s.email = ["[email protected]"]
10+
s.homepage = "https://github.com/davidelliott/"
11+
s.summary = %q{Lists smells in code changes}
12+
s.description = %q{Outputs a list of bits of code which should be reviewed as they could potentialy lead to later problem from current code changes}
13+
14+
s.rubyforge_project = "odor"
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+
21+
s.add_development_dependency "rspec"
22+
end

0 commit comments

Comments
 (0)