ishapi 0.1.2 → 0.1.3
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 +4 -4
- data/app/controllers/ishapi/reports_controller.rb +10 -0
- data/app/controllers/ishapi/reports_controller.rb~ +16 -0
- data/app/controllers/ishapi/sites_controller.rb +19 -0
- data/app/controllers/ishapi/sites_controller.rb~ +16 -0
- data/config/routes.rb +4 -3
- data/lib/ishapi/version.rb +1 -1
- metadata +62 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17f6e5094d7aedb4ea067d3beb102e7d7343c4e1
|
4
|
+
data.tar.gz: cb80dae36fe3f304aa59b6cafaf71152e4ba11f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a54b28afeaaabc66f165b58437dad3d97d2a97bf9a6aacd6d4792755b3f5a2743badb26ceadfb2165ebf0f87815ebe45316b21ac3f061bac60da0c3a47875f50
|
7
|
+
data.tar.gz: 298dc2d9b0800082f9b6404ad962000047fa542e6550137f9ed33fa9b133d63d87fbfea3270161ea1dd64e33dc29ee51b37c90d5a1faad15a5a56a4b82a9f11d
|
@@ -0,0 +1,16 @@
|
|
1
|
+
|
2
|
+
require_dependency "ishapi/application_controller"
|
3
|
+
|
4
|
+
module Ishapi
|
5
|
+
class CitiesController < ApplicationController
|
6
|
+
|
7
|
+
def index
|
8
|
+
@cities = City.all
|
9
|
+
end
|
10
|
+
|
11
|
+
def show
|
12
|
+
@city = City.find_by :cityname => params[:cityname]
|
13
|
+
end
|
14
|
+
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require_dependency "ishapi/application_controller"
|
2
|
+
module Ishapi
|
3
|
+
class SitesController < ApplicationController
|
4
|
+
|
5
|
+
def index
|
6
|
+
@sites = Site.all
|
7
|
+
end
|
8
|
+
|
9
|
+
def show
|
10
|
+
if params[:domain].include?(".json")
|
11
|
+
domain = params[:domain][0...-5]
|
12
|
+
else
|
13
|
+
domain = params[:domain]
|
14
|
+
end
|
15
|
+
@site = Site.find_by :domain => domain, :lang => :en
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
|
2
|
+
require_dependency "ishapi/application_controller"
|
3
|
+
|
4
|
+
module Ishapi
|
5
|
+
class CitiesController < ApplicationController
|
6
|
+
|
7
|
+
def index
|
8
|
+
@cities = City.all
|
9
|
+
end
|
10
|
+
|
11
|
+
def show
|
12
|
+
@city = City.find_by :cityname => params[:cityname]
|
13
|
+
end
|
14
|
+
|
15
|
+
end
|
16
|
+
end
|
data/config/routes.rb
CHANGED
@@ -3,10 +3,11 @@ Ishapi::Engine.routes.draw do
|
|
3
3
|
|
4
4
|
root :to => 'api#home'
|
5
5
|
|
6
|
-
get 'cities',
|
6
|
+
get 'cities', :to => 'cities#index'
|
7
7
|
get 'cities/view/:cityname', :to => 'cities#show'
|
8
8
|
|
9
|
-
get 'reports',
|
10
|
-
|
9
|
+
get 'reports/view/:name_seo', :to => 'reports#show'
|
10
|
+
|
11
|
+
get 'sites/view/:domain', :to => 'sites#show', :constraints => { :domain => /[^\/]+/ }
|
11
12
|
|
12
13
|
end
|
data/lib/ishapi/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ishapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- piousbox
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-05-
|
11
|
+
date: 2017-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -24,6 +24,62 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 5.1.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: mongoid
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 6.1.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 6.1.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: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec-rails
|
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: simplecov
|
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'
|
27
83
|
description: " Description of Ishapi."
|
28
84
|
email:
|
29
85
|
- piousbox@gmail.com
|
@@ -46,6 +102,10 @@ files:
|
|
46
102
|
- app/controllers/ishapi/articles_controller.rb
|
47
103
|
- app/controllers/ishapi/cities_controller.rb
|
48
104
|
- app/controllers/ishapi/cities_controller.rb~
|
105
|
+
- app/controllers/ishapi/reports_controller.rb
|
106
|
+
- app/controllers/ishapi/reports_controller.rb~
|
107
|
+
- app/controllers/ishapi/sites_controller.rb
|
108
|
+
- app/controllers/ishapi/sites_controller.rb~
|
49
109
|
- app/helpers/ishapi/application_helper.rb
|
50
110
|
- app/helpers/ishapi/articles_helper.rb
|
51
111
|
- app/jobs/ishapi/application_job.rb
|