tp_common 0.1.4 → 0.2.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: f4ea63d99f82151ecf5b1d2dba233a5543d8932a
4
- data.tar.gz: fcb4e0b456d81acb9f1cb124910b57ab5fc36977
3
+ metadata.gz: 29986a252b2cd1e669c85402ff82b51ef2f546c7
4
+ data.tar.gz: e94b9ee973ec2ff62be762bafa82c5b511f56a02
5
5
  SHA512:
6
- metadata.gz: a380843ba9fb7f1bdc117ac339d08d3484883db04e4bf2d2cdcc29804e38568231403eb1bef41015b7d82f1cf92dadd5daebe9bb8d9c8a52f134626986722809
7
- data.tar.gz: e38da388a415a557398d4c4baae3e97fd01577bc83203beee9e56eddaf4716f71f1adafddb595a0e2cb84b65ec5ced1238ce4fd5cd6bdd68772f0efa265f3a78
6
+ metadata.gz: 91932453d5c34aac60641624f69a5de83d6f7cb0e3ca004d50443c2f128c9039a2083a8001f169e23973ef839fa3ddcd259097cd65a4bbd396b8ac4630d1dda3
7
+ data.tar.gz: 3ace8095798c170b1df66b03a8fd5a0be6a767222b2e52348b7c6e1332c2957d7e5fbebdad5b56350da238c91d43ea6caa2e9b9075de7779a2a9cf268fd787f8
data/.travis.yml CHANGED
@@ -2,4 +2,11 @@ sudo: false
2
2
  language: ruby
3
3
  rvm:
4
4
  - 2.3.1
5
+ gemfile:
6
+ - gemfiles/rails_4.gemfile
7
+ - gemfiles/rails_5.gemfile
5
8
  before_install: gem install bundler -v 1.16.0
