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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cb16ccce86d104078ab8ee5d7e7ab681f478b5d9
4
- data.tar.gz: b14fec09384e30d9b4bd9110b90c81dbe64026bd
3
+ metadata.gz: 17f6e5094d7aedb4ea067d3beb102e7d7343c4e1
4
+ data.tar.gz: cb80dae36fe3f304aa59b6cafaf71152e4ba11f2
5
5
  SHA512:
6
- metadata.gz: 1f1467075b6072b0a51c0f21b577cf4b991445c134b30b6de91a0521d9851dbfe1ddb484ed5bd79c360c473b484456cb160b5b3d3c412f060d224068a22e590a
7
- data.tar.gz: 30a2f4163f449bd3ccf0a2480ea5926ef67bf25824368a0a4fcb1872dbcafcd1fea63ec1b46a520922531045d6ea03e02d093b66a7c2861d86da075659379242
6
+ metadata.gz: a54b28afeaaabc66f165b58437dad3d97d2a97bf9a6aacd6d4792755b3f5a2743badb26ceadfb2165ebf0f87815ebe45316b21ac3f061bac60da0c3a47875f50
7
+ data.tar.gz: 298dc2d9b0800082f9b6404ad962000047fa542e6550137f9ed33fa9b133d63d87fbfea3270161ea1dd64e33dc29ee51b37c90d5a1faad15a5a56a4b82a9f11d
@@ -0,0 +1,10 @@
1
+ require_dependency "ishapi/application_controller"
2
+ module Ishapi
3
+ class ReportsController < ApplicationController
4
+
5
+ def show
6
+ @report = Report.find_by :name_seo => params[:name_seo]
7
+ end
8
+
9
+ end
10
+ 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
@@ -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
@@ -3,10 +3,11 @@ Ishapi::Engine.routes.draw do
3
3
 
4
4
  root :to => 'api#home'
5
5
 
6
- get 'cities', :to => 'cities#index'
6
+ get 'cities', :to => 'cities#index'
7
7
  get 'cities/view/:cityname', :to => 'cities#show'
8
8
 
9
- get 'reports', :to => 'reports#index'
10
- get 'reports/view/:report_name', :to => 'reports#show'
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
@@ -1,3 +1,3 @@
1
1
  module Ishapi
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
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.2
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-10 00:00:00.000000000 Z
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