nwiki 0.2.10 → 0.2.11

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: b51379be82f3d3a1fd3367b7473eec83645d6b7c
4
- data.tar.gz: 094b23d9b5599d05ae4a2e0c397575d5ab0c428b
3
+ metadata.gz: 724108989c50ffed8a38a77df0b5a43eb8ad024e
4
+ data.tar.gz: bd81e35fbe6e33d01fcef35ccc169368ca0fe26f
5
5
  SHA512:
6
- metadata.gz: 714b61e651b8569927411aa4eddb4698866dff825c1972713889135d657224c85933486a5012e8fb05c4b8f92410643a562c074d0e6a4ea7ace0b0d56f25a362
7
- data.tar.gz: 7e45239eb6351aaa3f21afc76221a65159edb5fad66d3495f3c78accbc42ad854d9444a3913f7cd882b67e820712bc33b2eb4854f196a8a542dcf5e352a9f212
6
+ metadata.gz: 5ccb59170fe90fc658afe8f820ce862605ffff93b705c67fe56a4effa87bdfd702312acfadf1751f0717c1b77ecf70500ef9d0397c64bcbc23d6ba58648f9ba5
7
+ data.tar.gz: 96160ce01c94838b8a6a532cb23d2b929b0f7c2c006f8abd3f2f62baf6e2f77d7843705769af9808f33b58deef0fdb2a26bb6469042d40279ae03f034edfa5d1
data/CHANGELOG.org CHANGED
@@ -1,4 +1,6 @@
1
1
  * CHANGELOG
2
+ ** 0.2.11
3
+ - Register to dockerhub
2
4
  ** 0.2.10
3
5
  - Add more test(Production code no changes)
4
6
  ** 0.2.9
data/Dockerfile ADDED
@@ -0,0 +1,13 @@
1
+ FROM niku/debian
2
+ MAINTAINER niku
3
+
4
+ RUN apt-get update && \
5
+ apt-get -y install build-essential ruby2.1-dev cmake pkg-config git apache2 libapache2-mod-passenger && \
6
+ echo "<VirtualHost *:80>\n DocumentRoot /var/www/nwiki/public\n <Directory /var/www/nwiki/public>\n Allow from all\n Options -MultiViews\n </Directory>\n</VirtualHost>" > /etc/apache2/sites-available/nwiki.conf && \
7
+ a2dissite 000-default && \
8
+ a2ensite nwiki && \
9
+ git clone https://github.com/niku/nwiki.git /var/www/nwiki && \
10
+ cd /var/www/nwiki && gem install bundler && bundle install
11
+
12
+ EXPOSE 80 443
13
+ CMD ["/usr/sbin/apache2ctl", "-D", "FOREGROUND"]
data/Gemfile.lock CHANGED
@@ -16,7 +16,7 @@ GIT
16
16
  PATH
17
17
  remote: .
18
18
  specs:
19
- nwiki (0.2.10)
19
+ nwiki (0.2.11)
20
20
  org-ruby
21
21
  rack
22
22
  rack-git
@@ -25,20 +25,20 @@ PATH
25
25
  GEM
26
26
  remote: https://rubygems.org/
27
27
  specs:
28
- coveralls (0.8.0)
29
- multi_json (~> 1.10)
28
+ coveralls (0.8.1)
29
+ json (~> 1.8)
30
30
  rest-client (>= 1.6.8, < 2)
31
- simplecov (~> 0.9.1)
31
+ simplecov (~> 0.10.0)
32
32
  term-ansicolor (~> 1.3)
33
33
  thor (~> 0.19.1)
34
34
  diff-lcs (1.2.5)
35
35
  docile (1.1.5)
36
- domain_name (0.5.23)
36
+ domain_name (0.5.24)
37
37
  unf (>= 0.0.5, < 1.0.0)
38
38
  http-cookie (1.0.2)
39
39
  domain_name (~> 0.5)
40
- mime-types (2.4.3)
41
- multi_json (1.11.0)
40
+ json (1.8.2)
41
+ mime-types (2.5)
42
42
  netrc (0.10.3)
43
43
  org-ruby (0.9.12)
44
44
  rubypants (~> 0.2)
@@ -66,20 +66,20 @@ GEM
66
66
  rspec-support (~> 3.2.0)
67
67
  rspec-support (3.2.2)
68
68
  rubypants (0.2.0)
69
- simplecov (0.9.2)
69
+ simplecov (0.10.0)
70
70
  docile (~> 1.1.0)
71
- multi_json (~> 1.0)
72
- simplecov-html (~> 0.9.0)
73
- simplecov-html (0.9.0)
71
+ json (~> 1.8)
72
+ simplecov-html (~> 0.10.0)
73
+ simplecov-html (0.10.0)
74
74
  term-ansicolor (1.3.0)
75
75
  tins (~> 1.0)
76
76
  test-unit (3.0.9)
77
77
  power_assert
78
78
  thor (0.19.1)
79
- tins (1.3.5)
79
+ tins (1.5.1)
80
80
  unf (0.1.4)
81
81
  unf_ext
82
- unf_ext (0.0.6)
82
+ unf_ext (0.0.7.1)
83
83
 
84
84
  PLATFORMS
85
85
  ruby
data/lib/nwiki/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Nwiki
2
- VERSION = '0.2.10'
2
+ VERSION = '0.2.11'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nwiki
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.10
4
+ version: 0.2.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - niku
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-09 00:00:00.000000000 Z
11
+ date: 2015-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
@@ -136,6 +136,7 @@ files:
136
136
  - ".ruby-version"
137
137
  - ".travis.yml"
138
138
  - CHANGELOG.org
139
+ - Dockerfile
139
140
  - Gemfile
140
141
  - Gemfile.lock
141
142
  - Guardfile