building_germany_rooswalls 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 83711cb1562eaa43c1a18f4d21b7470e90c0e59f5bdfa9240ebdc9afc2e523d7
4
+ data.tar.gz: ec15248d1239b14784af8ee411f020b101fc4bbb8e9629527e5c4cf49f7cc991
5
+ SHA512:
6
+ metadata.gz: c4381dd2f763b073cce0d3e5b3ad26a98dea613e2e9cf5b06112ba77070355b1a95b055863b70248fda1f20be669cde0a6375fd6ea706c06305375a26f8693cc
7
+ data.tar.gz: 10d8c825fe1e581d7c331817f8707ff33ef73b1060ecb783715140696cdd97f090740d090ce838f4c2fae76727b5e2d29673482aae3a309be3146d3d52b37ff2
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
File without changes
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
@@ -0,0 +1,35 @@
1
+ # BuildingGermanyRooswalls
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/building_germany_rooswalls`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'building_germany_rooswalls'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install building_germany_rooswalls
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ 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
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/building_germany_rooswalls.
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "building_germany_rooswalls"
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__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,41 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "building_germany_rooswalls/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "building_germany_rooswalls"
8
+ spec.version = BuildingGermanyRooswalls::VERSION
9
+ spec.authors = ["BrendonGS"]
10
+ spec.email = ["“bgsggermany@gmail.com”"]
11
+
12
+ spec.summary = "This is what your gem does"
13
+ spec.description = "This is a longer, much much longer description of what your gem does"
14
+ spec.homepage = "https://github.com/BrendonGS/building_germany_rooswalls"
15
+
16
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
18
+ if spec.respond_to?(:metadata)
19
+ # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
20
+
21
+ spec.metadata["homepage_uri"] = spec.homepage
22
+ spec.metadata["source_code_uri"] = "https://github.com/BrendonGS/building_germany_rooswalls"
23
+ spec.metadata["changelog_uri"] = "https://github.com/BrendonGS/building_germany_rooswalls/CHANGELOG"
24
+ else
25
+ raise "RubyGems 2.0 or newer is required to protect against " \
26
+ "public gem pushes."
27
+ end
28
+
29
+ # Specify which files should be added to the gem when it is released.
30
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
31
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
32
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
33
+ end
34
+ spec.bindir = "exe"
35
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
36
+ spec.require_paths = ["lib"]
37
+
38
+ spec.add_development_dependency "bundler", "~> 2.0"
39
+ spec.add_development_dependency "rake", "~> 10.0"
40
+ spec.add_dependency "http", "~> 4.0"
41
+ end
@@ -0,0 +1,61 @@
1
+ require "building_germany_rooswalls/version"
2
+ require 'http'
3
+
4
+ class Building
5
+ attr_accessor :name, :address, :height, :construction_date, :architect, :id
6
+
7
+ def initialize(input_options)
8
+ @id = input_options["id"]
9
+ @name = input_options["name"]
10
+ @address = input_options["address"]
11
+ @height = input_options["height"]
12
+ @construction_date = input_options["construction_date"]
13
+ @architect = input_options["architect"]
14
+ end
15
+
16
+ def self.find(input_id)
17
+ response = HTTP.get("http://localhost:3000/api/buildings/#{ input_id }")
18
+ building_hash = response.parse
19
+ Building.new(building_hash)
20
+ end
21
+
22
+ def self.all
23
+ response= HTTP.get(
24
+ "http://localhost:3000/api/buildings"
25
+ )
26
+ buildings = response.parse
27
+ new_array = []
28
+ buildings.each do |buildings|
29
+ new_array << Building.new(buildings)
30
+ end
31
+ new_array
32
+ end
33
+
34
+ def self.create(client_params)
35
+ response = HTTP.post(
36
+ "http://localhost:3000/api/buildings",
37
+ form: client_params
38
+ )
39
+
40
+ building = response.parse
41
+ Building.new(building)
42
+ end
43
+
44
+ def update(input_hash)
45
+ response = HTTP.patch(
46
+ "http://localhost:3000/api/buildings/#{ self.id }",
47
+ form: input_hash
48
+ )
49
+ update_building = response.parse
50
+ Building.new(update_building)
51
+
52
+ end
53
+
54
+ def destroy
55
+ response = HTTP.delete(
56
+ "http://localhost:3000/api/buildings/#{self.id}"
57
+ )
58
+
59
+ end
60
+
61
+ end
@@ -0,0 +1,3 @@
1
+ module BuildingGermanyRooswalls
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: building_germany_rooswalls
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - BrendonGS
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-02-12 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: '2.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
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: http
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '4.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '4.0'
55
+ description: This is a longer, much much longer description of what your gem does
56
+ email:
57
+ - "“bgsggermany@gmail.com”"
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - CHANGELOG
64
+ - Gemfile
65
+ - README.md
66
+ - Rakefile
67
+ - bin/console
68
+ - bin/setup
69
+ - building_germany_rooswalls.gemspec
70
+ - lib/building_germany_rooswalls.rb
71
+ - lib/building_germany_rooswalls/version.rb
72
+ homepage: https://github.com/BrendonGS/building_germany_rooswalls
73
+ licenses: []
74
+ metadata:
75
+ homepage_uri: https://github.com/BrendonGS/building_germany_rooswalls
76
+ source_code_uri: https://github.com/BrendonGS/building_germany_rooswalls
77
+ changelog_uri: https://github.com/BrendonGS/building_germany_rooswalls/CHANGELOG
78
+ post_install_message:
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ requirements: []
93
+ rubyforge_project:
94
+ rubygems_version: 2.7.6
95
+ signing_key:
96
+ specification_version: 4
97
+ summary: This is what your gem does
98
+ test_files: []