Skip to content

Commit

Permalink
Update generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
m4i committed Jun 21, 2014
1 parent 5d5367c commit 14c4cb0
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 22 deletions.
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
source 'https://rubygems.org'

# Specify your gem's dependencies in rubocop-git.gemspec
gemspec
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Rubocop::Git
# RuboCop::Git

TODO: Write a gem description
RuboCop for git diff.

## Installation

Expand All @@ -18,11 +18,15 @@ Or install it yourself as:

## Usage

TODO: Write usage instructions here
Usage: rubocop-git [options]
-c, --config FILE Specify configuration file
--cached git diff --cached
--staged synonym of --cached
--hound Hound compatibility mode

## Contributing

1. Fork it ( https://github.com/[my-github-username]/rubocop-git/fork )
1. Fork it ( https://github.com/m4i/rubocop-git/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
Expand Down
3 changes: 1 addition & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
require "bundler/gem_tasks"

require 'bundler/gem_tasks'
Empty file modified bin/rubocop-git
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions lib/rubocop/git.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "rubocop/git/version"
require 'rubocop/git/version'

module Rubocop
module RuboCop
module Git
# Your code goes here...
end
Expand Down
4 changes: 2 additions & 2 deletions lib/rubocop/git/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Rubocop
module RuboCop
module Git
VERSION = "0.0.1"
VERSION = '0.0.1'
end
end
22 changes: 11 additions & 11 deletions rubocop-git.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rubocop/git/version'

Gem::Specification.new do |spec|
spec.name = "rubocop-git"
spec.version = Rubocop::Git::VERSION
spec.authors = ["Masaki Takeuchi"]
spec.email = ["[email protected]"]
spec.summary = %q{TODO: Write a short summary. Required.}
spec.description = %q{TODO: Write a longer description. Optional.}
spec.homepage = ""
spec.license = "MIT"
spec.name = 'rubocop-git'
spec.version = RuboCop::Git::VERSION
spec.authors = ['Masaki Takeuchi']
spec.email = ['[email protected]']
spec.summary = %q{RuboCop for git diff.}
spec.description = %q{RuboCop for git diff.}
spec.homepage = ''
spec.license = 'MIT'

spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.require_paths = ['lib']

spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake"
spec.add_development_dependency 'bundler', '~> 1.6'
spec.add_development_dependency 'rake'
end

0 comments on commit 14c4cb0

Please sign in to comment.