chronic_tree 1.0.0 → 1.0.1
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/chronic_tree.gemspec +3 -3
- data/lib/chronic_tree/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c08e7c08d0a62e5de3da710d1364ddb52a5d1ef6
|
|
4
|
+
data.tar.gz: 1f4e15a48b0817d3ca971825b6468ea07f0a6687
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 173944dd62aa6815fe6e91e960f5e8df4ac119b0fc4bf9246ccb9e0b1a1af0c583c5300cedadb3bc05d9ee09b6bb2f39b41fbd7e7163086104fd4bb10e8eac2c
|
|
7
|
+
data.tar.gz: 87d7357b408d278f5a3cef177008e70f7374aefcfce0992ef52480d6e3d4906c56f9a01469129ab102318f664340c5b3c23e6cce64240d24182b58319ab86dfa
|
data/Gemfile.lock
CHANGED
data/chronic_tree.gemspec
CHANGED
|
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = ChronicTree::VERSION
|
|
9
9
|
spec.authors = ["bigxiang"]
|
|
10
10
|
spec.email = ["bigxiang@gmail.com"]
|
|
11
|
-
spec.description = %q{Build a tree with
|
|
12
|
-
spec.summary = %q{Build a tree with
|
|
13
|
-
spec.homepage = ""
|
|
11
|
+
spec.description = %q{Build a tree with historical versions and multiple scopes by one model class.}
|
|
12
|
+
spec.summary = %q{Build a tree with historical versions and multiple scopes by one model class.}
|
|
13
|
+
spec.homepage = "https://github.com/bigxiang/chronic_tree"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
data/lib/chronic_tree/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chronic_tree
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bigxiang
|
|
@@ -122,7 +122,8 @@ dependencies:
|
|
|
122
122
|
- - ">="
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
124
|
version: 4.0.0
|
|
125
|
-
description: Build a tree with
|
|
125
|
+
description: Build a tree with historical versions and multiple scopes by one model
|
|
126
|
+
class.
|
|
126
127
|
email:
|
|
127
128
|
- bigxiang@gmail.com
|
|
128
129
|
executables: []
|
|
@@ -150,7 +151,7 @@ files:
|
|
|
150
151
|
- lib/generators/chronic_tree/templates/create_chronic_tree_elements.rb
|
|
151
152
|
- spec/chronic_tree_spec.rb
|
|
152
153
|
- spec/spec_helper.rb
|
|
153
|
-
homepage:
|
|
154
|
+
homepage: https://github.com/bigxiang/chronic_tree
|
|
154
155
|
licenses:
|
|
155
156
|
- MIT
|
|
156
157
|
metadata: {}
|
|
@@ -173,7 +174,7 @@ rubyforge_project:
|
|
|
173
174
|
rubygems_version: 2.2.2
|
|
174
175
|
signing_key:
|
|
175
176
|
specification_version: 4
|
|
176
|
-
summary: Build a tree with
|
|
177
|
+
summary: Build a tree with historical versions and multiple scopes by one model class.
|
|
177
178
|
test_files:
|
|
178
179
|
- spec/chronic_tree_spec.rb
|
|
179
180
|
- spec/spec_helper.rb
|