9
+ script:
10
+ - bundle exec rspec --exclude-pattern "spec/integration/**/*_spec.rb"
11
+ - bundle exec rspec spec/integration/rails_spec.rb
12
+ - bundle exec rspec spec/integration/rails_custom_timezones_spec.rb
data/Appraisals ADDED
@@ -0,0 +1,9 @@
1
+ appraise "rails-4" do
2
+ gem 'rails', '~> 4.0'
3
+ gem 'rspec-rails'
4
+ end
5
+
6
+ appraise "rails-5" do
7
+ gem 'rails', '~> 5.0'
8
+ gem 'rspec-rails'
9
+ end
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2017 An Vo
3
+ Copyright (c) 2017 TINYpulse
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,9 +1,13 @@
1
- [![Build Status](https://travis-ci.org/anvox/tp_common.svg?branch=master)](https://travis-ci.org/anvox/tp_common)
1
+ [![Build Status](https://travis-ci.org/TINYhr/tp_common.svg?branch=master)](https://travis-ci.org/TINYhr/tp_common)
2
2
 
3
3
  # TpCommon
4
4
 
5
5
  This gem contains common libraries which shared between projects used in TINYpulse.
6
6
 
7
+ ## Rails versions
8
+
9
+ From v0.2.0 `tp_common` support only rails > 4. Mostly on ActiveSupport DateTime functions and `Rails.config_for` method.
10
+
7
11
  ## Installation
8
12
 
9
13
  Add this line to your application's Gemfile:
@@ -24,15 +28,42 @@ Or install it yourself as:
24
28
 
25
29
  Reference http://www.rubydoc.info/gems/tp_common for more detail of each module.
26
30
 
31
+ ## Publish
32
+
33
+ This gem is publised under TINYpulse devops account on https://rubygems.org/gems/tp_common, please contact devops team to release.
34
+
27
35
  ## Development
28
36
 
29
37
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
38
 
31
39
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
40
 
41
+ Reference https://github.com/thoughtbot/appraisal to know using appraisal to test rails 4,5 integration.
42
+
43
+ **Need more test for (both unit tests and rails integration tests):**
44
+
45
+ * TpCommon::Timezones.list_zone_offsets
46
+
47
+ To run integration test
48
+
49
+ ```bash
50
+ # Run unit test
51
+ $ bundle exec rspec
52
+ # Run integration test on 2 dependencies rails '~> 4.0' and rails '~> 5.0'
53
+ $ bundle exec appraisal rspec spec/integration/rails_custom_timezones_spec.rb && bundle exec appraisal rspec spec/integration/rails_spec.rb
54
+ #
55
+ # To run integration test on specific rails:
56
+ # Rails 4
57
+ $ bundle exec appraisal rails-4 rspec spec/integration/rails_custom_timezones_spec.rb && bundle exec appraisal rails-4 rspec spec/integration/rails_spec.rb
58
+ # Rails 5
59
+ $ bundle exec appraisal rails-5 rspec spec/integration/rails_custom_timezones_spec.rb && bundle exec appraisal rails-5 rspec spec/integration/rails_spec.rb
60
+
61
+ ```
62
+
63
+
33
64
  ## Contributing
34
65
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/anvox/tp_common. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
66
+ Bug reports and pull requests are welcome on GitHub at https://github.com/TINYhr/tp_common. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
67
 
37
68
  ## License
38
69
 
@@ -40,4 +71,4 @@ The gem is available as open source under the terms of the [MIT License](http://
40
71
 
41
72
  ## Code of Conduct
42
73
 
43
- Everyone interacting in the TpCommon project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/anvox/tp_common/blob/master/CODE_OF_CONDUCT.md).
74
+ Everyone interacting in the TpCommon project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/TINYhr/tp_common/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_RETRY: "1"
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 4.0"
6
+ gem "rspec-rails"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,155 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ tp_common (0.2.0)
5
+ activesupport (>= 4.2.0, <= 5.0.3)
6
+ tzinfo (~> 1.2, >= 1.2.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.2.10)
12
+ actionpack (= 4.2.10)
13
+ actionview (= 4.2.10)
14
+ activejob (= 4.2.10)
15
+ mail (~> 2.5, >= 2.5.4)
16
+ rails-dom-testing (~> 1.0, >= 1.0.5)
17
+ actionpack (4.2.10)
18
+ actionview (= 4.2.10)
19
+ activesupport (= 4.2.10)
20
+ rack (~> 1.6)
21
+ rack-test (~> 0.6.2)
22
+ rails-dom-testing (~> 1.0, >= 1.0.5)
23
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
+ actionview (4.2.10)
25
+ activesupport (= 4.2.10)
26
+ builder (~> 3.1)
27
+ erubis (~> 2.7.0)
28
+ rails-dom-testing (~> 1.0, >= 1.0.5)
29
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
30
+ activejob (4.2.10)
31
+ activesupport (= 4.2.10)
32
+ globalid (>= 0.3.0)
33
+ activemodel (4.2.10)
34
+ activesupport (= 4.2.10)
35
+ builder (~> 3.1)
36
+ activerecord (4.2.10)
37
+ activemodel (= 4.2.10)
38
+ activesupport (= 4.2.10)
39
+ arel (~> 6.0)
40
+ activesupport (4.2.10)
41
+ i18n (~> 0.7)
42
+ minitest (~> 5.1)
43
+ thread_safe (~> 0.3, >= 0.3.4)
44
+ tzinfo (~> 1.1)
45
+ appraisal (2.2.0)
46
+ bundler
47
+ rake
48
+ thor (>= 0.14.0)
49
+ arel (6.0.4)
50
+ builder (3.2.3)
51
+ byebug (9.1.0)
52
+ coderay (1.1.2)
53
+ concurrent-ruby (1.0.5)
54
+ crass (1.0.3)
55
+ diff-lcs (1.3)
56
+ erubis (2.7.0)
57
+ globalid (0.4.1)
58
+ activesupport (>= 4.2.0)
59
+ i18n (0.9.1)
60
+ concurrent-ruby (~> 1.0)
61
+ loofah (2.1.1)
62
+ crass (~> 1.0.2)
63
+ nokogiri (>= 1.5.9)
64
+ mail (2.7.0)
65
+ mini_mime (>= 0.1.1)
66
+ method_source (0.9.0)
67
+ mini_mime (1.0.0)
68
+ mini_portile2 (2.3.0)
69
+ minitest (5.11.1)
70
+ nokogiri (1.8.1)
71
+ mini_portile2 (~> 2.3.0)
72
+ pry (0.11.3)
73
+ coderay (~> 1.1.0)
74
+ method_source (~> 0.9.0)
75
+ pry-byebug (3.5.1)
76
+ byebug (~> 9.1)
77
+ pry (~> 0.10)
78
+ rack (1.6.8)
79
+ rack-test (0.6.3)
80
+ rack (>= 1.0)
81
+ rails (4.2.10)
82
+ actionmailer (= 4.2.10)
83
+ actionpack (= 4.2.10)
84
+ actionview (= 4.2.10)
85
+ activejob (= 4.2.10)
86
+ activemodel (= 4.2.10)
87
+ activerecord (= 4.2.10)
88
+ activesupport (= 4.2.10)
89
+ bundler (>= 1.3.0, < 2.0)
90
+ railties (= 4.2.10)
91
+ sprockets-rails
92
+ rails-deprecated_sanitizer (1.0.3)
93
+ activesupport (>= 4.2.0.alpha)
94
+ rails-dom-testing (1.0.9)
95
+ activesupport (>= 4.2.0, < 5.0)
96
+ nokogiri (~> 1.6)
97
+ rails-deprecated_sanitizer (>= 1.0.1)
98
+ rails-html-sanitizer (1.0.3)
99
+ loofah (~> 2.0)
100
+ railties (4.2.10)
101
+ actionpack (= 4.2.10)
102
+ activesupport (= 4.2.10)
103
+ rake (>= 0.8.7)
104
+ thor (>= 0.18.1, < 2.0)
105
+ rake (10.5.0)
106
+ rspec (3.7.0)
107
+ rspec-core (~> 3.7.0)
108
+ rspec-expectations (~> 3.7.0)
109
+ rspec-mocks (~> 3.7.0)
110
+ rspec-core (3.7.1)
111
+ rspec-support (~> 3.7.0)
112
+ rspec-expectations (3.7.0)
113
+ diff-lcs (>= 1.2.0, < 2.0)
114
+ rspec-support (~> 3.7.0)
115
+ rspec-mocks (3.7.0)
116
+ diff-lcs (>= 1.2.0, < 2.0)
117
+ rspec-support (~> 3.7.0)
118
+ rspec-rails (3.7.2)
119
+ actionpack (>= 3.0)
120
+ activesupport (>= 3.0)
121
+ railties (>= 3.0)
122
+ rspec-core (~> 3.7.0)
123
+ rspec-expectations (~> 3.7.0)
124
+ rspec-mocks (~> 3.7.0)
125
+ rspec-support (~> 3.7.0)
126
+ rspec-support (3.7.0)
127
+ sprockets (3.7.1)
128
+ concurrent-ruby (~> 1.0)
129
+ rack (> 1, < 3)
130
+ sprockets-rails (3.2.1)
131
+ actionpack (>= 4.0)
132
+ activesupport (>= 4.0)
133
+ sprockets (>= 3.0.0)
134
+ thor (0.20.0)
135
+ thread_safe (0.3.6)
136
+ timecop (0.9.1)
137
+ tzinfo (1.2.4)
138
+ thread_safe (~> 0.1)
139
+
140
+ PLATFORMS
141
+ ruby
142
+
143
+ DEPENDENCIES
144
+ appraisal (~> 2.2, >= 2.2.0)
145
+ bundler (~> 1.15)
146
+ pry-byebug (~> 3)
147
+ rails (~> 4.0)
148
+ rake (~> 10.0)
149
+ rspec (~> 3.0)
150
+ rspec-rails
151
+ timecop (~> 0.9)
152
+ tp_common!
153
+
154
+ BUNDLED WITH
155
+ 1.16.0
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 5.0"
6
+ gem "rspec-rails"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,161 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ tp_common (0.2.0)
5
+ activesupport (>= 4.2.0, <= 5.0.3)
6
+ tzinfo (~> 1.2, >= 1.2.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.0.3)
12
+ actionpack (= 5.0.3)
13
+ nio4r (>= 1.2, < 3.0)
14
+ websocket-driver (~> 0.6.1)
15
+ actionmailer (5.0.3)
16
+ actionpack (= 5.0.3)
17
+ actionview (= 5.0.3)
18
+ activejob (= 5.0.3)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.0.3)
22
+ actionview (= 5.0.3)
23
+ activesupport (= 5.0.3)
24
+ rack (~> 2.0)
25
+ rack-test (~> 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.0.3)
29
+ activesupport (= 5.0.3)
30
+ builder (~> 3.1)
31
+ erubis (~> 2.7.0)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.0.3)
35
+ activesupport (= 5.0.3)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.0.3)
38
+ activesupport (= 5.0.3)
39
+ activerecord (5.0.3)
40
+ activemodel (= 5.0.3)
41
+ activesupport (= 5.0.3)
42
+ arel (~> 7.0)
43
+ activesupport (5.0.3)
44
+ concurrent-ruby (~> 1.0, >= 1.0.2)
45
+ i18n (~> 0.7)
46
+ minitest (~> 5.1)
47
+ tzinfo (~> 1.1)
48
+ appraisal (2.2.0)
49
+ bundler
50
+ rake
51
+ thor (>= 0.14.0)
52
+ arel (7.1.4)
53
+ builder (3.2.3)
54
+ byebug (9.1.0)
55
+ coderay (1.1.2)
56
+ concurrent-ruby (1.0.5)
57
+ crass (1.0.3)
58
+ diff-lcs (1.3)
59
+ erubis (2.7.0)
60
+ globalid (0.4.1)
61
+ activesupport (>= 4.2.0)
62
+ i18n (0.9.1)
63
+ concurrent-ruby (~> 1.0)
64
+ loofah (2.1.1)
65
+ crass (~> 1.0.2)
66
+ nokogiri (>= 1.5.9)
67
+ mail (2.7.0)
68
+ mini_mime (>= 0.1.1)
69
+ method_source (0.9.0)
70
+ mini_mime (1.0.0)
71
+ mini_portile2 (2.3.0)
72
+ minitest (5.11.1)
73
+ nio4r (2.2.0)
74
+ nokogiri (1.8.1)
75
+ mini_portile2 (~> 2.3.0)
76
+ pry (0.11.3)
77
+ coderay (~> 1.1.0)
78
+ method_source (~> 0.9.0)
79
+ pry-byebug (3.5.1)
80
+ byebug (~> 9.1)
81
+ pry (~> 0.10)
82
+ rack (2.0.3)
83
+ rack-test (0.6.3)
84
+ rack (>= 1.0)
85
+ rails (5.0.3)
86
+ actioncable (= 5.0.3)
87
+ actionmailer (= 5.0.3)
88
+ actionpack (= 5.0.3)
89
+ actionview (= 5.0.3)
90
+ activejob (= 5.0.3)
91
+ activemodel (= 5.0.3)
92
+ activerecord (= 5.0.3)
93
+ activesupport (= 5.0.3)
94
+ bundler (>= 1.3.0, < 2.0)
95
+ railties (= 5.0.3)
96
+ sprockets-rails (>= 2.0.0)
97
+ rails-dom-testing (2.0.3)
98
+ activesupport (>= 4.2.0)
99
+ nokogiri (>= 1.6)
100
+ rails-html-sanitizer (1.0.3)
101
+ loofah (~> 2.0)
102
+ railties (5.0.3)
103
+ actionpack (= 5.0.3)
104
+ activesupport (= 5.0.3)
105
+ method_source
106
+ rake (>= 0.8.7)
107
+ thor (>= 0.18.1, < 2.0)
108
+ rake (10.5.0)
109
+ rspec (3.7.0)
110
+ rspec-core (~> 3.7.0)
111
+ rspec-expectations (~> 3.7.0)
112
+ rspec-mocks (~> 3.7.0)
113
+ rspec-core (3.7.1)
114
+ rspec-support (~> 3.7.0)
115
+ rspec-expectations (3.7.0)
116
+ diff-lcs (>= 1.2.0, < 2.0)
117
+ rspec-support (~> 3.7.0)
118
+ rspec-mocks (3.7.0)
119
+ diff-lcs (>= 1.2.0, < 2.0)
120
+ rspec-support (~> 3.7.0)
121
+ rspec-rails (3.7.2)
122
+ actionpack (>= 3.0)
123
+ activesupport (>= 3.0)
124
+ railties (>= 3.0)
125
+ rspec-core (~> 3.7.0)
126
+ rspec-expectations (~> 3.7.0)
127
+ rspec-mocks (~> 3.7.0)
128
+ rspec-support (~> 3.7.0)
129
+ rspec-support (3.7.0)
130
+ sprockets (3.7.1)
131
+ concurrent-ruby (~> 1.0)
132
+ rack (> 1, < 3)
133
+ sprockets-rails (3.2.1)
134
+ actionpack (>= 4.0)
135
+ activesupport (>= 4.0)
136
+ sprockets (>= 3.0.0)
137
+ thor (0.20.0)
138
+ thread_safe (0.3.6)
139
+ timecop (0.9.1)
140
+ tzinfo (1.2.4)
141
+ thread_safe (~> 0.1)
142
+ websocket-driver (0.6.5)
143
+ websocket-extensions (>= 0.1.0)
144
+ websocket-extensions (0.1.3)
145
+
146
+ PLATFORMS
147
+ ruby
148
+
149
+ DEPENDENCIES
150
+ appraisal (~> 2.2, >= 2.2.0)
151
+ bundler (~> 1.15)
152
+ pry-byebug (~> 3)
153
+ rails (~> 5.0)
154
+ rake (~> 10.0)
155
+ rspec (~> 3.0)
156
+ rspec-rails
157
+ timecop (~> 0.9)
158
+ tp_common!
159
+
160
+ BUNDLED WITH
161
+ 1.16.0
@@ -1,3 +1,3 @@
1
1
  module TpCommon
2
- VERSION = "0.1.4"
2
+ VERSION = "0.2.0"
3
3
  end
data/lib/tp_common.rb CHANGED
@@ -4,6 +4,7 @@ require 'psych'
4
4
  require 'yaml'
5
5
 
6
6
  if defined?(::Rails::Railtie)
7
+ raise Gem::DependencyError.new('Rails version < 4 is not supported.') if ::Rails::VERSION::MAJOR < 4
7
8
  require 'tp_common/railtie'
8
9
  end
9
10
 
data/tp_common.gemspec CHANGED
@@ -6,12 +6,12 @@ require "tp_common/version"
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "tp_common"
8
8
  spec.version = TpCommon::VERSION
9
- spec.authors = ["An Vo"]
10
- spec.email = ["thien.an.vo.nguyen@gmail.com"]
9
+ spec.authors = ["TINYpulse Devops"]
10
+ spec.email = ["devops@tinypulse.com"]
11
11
 
12
12
  spec.summary = "Common libraries used for TINYpulse apps"
13
13
  spec.description = "Common libraries used for TINYpulse apps. i.e. Timezone, ..."
14
- spec.homepage = "https://github.com/anvox/tp_common"
14
+ spec.homepage = "https://github.com/TINYhr/tp_common"
15
15
  spec.license = "MIT"
16
16
 
17
17
  if spec.respond_to?(:metadata)
@@ -33,7 +33,8 @@ Gem::Specification.new do |spec|
33
33
  spec.add_development_dependency "rspec", "~> 3.0"
34
34
  spec.add_development_dependency "pry-byebug", '~> 3'
35
35
  spec.add_development_dependency "timecop", '~> 0.9'
36
+ spec.add_development_dependency "appraisal", '~> 2.2', '>= 2.2.0'
36
37
 
37
38
  spec.add_runtime_dependency "tzinfo", '~> 1.2', '>= 1.2.0'
38
- spec.add_runtime_dependency "activesupport", '~> 4.2', '>= 4.2.0'
39
+ spec.add_runtime_dependency "activesupport", '<= 5.0.3', '>= 4.2.0'
39
40
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tp_common
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
- - An Vo
7
+ - TINYpulse Devops
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-11-20 00:00:00.000000000 Z
11
+ date: 2018-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -80,6 +80,26 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0.9'
83
+ - !ruby/object:Gem::Dependency
84
+ name: appraisal
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '2.2'
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: 2.2.0
93
+ type: :development
94
+ prerelease: false
95
+ version_requirements: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - "~>"
98
+ - !ruby/object:Gem::Version
99
+ version: '2.2'
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: 2.2.0
83
103
  - !ruby/object:Gem::Dependency
84
104
  name: tzinfo
85
105
  requirement: !ruby/object:Gem::Requirement
@@ -104,9 +124,9 @@ dependencies:
104
124
  name: activesupport
105
125
  requirement: !ruby/object:Gem::Requirement
106
126
  requirements:
107
- - - "~>"
127
+ - - "<="
108
128
  - !ruby/object:Gem::Version
109
- version: '4.2'
129
+ version: 5.0.3
110
130
  - - ">="
111
131
  - !ruby/object:Gem::Version
112
132
  version: 4.2.0
@@ -114,15 +134,15 @@ dependencies:
114
134
  prerelease: false
115
135
  version_requirements: !ruby/object:Gem::Requirement
116
136
  requirements:
117
- - - "~>"
137
+ - - "<="
118
138
  - !ruby/object:Gem::Version
119
- version: '4.2'
139
+ version: 5.0.3
120
140
  - - ">="
121
141
  - !ruby/object:Gem::Version
122
142
  version: 4.2.0
123
143
  description: Common libraries used for TINYpulse apps. i.e. Timezone, ...
124
144
  email:
125
- - thien.an.vo.nguyen@gmail.com
145
+ - devops@tinypulse.com
126
146
  executables: []
127
147
  extensions: []
128
148
  extra_rdoc_files: []
@@ -132,6 +152,7 @@ files:
132
152
  - ".ruby-gemset"
133
153
  - ".ruby-version"
134
154
  - ".travis.yml"
155
+ - Appraisals
135
156
  - CODE_OF_CONDUCT.md
136
157
  - Gemfile
137
158
  - LICENSE.txt
@@ -139,6 +160,11 @@ files:
139
160
  - Rakefile
140
161
  - bin/console
141
162
  - bin/setup
163
+ - gemfiles/.bundle/config
164
+ - gemfiles/rails_4.gemfile
165
+ - gemfiles/rails_4.gemfile.lock
166
+ - gemfiles/rails_5.gemfile
167
+ - gemfiles/rails_5.gemfile.lock
142
168
  - lib/tp_common.rb
143
169
  - lib/tp_common/railtie.rb
144
170
  - lib/tp_common/timezones.rb
@@ -147,7 +173,7 @@ files:
147
173
  - lib/tp_common/timezones/zone.rb
148
174
  - lib/tp_common/version.rb
149
175
  - tp_common.gemspec
150
- homepage: https://github.com/anvox/tp_common
176
+ homepage: https://github.com/TINYhr/tp_common
151
177
  licenses:
152
178
  - MIT
153
179
  metadata: