k_sequencing 0.1.4 → 0.1.5

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: 414c884c2a6378b04c87a4bb7596d1a814c07089
4
- data.tar.gz: d44b2deee17b7fb26bbf2d1281c476856bf6ba27
3
+ metadata.gz: 89df495b7d95f513d5b32ad92b43ac2fdef24428
4
+ data.tar.gz: de0194884173d9801c5fce493930905f71209747
5
5
  SHA512:
6
- metadata.gz: 0cf5b038df68fcb995e169144cdb5c90d68231cd36547498596c43341402817932a797697850dbb49c0d685aebe99152286b604c6bdda00bf4911d56c479bdeb
7
- data.tar.gz: c6166361a1e83077ca1fb16fc00603ccbbeec33a4fc6de35c8706faed44895a2def7230f0082562cbce3576a4f07cc5f1c5f14c77e171568411e3d5120823940
6
+ metadata.gz: c27a01442fc2e6d8a236500f443f9922ac1f37f24466ed5e195fa05b94320c1518cb69658d34cbde0a0137386ee782957ffae88895464583a1f65f44c1ac58da
7
+ data.tar.gz: 64674f7f3adc8467ea2aa869222acf305265d3ca484feb683425ef636eb9fc83dfc303e03cc334a67435f0ee2ece7700c2610cc54ffcd5a4351646594e0b3ddd
@@ -0,0 +1,41 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ k_sequencing (0.1.5)
5
+ activesupport (~> 4.1, >= 4.1)
6
+ faraday (~> 0.9, >= 0.9.2)
7
+ faraday_middleware (~> 0.10.0, >= 0.10.0)
8
+ faraday_middleware-active_support_json (~> 0.0.3, >= 0.0.3)
9
+ json (~> 1.8, >= 1.8.3)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ activesupport (4.2.8)
15
+ i18n (~> 0.7)
16
+ minitest (~> 5.1)
17
+ thread_safe (~> 0.3, >= 0.3.4)
18
+ tzinfo (~> 1.1)
19
+ faraday (0.12.1)
20
+ multipart-post (>= 1.2, < 3)
21
+ faraday_middleware (0.10.1)
22
+ faraday (>= 0.7.4, < 1.0)
23
+ faraday_middleware-active_support_json (0.0.3)
24
+ activesupport (> 3, < 5)
25
+ faraday_middleware
26
+ i18n (0.8.4)
27
+ json (1.8.6)
28
+ minitest (5.10.2)
29
+ multipart-post (2.0.0)
30
+ thread_safe (0.3.6)
31
+ tzinfo (1.2.3)
32
+ thread_safe (~> 0.1)
33
+
34
+ PLATFORMS
35
+ ruby
36
+
37
+ DEPENDENCIES
38
+ k_sequencing!
39
+
40
+ BUNDLED WITH
41
+ 1.15.0
@@ -0,0 +1,7 @@
1
+ After install k_sequencing
2
+
3
+ Run the generator
4
+
5
+ rails generate k_sequencing:install
6
+
7
+ This will install an initializer which describes ALL of KSequencing's configuration options.
data/README.md CHANGED
@@ -4,7 +4,7 @@ Image and content moderation services.
4
4
 
5
5
  ## Getting Started
6
6
 
7
- KSequencing 0.1.4 works with Rails 4.1 onwards. You can add it to your Gemfile with:
7
+ KSequencing 0.1.5 works with Rails 4.1 onwards. You can add it to your Gemfile with:
8
8
  ```ruby
9
9
  gem 'k_sequencing'
10
10
  ```
@@ -5,10 +5,11 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = 'k_sequencing'
8
- s.version = '0.1.4'
8
+ s.version = '0.1.5'
9
9
  s.date = '2017-05-24'
10
10
  s.summary = 'KSequencing is a moderator service for your online content'
11
11
  s.description = 'Moderation suite'
12
+ s.post_install_message = File.read('INSTALL.md') if File.exist?('INSTALL.md')
12
13
  s.authors = ['Jesdakorn Samittiauttakorn']
13
14
  s.email = 'ton@nanameue.jp'
14
15
  s.files = `git ls-files`.split("\n")
@@ -17,8 +18,8 @@ Gem::Specification.new do |s|
17
18
  s.require_paths = ['lib']
18
19
 
19
20
  s.add_runtime_dependency 'json', '~> 1.8', '>= 1.8.3'
