indolib_rails 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 297b371f8f8d113a813c0708dd4d1c40e4f8ee12435cea6c7757116d19116e4f
4
+ data.tar.gz: e4923c455ebac29f50680f0a19edef7b22977f31eb7bdd3fbd2ec38b81495d3d
5
+ SHA512:
6
+ metadata.gz: fac8df0bd938e26816785e4f6d9ea704fe7a1d8809d0aaeabf67a494ab506fa2dd3f83b58375aa1da4bed74a5a263e881ebb727d42469fb9b7addd6b411c31a4
7
+ data.tar.gz: bd8c70531ec39c08c6c132ee588f0ed3de59e2a1ad4bc1baefef2992460258cbc458e1f561ebab7b0b2fbca057e5f74777990eba27badc3544e521a826c19415
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ ## 1.0.0 (09-Nov-22)
4
+
5
+ * Initial release
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ # indolib_rails/Gemfile
2
+
3
+ source 'https://rubygems.org/'
4
+
5
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 Lokalise team, Ilya Krukowski
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1 @@
1
+ # indolib_rails
@@ -0,0 +1,28 @@
1
+ require File.expand_path('lib/indolib_rails/version', __dir__)
2
+ Gem::Specification.new do |spec|
3
+ spec.name = 'indolib_rails'
4
+ spec.version = IndolibRails::VERSION
5
+ spec.authors = ['Megha Rana']
6
+ spec.email = ['megha.rana@iwcts.com']
7
+ spec.summary = 'Indolib integration for Ruby on Rails'
8
+ spec.description = 'This gem allows to convert different time zones to local server time zone'
9
+ spec.homepage = 'https://github.com/megharana412/indolib_rails.git'
10
+ spec.license = 'MIT'
11
+ spec.platform = Gem::Platform::RUBY
12
+ spec.required_ruby_version = '>= 2.5.0'
13
+
14
+ spec.files = Dir['README.md', 'LICENSE',
15
+ 'CHANGELOG.md', 'lib/**/*.rb',
16
+ 'lib/**/*.rake',
17
+ 'indolib_rails.gemspec', '.github/*.md',
18
+ 'Gemfile', 'Rakefile']
19
+
20
+ spec.extra_rdoc_files = ['README.md']
21
+
22
+ # spec.add_dependency 'ruby-indolib-api', '~> 3.1'
23
+ # spec.add_dependency 'ruby-zip', '~> 2.3'
24
+ # #spec.add_development_dependency 'rubocop', '~> 1.0'
25
+ # spec.add_development_dependency 'rubocop', '~> 0.87'
26
+ # spec.add_development_dependency 'rubocop-performance', '~> 1.10.2'
27
+ # spec.add_development_dependency 'rubocop-rspec', '~> 1.37'
28
+ end
@@ -0,0 +1,3 @@
1
+ module IndolibRails
2
+ VERSION = '1.0.0'
3
+ end
@@ -0,0 +1,5 @@
1
+ class IndolibRails
2
+ def self.hi
3
+ puts "Hello world!"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: indolib_rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Megha Rana
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-11-09 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: This gem allows to convert different time zones to local server time
14
+ zone
15
+ email:
16
+ - megha.rana@iwcts.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files:
20
+ - README.md
21
+ files:
22
+ - CHANGELOG.md
23
+ - Gemfile
24
+ - LICENSE
25
+ - README.md
26
+ - indolib_rails.gemspec
27
+ - lib/indolib_rails.rb
28
+ - lib/indolib_rails/version.rb
29
+ homepage: https://github.com/megharana412/indolib_rails.git
30
+ licenses:
31
+ - MIT
32
+ metadata: {}
33
+ post_install_message:
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 2.5.0
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ requirements: []
48
+ rubygems_version: 3.0.3
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: Indolib integration for Ruby on Rails
52
+ test_files: []