meta_commit_contracts 0.1.2 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/meta_commit_contracts/contextual_ast.rb +2 -1
- data/lib/meta_commit_contracts/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e8556cfaf1595d2eb72719992509260d352faeb
|
4
|
+
data.tar.gz: 52c2b2371600e9c2bb965738eafd44e3fbc80f38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2ca07e9c000e0cd93770f5626af5d04d5d815a3a08890bf06c13263bd05c1c961d953316cefb086505e737bc6c483317206f5f4867a7b3e481ce50baf8c21ae
|
7
|
+
data.tar.gz: 2ab210d21f3e5fff0f19eefa27cc117932071bb1898c4efa580e7433d00102c22783ef315c0c4cfbec63f96a23dc7ff4ca23287017d9a2f943786c606d3e2a0c
|
data/README.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# meta commit contracts
|
2
2
|
[![Gem Version](https://badge.fury.io/rb/meta_commit_contracts.svg)](https://badge.fury.io/rb/meta_commit_contracts)
|
3
|
+
[![Build Status](https://travis-ci.org/meta-commit/contracts.svg?branch=master)](https://travis-ci.org/meta-commit/contracts)
|
3
4
|
|
4
5
|
## Description
|
5
6
|
|
@@ -4,7 +4,8 @@ module MetaCommit::Contracts
|
|
4
4
|
# @attr [MetaCommit::Contracts::Ast] target_node Target node from AST
|
5
5
|
# @attr [Array<MetaCommit::Contracts::Ast>] context_nodes Nodes bypassed on the way to target node
|
6
6
|
# @attr [Class] parser_class used to parse target node
|
7
|
+
# @attr [Boolean] whole_file_change
|
7
8
|
class ContextualAst
|
8
|
-
attr_accessor :target_node, :context_nodes, :parser_class
|
9
|
+
attr_accessor :target_node, :context_nodes, :parser_class, :whole_file_change
|
9
10
|
end
|
10
11
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: meta_commit_contracts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stanislav Dobrovolskiy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
97
|
version: '0'
|
98
98
|
requirements: []
|
99
99
|
rubyforge_project:
|
100
|
-
rubygems_version: 2.5.
|
100
|
+
rubygems_version: 2.5.2
|
101
101
|
signing_key:
|
102
102
|
specification_version: 4
|
103
103
|
summary: Agreements for meta commit extension
|