penman 0.6.10 → 1.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 47b1baf87461019b679093c6dfd02594e22ed6a5
4
- data.tar.gz: 85567dfb47568fdba2247bac0cf3f1ea9722ecec
3
+ metadata.gz: b955fd6a6e0b0a322f818deb0cecdd994fbe11dd
4
+ data.tar.gz: 40d86541d4d6892490842a7a8dd47d1e18a1ff94
5
5
  SHA512:
6
- metadata.gz: 9971f30ebacf29ad1a7f81912d2e7302a731ffda9c088c4bda702e05c43a497ddab981a988d80f3e437f0a4cd504624b052123deb6bbfba916286796875a325f
7
- data.tar.gz: 2b04249ea44765b12947917d814f6e6fd357282aa500d208ed563afb9f97473640abcc0049b16cec733a308fdff4fa752e39ac9f6dea36597d87645cc46feeb0
6
+ metadata.gz: 78bc968af2d00f22a17f892feab343c6d313872ee68cf29816106e7bbe39a4cf7dc03a7030e19f74ed81c5ed94d21bf7854378ec18abe20de31bb0353e97fb44
7
+ data.tar.gz: 9e09a5a5f3ec69cb5373257e2bfdca2dcacb81450a4dd66c22bec2a89b8ec4d8f841741c058fee12df333c16a586e2e1a22c617213e24d2e57ce613179e988a1
@@ -0,0 +1,5 @@
1
+ class ChangeRecordIdColumnType < ActiveRecord::Migration
2
+ def change
3
+ change_column :record_tags, :record_id, :string, null: false
4
+ end
5
+ end
@@ -21,7 +21,7 @@ module Penman
21
21
  ActiveSupport::JSON.decode(key).symbolize_keys
22
22
  rescue JSON::ParserError
23
23
  # This will occur if the candidate key isn't encoded as json.
24
- # An example of this would be when we are tagging yaml files as touched when messing with lang.
24
+ # An example of this is when we tag yaml files as touched when updating lang.
25
25
  # In that case we store the file path in the candidate key column as a regular string.
26
26
  key
27
27
  end
@@ -1,7 +1,7 @@
1
1
  module Penman
2
- MAJOR = 0 # api
3
- MINOR = 6 # features
4
- PATCH = 10 # bug fixes
2
+ MAJOR = 1
3
+ MINOR = 0
4
+ PATCH = 0
5
5
 
6
6
  VERSION = [MAJOR, MINOR, PATCH].compact.join('.')
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: penman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.10
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mat Pataki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-04 00:00:00.000000000 Z
11
+ date: 2016-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -116,6 +116,7 @@ files:
116
116
  - Rakefile
117
117
  - config/routes.rb
118
118
  - db/migrate/20150909222413_create_record_tags.rb
119
+ - db/migrate/20160730032504_change_record_id_column_type.rb
119
120
  - lib/penman.rb
120
121
  - lib/penman/configuration.rb
121
122
  - lib/penman/engine.rb
@@ -147,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
147
148
  version: '0'
148
149
  requirements: []
149
150
  rubyforge_project:
150
- rubygems_version: 2.4.5.1
151
+ rubygems_version: 2.6.3
151
152
  signing_key:
152
153
  specification_version: 4
153
154
  summary: Tracks database changes and generates representative seed files.