item_crud 0.1.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 +7 -0
- data/.env.example +4 -0
- data/.gitignore +12 -0
- data/.rspec +3 -0
- data/.travis.yml +24 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +68 -0
- data/LICENSE.txt +21 -0
- data/README.md +12 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/item-0.1.0.gem +0 -0
- data/item-crud-0.1.0.gem +0 -0
- data/item-crud.gemspec +33 -0
- data/item-crud.rb +42 -0
- data/lib/item/crud/version.rb +6 -0
- data/lib/item/crud.rb +65 -0
- data/lib/item.rb +26 -0
- metadata +161 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: af076d18665b3d87002f6e8e5cdade37931a5d9a
|
|
4
|
+
data.tar.gz: 56c60c5dc370bdd466bddee134d853b30dcc1e49
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 87184369a3aa24db3a495aea32d127d9a127a43e88f01dd9fa508007a643a61363dc4f914eb0e682ab6bf3c44fdc1492ac7d1385de4ff1af893453352d343126
|
|
7
|
+
data.tar.gz: 7a5da14e902c028a3f2c6a05425c33a9c341773d422e40a124738948b9ae64cd1e61afdff369232ee09eebab220a4c068b2cba21b5790d41e7d2d2046617d44a
|
data/.env.example
ADDED
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
sudo: true
|
|
2
|
+
language: ruby
|
|
3
|
+
rvm:
|
|
4
|
+
- 2.3.1
|
|
5
|
+
services:
|
|
6
|
+
- mysql
|
|
7
|
+
addons:
|
|
8
|
+
apt:
|
|
9
|
+
sources:
|
|
10
|
+
- mysql-5.7-trusty
|
|
11
|
+
packages:
|
|
12
|
+
- mysql-server
|
|
13
|
+
- mysql-client
|
|
14
|
+
before_install:
|
|
15
|
+
- gem install bundler -v 1.16.2
|
|
16
|
+
- sudo mysql -e 'create database onboarding; use onboarding; create table item (id INT NOT NULL AUTO_INCREMENT, name varchar(255), primary key (id))'
|
|
17
|
+
- sudo mysql -e "use mysql; update user set authentication_string=PASSWORD('root') where User='root'; update user set plugin='mysql_native_password';FLUSH PRIVILEGES;"
|
|
18
|
+
- sudo mysql_upgrade -u root -proot
|
|
19
|
+
- sudo service mysql restart
|
|
20
|
+
install:
|
|
21
|
+
- gem install mysql
|
|
22
|
+
- bundle install
|
|
23
|
+
script:
|
|
24
|
+
- bundle exec rspec spec
|
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
|
10
|
+
orientation.
|
|
11
|
+
|
|
12
|
+
## Our Standards
|
|
13
|
+
|
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
|
15
|
+
include:
|
|
16
|
+
|
|
17
|
+
* Using welcoming and inclusive language
|
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
|
19
|
+
* Gracefully accepting constructive criticism
|
|
20
|
+
* Focusing on what is best for the community
|
|
21
|
+
* Showing empathy towards other community members
|
|
22
|
+
|
|
23
|
+
Examples of unacceptable behavior by participants include:
|
|
24
|
+
|
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
+
advances
|
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
|
+
* Public or private harassment
|
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
|
30
|
+
address, without explicit permission
|
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
32
|
+
professional setting
|
|
33
|
+
|
|
34
|
+
## Our Responsibilities
|
|
35
|
+
|
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
|
38
|
+
response to any instances of unacceptable behavior.
|
|
39
|
+
|
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
44
|
+
threatening, offensive, or harmful.
|
|
45
|
+
|
|
46
|
+
## Scope
|
|
47
|
+
|
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
|
49
|
+
when an individual is representing the project or its community. Examples of
|
|
50
|
+
representing a project or community include using an official project e-mail
|
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
|
53
|
+
further defined and clarified by project maintainers.
|
|
54
|
+
|
|
55
|
+
## Enforcement
|
|
56
|
+
|
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
+
reported by contacting the project team at TODO: Write your email address. All
|
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
|
63
|
+
|
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
+
members of the project's leadership.
|
|
67
|
+
|
|
68
|
+
## Attribution
|
|
69
|
+
|
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
|
72
|
+
|
|
73
|
+
[homepage]: http://contributor-covenant.org
|
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
item-crud (0.1.0)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: https://rubygems.org/
|
|
8
|
+
specs:
|
|
9
|
+
activesupport (5.2.0)
|
|
10
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
11
|
+
i18n (>= 0.7, < 2)
|
|
12
|
+
minitest (~> 5.1)
|
|
13
|
+
tzinfo (~> 1.1)
|
|
14
|
+
concurrent-ruby (1.0.5)
|
|
15
|
+
diff-lcs (1.3)
|
|
16
|
+
dotenv (2.5.0)
|
|
17
|
+
factory_bot (4.10.0)
|
|
18
|
+
activesupport (>= 3.0.0)
|
|
19
|
+
i18n (1.0.1)
|
|
20
|
+
concurrent-ruby (~> 1.0)
|
|
21
|
+
minitest (5.11.3)
|
|
22
|
+
mustermann (1.0.2)
|
|
23
|
+
mysql (2.9.1)
|
|
24
|
+
rack (2.0.5)
|
|
25
|
+
rack-protection (2.0.3)
|
|
26
|
+
rack
|
|
27
|
+
rack-test (1.0.0)
|
|
28
|
+
rack (>= 1.0, < 3)
|
|
29
|
+
rake (10.5.0)
|
|
30
|
+
rspec (3.7.0)
|
|
31
|
+
rspec-core (~> 3.7.0)
|
|
32
|
+
rspec-expectations (~> 3.7.0)
|
|
33
|
+
rspec-mocks (~> 3.7.0)
|
|
34
|
+
rspec-core (3.7.1)
|
|
35
|
+
rspec-support (~> 3.7.0)
|
|
36
|
+
rspec-expectations (3.7.0)
|
|
37
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
38
|
+
rspec-support (~> 3.7.0)
|
|
39
|
+
rspec-mocks (3.7.0)
|
|
40
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
41
|
+
rspec-support (~> 3.7.0)
|
|
42
|
+
rspec-support (3.7.1)
|
|
43
|
+
sinatra (2.0.3)
|
|
44
|
+
mustermann (~> 1.0)
|
|
45
|
+
rack (~> 2.0)
|
|
46
|
+
rack-protection (= 2.0.3)
|
|
47
|
+
tilt (~> 2.0)
|
|
48
|
+
thread_safe (0.3.6)
|
|
49
|
+
tilt (2.0.8)
|
|
50
|
+
tzinfo (1.2.5)
|
|
51
|
+
thread_safe (~> 0.1)
|
|
52
|
+
|
|
53
|
+
PLATFORMS
|
|
54
|
+
ruby
|
|
55
|
+
|
|
56
|
+
DEPENDENCIES
|
|
57
|
+
bundler (~> 1.16)
|
|
58
|
+
dotenv
|
|
59
|
+
factory_bot (~> 4.0)
|
|
60
|
+
item-crud!
|
|
61
|
+
mysql
|
|
62
|
+
rack-test
|
|
63
|
+
rake (~> 10.0)
|
|
64
|
+
rspec (~> 3.0)
|
|
65
|
+
sinatra
|
|
66
|
+
|
|
67
|
+
BUNDLED WITH
|
|
68
|
+
1.16.2
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018 TODO: Write your name
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Item::Crud
|
|
2
|
+
|
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/item/crud`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
+
h o
|
|
5
|
+
## Dependencies
|
|
6
|
+
|
|
7
|
+
* Ruby 2.3.1
|
|
8
|
+
* Mysql 5.7
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
bundle install
|
|
12
|
+
to install all project dependencies
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "item/crud"
|
|
5
|
+
|
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
+
|
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
+
# require "pry"
|
|
11
|
+
# Pry.start
|
|
12
|
+
|
|
13
|
+
require "irb"
|
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/item-0.1.0.gem
ADDED
|
Binary file
|
data/item-crud-0.1.0.gem
ADDED
|
Binary file
|
data/item-crud.gemspec
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
|
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require "item/crud/version"
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "item_crud"
|
|
8
|
+
spec.version = Item::Crud::VERSION
|
|
9
|
+
spec.authors = ["Galuh Estya"]
|
|
10
|
+
spec.email = ["galuhestya@gmail.com"]
|
|
11
|
+
|
|
12
|
+
spec.summary = %q{Write a short summary, because RubyGems requires one.}
|
|
13
|
+
spec.description = %q{Write a longer description or delete this line.}
|
|
14
|
+
spec.homepage = "https://github.com/galuhest/item-crud"
|
|
15
|
+
spec.license = "MIT"
|
|
16
|
+
|
|
17
|
+
# Specify which files should be added to the gem when it is released.
|
|
18
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
19
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
20
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
21
|
+
end
|
|
22
|
+
spec.bindir = "exe"
|
|
23
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
24
|
+
spec.require_paths = ["lib"]
|
|
25
|
+
|
|
26
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
|
27
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
28
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
|
29
|
+
spec.add_development_dependency "mysql"
|
|
30
|
+
spec.add_development_dependency "sinatra"
|
|
31
|
+
spec.add_development_dependency "rack-test"
|
|
32
|
+
spec.add_development_dependency "dotenv"
|
|
33
|
+
end
|
data/item-crud.rb
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
require 'sinatra'
|
|
2
|
+
require 'json'
|
|
3
|
+
configure do
|
|
4
|
+
$LOAD_PATH.unshift("#{File.dirname(__FILE__)}/lib")
|
|
5
|
+
Dir.glob("#{File.dirname(__FILE__)}/lib/*.rb") { |lib|
|
|
6
|
+
require File.basename(lib, '.*')
|
|
7
|
+
}
|
|
8
|
+
end
|
|
9
|
+
# Program ini adalah aplikasi webapp untuk
|
|
10
|
+
# library Item.
|
|
11
|
+
get '/' do
|
|
12
|
+
"Hello World!"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
get '/item/:id' do |id|
|
|
16
|
+
content_type :json
|
|
17
|
+
names = Item.get(id)
|
|
18
|
+
response = {:status => 'OK', :name => names}
|
|
19
|
+
response.to_json
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
post '/item' do
|
|
23
|
+
content_type :json
|
|
24
|
+
name = params[:name]
|
|
25
|
+
status, id = Item.create(name)
|
|
26
|
+
response = {:status => status, :id => id[0]}
|
|
27
|
+
response.to_json
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
post '/item/:id' do |id|
|
|
31
|
+
content_type :json
|
|
32
|
+
status = Item.update(id, params['name'])
|
|
33
|
+
response = {:status => status}
|
|
34
|
+
response.to_json
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
post '/item/:id/delete' do |id|
|
|
38
|
+
content_type :json
|
|
39
|
+
status = Item.delete(id)
|
|
40
|
+
response = {:status => status}
|
|
41
|
+
response.to_json
|
|
42
|
+
end
|
data/lib/item/crud.rb
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
require "item/crud/version"
|
|
2
|
+
require 'mysql'
|
|
3
|
+
|
|
4
|
+
module Item
|
|
5
|
+
# Module ini adalah bagian dari module Item
|
|
6
|
+
# yang bertujuan untuk bertindak sebagai wrapper
|
|
7
|
+
# terhadap database
|
|
8
|
+
module Crud
|
|
9
|
+
# Membuat koneksi terhadap database
|
|
10
|
+
def self.connect
|
|
11
|
+
connection = Mysql.new(ENV['DB_HOST'], ENV["DB_USER"], ENV["DB_PASSWORD"], ENV["DATABASE"])
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
# Menghapus sebubah koneksi database
|
|
15
|
+
def self.close_connection(connection)
|
|
16
|
+
connection.close
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
# Melakukan query terhadap database untuk mendapatkan
|
|
20
|
+
# nama item berdasarkan id.
|
|
21
|
+
def self.get(id)
|
|
22
|
+
connection = connect()
|
|
23
|
+
id = id.to_i
|
|
24
|
+
query = connection.query("select * from item where id = #{id}")
|
|
25
|
+
name = ""
|
|
26
|
+
query.each_hash do |row|
|
|
27
|
+
name = row["name"]
|
|
28
|
+
end
|
|
29
|
+
close_connection(connection)
|
|
30
|
+
name
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
# Melakukan query untuk memasukkan item kedalam database.
|
|
34
|
+
# Function mengembalikan 2 hal, yaitu status dan id dari item tersebut.
|
|
35
|
+
def self.create(name)
|
|
36
|
+
connection = connect()
|
|
37
|
+
item = connection.query("insert into item (name) values (\'#{name}\')")
|
|
38
|
+
query = connection.query('SELECT LAST_INSERT_ID()')
|
|
39
|
+
id = -1
|
|
40
|
+
query.each do |row|
|
|
41
|
+
id = row
|
|
42
|
+
end
|
|
43
|
+
close_connection(connection)
|
|
44
|
+
return "OK", id
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# Melakukan query terhadap database untuk mengganti nama sebuah item
|
|
48
|
+
# berdasarkan id. Function ini mengembalikan status dari operasi ini.
|
|
49
|
+
def self.update(id, name)
|
|
50
|
+
connection = connect()
|
|
51
|
+
query = connection.query("update item set name = \'#{name}\' where id = #{id.to_i}")
|
|
52
|
+
close_connection(connection)
|
|
53
|
+
status = "OK"
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# Melakukan query terhadap database untuk menghapus sebuah barang
|
|
57
|
+
# berdasarkan id. Function ini akan mengembalikan status dari operasi.
|
|
58
|
+
def self.delete(id)
|
|
59
|
+
connection = connect()
|
|
60
|
+
query = connection.query("delete from item where id = #{id.to_i}")
|
|
61
|
+
close_connection(connection)
|
|
62
|
+
status = "OK"
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
end
|
data/lib/item.rb
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
require 'item/crud'
|
|
2
|
+
require "dotenv/load"
|
|
3
|
+
# Module ini melakukan program crud sederhana
|
|
4
|
+
# yang dilakukan terhadap tabel item. Library
|
|
5
|
+
# Crud digunakan sebagai wrapper database.
|
|
6
|
+
module Item
|
|
7
|
+
# Mendapatkan nama item dari ID item tersebut
|
|
8
|
+
def self.get(id)
|
|
9
|
+
item = Crud.get(id)
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
# Memasukan barang baru kedalam database
|
|
13
|
+
def self.create(name)
|
|
14
|
+
item = Crud.create(name)
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
# Mengganti nama item berdasarkan ID item
|
|
18
|
+
def self.update(id, name)
|
|
19
|
+
item = Crud.update(id, name)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
# Menghapus sebuah item berdasarkan ID
|
|
23
|
+
def self.delete(id)
|
|
24
|
+
status = Crud.delete(id)
|
|
25
|
+
end
|
|
26
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: item_crud
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Galuh Estya
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2018-07-09 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.16'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.16'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '10.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rspec
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '3.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: mysql
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: sinatra
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: rack-test
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ">="
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: dotenv
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ">="
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0'
|
|
111
|
+
description: Write a longer description or delete this line.
|
|
112
|
+
email:
|
|
113
|
+
- galuhestya@gmail.com
|
|
114
|
+
executables: []
|
|
115
|
+
extensions: []
|
|
116
|
+
extra_rdoc_files: []
|
|
117
|
+
files:
|
|
118
|
+
- ".env.example"
|
|
119
|
+
- ".gitignore"
|
|
120
|
+
- ".rspec"
|
|
121
|
+
- ".travis.yml"
|
|
122
|
+
- CODE_OF_CONDUCT.md
|
|
123
|
+
- Gemfile
|
|
124
|
+
- Gemfile.lock
|
|
125
|
+
- LICENSE.txt
|
|
126
|
+
- README.md
|
|
127
|
+
- Rakefile
|
|
128
|
+
- bin/console
|
|
129
|
+
- bin/setup
|
|
130
|
+
- item-0.1.0.gem
|
|
131
|
+
- item-crud-0.1.0.gem
|
|
132
|
+
- item-crud.gemspec
|
|
133
|
+
- item-crud.rb
|
|
134
|
+
- lib/item.rb
|
|
135
|
+
- lib/item/crud.rb
|
|
136
|
+
- lib/item/crud/version.rb
|
|
137
|
+
homepage: https://github.com/galuhest/item-crud
|
|
138
|
+
licenses:
|
|
139
|
+
- MIT
|
|
140
|
+
metadata: {}
|
|
141
|
+
post_install_message:
|
|
142
|
+
rdoc_options: []
|
|
143
|
+
require_paths:
|
|
144
|
+
- lib
|
|
145
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
146
|
+
requirements:
|
|
147
|
+
- - ">="
|
|
148
|
+
- !ruby/object:Gem::Version
|
|
149
|
+
version: '0'
|
|
150
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
151
|
+
requirements:
|
|
152
|
+
- - ">="
|
|
153
|
+
- !ruby/object:Gem::Version
|
|
154
|
+
version: '0'
|
|
155
|
+
requirements: []
|
|
156
|
+
rubyforge_project:
|
|
157
|
+
rubygems_version: 2.5.2.1
|
|
158
|
+
signing_key:
|
|
159
|
+
specification_version: 4
|
|
160
|
+
summary: Write a short summary, because RubyGems requires one.
|
|
161
|
+
test_files: []
|