20
- s.add_runtime_dependency 'activesupport', '>= 4.1'
21
- s.add_runtime_dependency 'faraday', '~> 0.9.2'
22
- s.add_runtime_dependency 'faraday_middleware', '~> 0.10.0'
23
- s.add_runtime_dependency 'faraday_middleware-active_support_json', '~> 0.0.3'
21
+ s.add_runtime_dependency 'activesupport', '~> 4.1', '>= 4.1'
22
+ s.add_runtime_dependency 'faraday', '~> 0.9', '>= 0.9.2'
23
+ s.add_runtime_dependency 'faraday_middleware', '~> 0.10.0', '>= 0.10.0'
24
+ s.add_runtime_dependency 'faraday_middleware-active_support_json', '~> 0.0.3', '>= 0.0.3'
24
25
  end
@@ -1,3 +1,3 @@
1
1
  module KSequencing
2
- VERSION = '0.1.4'.freeze
2
+ VERSION = '0.1.5'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: k_sequencing
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jesdakorn Samittiauttakorn
@@ -34,6 +34,9 @@ dependencies:
34
34
  name: activesupport
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '4.1'
37
40
  - - ">="
38
41
  - !ruby/object:Gem::Version
39
42
  version: '4.1'
@@ -41,6 +44,9 @@ dependencies:
41
44
  prerelease: false
42
45
  version_requirements: !ruby/object:Gem::Requirement
43
46
  requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '4.1'
44
50
  - - ">="
45
51
  - !ruby/object:Gem::Version
46
52
  version: '4.1'
@@ -49,6 +55,9 @@ dependencies:
49
55
  requirement: !ruby/object:Gem::Requirement
50
56
  requirements:
51
57
  - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '0.9'
60
+ - - ">="
52
61
  - !ruby/object:Gem::Version
53
62
  version: 0.9.2
54
63
  type: :runtime
@@ -56,6 +65,9 @@ dependencies:
56
65
  version_requirements: !ruby/object:Gem::Requirement
57
66
  requirements:
58
67
  - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '0.9'
70
+ - - ">="
59
71
  - !ruby/object:Gem::Version
60
72
  version: 0.9.2
61
73
  - !ruby/object:Gem::Dependency
@@ -65,6 +77,9 @@ dependencies:
65
77
  - - "~>"
66
78
  - !ruby/object:Gem::Version
67
79
  version: 0.10.0
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 0.10.0
68
83
  type: :runtime
69
84
  prerelease: false
70
85
  version_requirements: !ruby/object:Gem::Requirement
@@ -72,6 +87,9 @@ dependencies:
72
87
  - - "~>"
73
88
  - !ruby/object:Gem::Version
74
89
  version: 0.10.0
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: 0.10.0
75
93
  - !ruby/object:Gem::Dependency
76
94
  name: faraday_middleware-active_support_json
77
95
  requirement: !ruby/object:Gem::Requirement
@@ -79,6 +97,9 @@ dependencies:
79
97
  - - "~>"
80
98
  - !ruby/object:Gem::Version
81
99
  version: 0.0.3
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: 0.0.3
82
103
  type: :runtime
83
104
  prerelease: false
84
105
  version_requirements: !ruby/object:Gem::Requirement
@@ -86,6 +107,9 @@ dependencies:
86
107
  - - "~>"
87
108
  - !ruby/object:Gem::Version
88
109
  version: 0.0.3
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: 0.0.3
89
113
  description: Moderation suite
90
114
  email: ton@nanameue.jp
91
115
  executables: []
@@ -94,6 +118,8 @@ extra_rdoc_files: []
94
118
  files:
95
119
  - ".gitignore"
96
120
  - Gemfile
121
+ - Gemfile.lock
122
+ - INSTALL.md
97
123
  - README.md
98
124
  - Rakefile
99
125
  - docs/documentation.md
@@ -111,7 +137,14 @@ homepage: https://datawow.io
111
137
  licenses:
112
138
  - Commercial
113
139
  metadata: {}
114
- post_install_message:
140
+ post_install_message: |
141
+ After install k_sequencing
142
+
143
+ Run the generator
144
+
145
+ rails generate k_sequencing:install
146
+
147
+ This will install an initializer which describes ALL of KSequencing's configuration options.
115
148
  rdoc_options: []
116
149
  require_paths:
117
150
  - lib