tdiary 4.0.0 → 4.0.0.20130826
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +4 -0
- data/Gemfile +7 -16
- data/Gemfile.lock +14 -23
- data/misc/templates/Gemfile.local.erb +8 -0
- data/tdiary/cli.rb +1 -0
- data/tdiary/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 27cb77ac1fe50e8091bd34b3b73b9002b13d0260
|
4
|
+
data.tar.gz: a22c266f3cae33f27f0a067086568ca449a74752
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 835577cb058663ce7db73d66c83bddc829f1c0f42485f8d81fe46f3bdc12c42d39ac7150f66fb54bee38b7720e9f169b2e8d7d2f9c55435f69cb3a5ccbbb6624
|
7
|
+
data.tar.gz: 1d8c2807485b4da29ed047030026b08d8b0d3f145e12ad34eaddb853dffbbdb92878c2285b8566ec10f2dd4889677aa6bde328f88d10740542cf47e32ad80525
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -4,9 +4,13 @@ rvm:
|
|
4
4
|
- 1.9.3
|
5
5
|
- 2.0.0
|
6
6
|
|
7
|
+
# ignored --deployment option
|
8
|
+
bundler_args: ""
|
9
|
+
|
7
10
|
before_install:
|
8
11
|
- "export DISPLAY=:99.0"
|
9
12
|
- "sh -e /etc/init.d/xvfb start"
|
13
|
+
- "echo 'gemspec' > Gemfile.local"
|
10
14
|
|
11
15
|
before_script:
|
12
16
|
- DAEMON=1 bundle exec rake server
|
data/Gemfile
CHANGED
@@ -1,21 +1,5 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
|
-
if File.exist?(File.expand_path('../tdiary.gemspec', __FILE__))
|
4
|
-
# directly installed (e.g. git clone, archive file)
|
5
|
-
gemspec
|
6
|
-
else
|
7
|
-
# installed by gem
|
8
|
-
gem 'tdiary'
|
9
|
-
|
10
|
-
# use edge tDiary
|
11
|
-
# gem 'tdiary', :git => 'git@github.com:tdiary/tdiary-core.git'
|
12
|
-
end
|
13
|
-
|
14
|
-
# if you use tdiary-contrib gem, uncomment this line.
|
15
|
-
# gem 'tdiary-contrib'
|
16
|
-
# use edge tDiary contrib
|
17
|
-
# gem 'tdiary-contrib', :git => 'git@github.com:tdiary/tdiary-contrib.git'
|
18
|
-
|
19
3
|
gem 'rack'
|
20
4
|
gem 'sprockets'
|
21
5
|
gem 'hikidoc'
|
@@ -72,3 +56,10 @@ group :development do
|
|
72
56
|
gem 'coveralls', :require => false
|
73
57
|
end
|
74
58
|
end
|
59
|
+
|
60
|
+
# https://github.com/redmine/redmine/blob/master/Gemfile#L89
|
61
|
+
local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
|
62
|
+
if File.exists?(local_gemfile)
|
63
|
+
puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v`
|
64
|
+
instance_eval File.read(local_gemfile)
|
65
|
+
end
|
data/Gemfile.lock
CHANGED
@@ -1,10 +1,3 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
tdiary (4.0.0)
|
5
|
-
bundler (~> 1.3)
|
6
|
-
thor (~> 0.18)
|
7
|
-
|
8
1
|
GEM
|
9
2
|
remote: https://rubygems.org/
|
10
3
|
specs:
|
@@ -33,8 +26,7 @@ GEM
|
|
33
26
|
dalli (2.6.4)
|
34
27
|
diff-lcs (1.2.4)
|
35
28
|
eventmachine (1.0.3)
|
36
|
-
execjs (
|
37
|
-
multi_json (~> 1.0)
|
29
|
+
execjs (2.0.0)
|
38
30
|
fastimage (1.5.0)
|
39
31
|
ffi (1.9.0)
|
40
32
|
hike (1.2.3)
|
@@ -47,11 +39,11 @@ GEM
|
|
47
39
|
jasmine-core (1.3.1)
|
48
40
|
launchy (2.3.0)
|
49
41
|
addressable (~> 2.3)
|
50
|
-
libv8 (3.
|
51
|
-
method_source (0.8.
|
52
|
-
mime-types (1.
|
42
|
+
libv8 (3.16.14.3)
|
43
|
+
method_source (0.8.2)
|
44
|
+
mime-types (1.24)
|
53
45
|
mini_portile (0.5.1)
|
54
|
-
multi_json (1.7.
|
46
|
+
multi_json (1.7.9)
|
55
47
|
nokogiri (1.6.0)
|
56
48
|
mini_portile (~> 0.5.0)
|
57
49
|
pit (0.0.7)
|
@@ -73,7 +65,7 @@ GEM
|
|
73
65
|
rdtool (0.6.38)
|
74
66
|
redcarpet (3.0.0)
|
75
67
|
redis (3.0.4)
|
76
|
-
redis-namespace (1.3.
|
68
|
+
redis-namespace (1.3.1)
|
77
69
|
redis (~> 3.0.0)
|
78
70
|
ref (1.0.5)
|
79
71
|
rest-client (1.6.7)
|
@@ -82,17 +74,17 @@ GEM
|
|
82
74
|
rspec-core (~> 2.14.0)
|
83
75
|
rspec-expectations (~> 2.14.0)
|
84
76
|
rspec-mocks (~> 2.14.0)
|
85
|
-
rspec-core (2.14.
|
86
|
-
rspec-expectations (2.14.
|
77
|
+
rspec-core (2.14.5)
|
78
|
+
rspec-expectations (2.14.2)
|
87
79
|
diff-lcs (>= 1.1.3, < 2.0)
|
88
|
-
rspec-mocks (2.14.
|
80
|
+
rspec-mocks (2.14.3)
|
89
81
|
rubyzip (0.9.9)
|
90
|
-
selenium-webdriver (2.
|
82
|
+
selenium-webdriver (2.35.0)
|
91
83
|
childprocess (>= 0.2.5)
|
92
84
|
multi_json (~> 1.0)
|
93
85
|
rubyzip
|
94
86
|
websocket (~> 1.0.4)
|
95
|
-
sequel (4.
|
87
|
+
sequel (4.1.1)
|
96
88
|
simplecov (0.7.1)
|
97
89
|
multi_json (~> 1.0)
|
98
90
|
simplecov-html (~> 0.7.1)
|
@@ -103,12 +95,12 @@ GEM
|
|
103
95
|
multi_json (~> 1.0)
|
104
96
|
rack (~> 1.0)
|
105
97
|
tilt (~> 1.1, != 1.3.0)
|
106
|
-
sqlite3 (1.3.
|
98
|
+
sqlite3 (1.3.8)
|
107
99
|
tapp (1.4.0)
|
108
100
|
thor
|
109
101
|
test-unit (2.5.5)
|
110
|
-
therubyracer (0.
|
111
|
-
libv8 (~> 3.
|
102
|
+
therubyracer (0.12.0)
|
103
|
+
libv8 (~> 3.16.14.0)
|
112
104
|
ref
|
113
105
|
thin (1.5.1)
|
114
106
|
daemons (>= 1.0.9)
|
@@ -155,7 +147,6 @@ DEPENDENCIES
|
|
155
147
|
sprockets
|
156
148
|
sqlite3
|
157
149
|
tapp
|
158
|
-
tdiary!
|
159
150
|
test-unit
|
160
151
|
therubyracer
|
161
152
|
thin
|
@@ -0,0 +1,8 @@
|
|
1
|
+
gem 'tdiary'
|
2
|
+
# use edge tDiary
|
3
|
+
# gem 'tdiary', :git => 'git@github.com:tdiary/tdiary-core.git'
|
4
|
+
|
5
|
+
# if you use tdiary-contrib gem, uncomment this line.
|
6
|
+
# gem 'tdiary-contrib'
|
7
|
+
# use edge tDiary contrib
|
8
|
+
# gem 'tdiary-contrib', :git => 'git@github.com:tdiary/tdiary-contrib.git'
|
data/tdiary/cli.rb
CHANGED
@@ -18,6 +18,7 @@ module TDiary
|
|
18
18
|
target = File.join(Dir.pwd, name)
|
19
19
|
deploy(target)
|
20
20
|
copy_file('tdiary.conf.beginner', File.join(target, 'tdiary.conf'))
|
21
|
+
template('misc/templates/Gemfile.local.erb', File.join(target, 'Gemfile.local'))
|
21
22
|
|
22
23
|
unless options[:'skip-bundle']
|
23
24
|
Bundler.with_clean_env do
|
data/tdiary/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tdiary
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.0
|
4
|
+
version: 4.0.0.20130826
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TADA Tadashi
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-08-26 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: thor
|
@@ -251,6 +251,7 @@ files:
|
|
251
251
|
- misc/style/wiki/README.en
|
252
252
|
- misc/style/wiki/wiki_parser.rb
|
253
253
|
- misc/style/wiki/wiki_style.rb
|
254
|
+
- misc/templates/Gemfile.local.erb
|
254
255
|
- misc/theme_convert/Readme.rd
|
255
256
|
- misc/theme_convert/append.rcss
|
256
257
|
- misc/theme_convert/theme_convert.rb
|
@@ -454,7 +455,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
454
455
|
version: '0'
|
455
456
|
requirements: []
|
456
457
|
rubyforge_project:
|
457
|
-
rubygems_version: 2.0.
|
458
|
+
rubygems_version: 2.0.7
|
458
459
|
signing_key:
|
459
460
|
specification_version: 4
|
460
461
|
summary: a TSUKKOMI-able Web-log
|