-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
masarakki
committed
Sep 4, 2014
1 parent
0ec0894
commit e358c46
Showing
11 changed files
with
93 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Metrics/LineLength: | ||
Enabled: false | ||
Style/Documentation: | ||
Enabled: false | ||
Style/RegexpLiteral: | ||
MaxSlashes: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,6 @@ language: ruby | |
rvm: | ||
- 2.0.0 | ||
- 2.1.2 | ||
script: | ||
- bundle exec rake spec | ||
- bundle exec rubocop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ require 'rspec/core/rake_task' | |
|
||
RSpec::Core::RakeTask.new(:spec) | ||
|
||
task :default => :spec | ||
task default: :spec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,23 +5,23 @@ require 'ikazuchi/version' | |
require 'ikazuchi/definition' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "ikazuchi" | ||
spec.name = 'ikazuchi' | ||
spec.version = Ikazuchi::VERSION | ||
spec.authors = ["masarakki"] | ||
spec.email = ["[email protected]"] | ||
spec.description = %q{meta-package of useful gems for rails development} | ||
spec.summary = %q{meta-package of useful gems for rails development} | ||
spec.homepage = "https://github.com/masarakki/ikazuchi" | ||
spec.license = "MIT" | ||
spec.authors = ['masarakki'] | ||
spec.email = ['[email protected]'] | ||
spec.description = 'meta-package of useful gems for rails development' | ||
spec.summary = 'meta-package of useful gems for rails development' | ||
spec.homepage = 'https://github.com/masarakki/ikazuchi' | ||
spec.license = 'MIT' | ||
|
||
spec.files = `git ls-files`.split($/) | ||
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR) | ||
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.3" | ||
spec.add_development_dependency "rake" | ||
spec.add_development_dependency "rspec" | ||
spec.add_development_dependency 'bundler', '~> 1.3' | ||
spec.add_development_dependency 'rake' | ||
spec.add_development_dependency 'rspec' | ||
|
||
Ikazuchi::Definition.dependencies.each do |dependency| | ||
spec.add_dependency dependency.name, dependency.requirement.to_s | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
require "ikazuchi/version" | ||
require "ikazuchi/definition" | ||
require 'ikazuchi/version' | ||
require 'ikazuchi/definition' | ||
require 'ikazuchi/railtie' if defined? Rails |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Ikazuchi | ||
VERSION = "0.1.1" | ||
VERSION = '0.1.1' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
require 'spec_helper' | ||
|
||
describe Ikazuchi::Definition do | ||
it { expect(Ikazuchi::Definition.dependencies).to all( be_a Bundler::Dependency ) } | ||
it { expect(Ikazuchi::Definition.dependencies).to all(be_a Bundler::Dependency) } | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters