phantom_helpers 0.11.0.alpha6 → 0.11.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.
- checksums.yaml +4 -4
- data/lib/phantom_helpers/view_helpers/table_helper.rb +1 -1
- data/locales/ja.yml +6 -1
- data/phantom_helpers.gemspec +1 -1
- metadata +7 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 836b0178df60ed73cdff02702fa492ec1c7e0fd9
|
|
4
|
+
data.tar.gz: 3eef0221f61b1b234c8f6585dd8ca7a29a4d247b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a4394d9fcac5b12ff4c708eb7ed7d9c49fd45797bbf3b3f4fdb0d2ed9d7ad7b3ea2a985f311f03e2160c5e5342dddba0c4cb31686546c550cb00eb936303079b
|
|
7
|
+
data.tar.gz: a314f77f75473d49c804f49fbb1ab4e54188742e980924ffb3912aec17b9487070e687ed61ce706aafd9159ba839ad7963c8c9cb553b2f8ae5bd16813f96ab59
|
|
@@ -45,7 +45,7 @@ module PhantomHelpers
|
|
|
45
45
|
end
|
|
46
46
|
|
|
47
47
|
def th_icon(icon)
|
|
48
|
-
content_tag :th, class: "btn-inverse", style: "width:
|
|
48
|
+
content_tag :th, class: "btn-inverse", style: "width:34px;" do
|
|
49
49
|
content_tag :span, nil, class: "glyphicon glyphicon-#{icon}"
|
|
50
50
|
end
|
|
51
51
|
end
|
data/locales/ja.yml
CHANGED
|
@@ -2,9 +2,14 @@ ja:
|
|
|
2
2
|
phantom_helpers:
|
|
3
3
|
cancel: "キャンセル"
|
|
4
4
|
back: "戻る"
|
|
5
|
+
index: "インデックス"
|
|
6
|
+
report: "レポート生成"
|
|
7
|
+
updated: "最終更新"
|
|
8
|
+
ago: "前"
|
|
5
9
|
picture:
|
|
6
10
|
change: "画像を変更"
|
|
7
11
|
upload: "画像をアップロード"
|
|
8
12
|
are_you_sure: "これで宜しいですか?"
|
|
9
13
|
edit: "編集"
|
|
10
|
-
|
|
14
|
+
delete: "削除"
|
|
15
|
+
confirm_delete: "削除しますか?"
|
data/phantom_helpers.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Gem::Specification.new do |s|
|
|
3
3
|
s.platform = Gem::Platform::RUBY
|
|
4
4
|
s.name = 'phantom_helpers'
|
|
5
|
-
s.version = '0.11.0
|
|
5
|
+
s.version = '0.11.0'
|
|
6
6
|
s.summary = 'Phantom View Helpers'
|
|
7
7
|
s.description = 'rails helpers for bootstrap 3'
|
|
8
8
|
s.licenses = ['GNU GPL-3', 'AGPL-3']
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: phantom_helpers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.0
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vassil Kalkov
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2015-02-05 00:00:00.000000000 Z
|
|
14
14
|
dependencies: []
|
|
15
15
|
description: rails helpers for bootstrap 3
|
|
16
16
|
email: info@genshin.org
|
|
@@ -18,7 +18,7 @@ executables: []
|
|
|
18
18
|
extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
|
20
20
|
files:
|
|
21
|
-
- .gitignore
|
|
21
|
+
- ".gitignore"
|
|
22
22
|
- LICENSE.md
|
|
23
23
|
- README.md
|
|
24
24
|
- lib/phantom_helpers.rb
|
|
@@ -51,20 +51,19 @@ require_paths:
|
|
|
51
51
|
- lib
|
|
52
52
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
53
53
|
requirements:
|
|
54
|
-
- -
|
|
54
|
+
- - ">="
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
56
|
version: 1.8.7
|
|
57
57
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
|
-
- -
|
|
59
|
+
- - ">="
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version:
|
|
61
|
+
version: '0'
|
|
62
62
|
requirements:
|
|
63
63
|
- none
|
|
64
64
|
rubyforge_project:
|
|
65
|
-
rubygems_version: 2.
|
|
65
|
+
rubygems_version: 2.4.5
|
|
66
66
|
signing_key:
|
|
67
67
|
specification_version: 4
|
|
68
68
|
summary: Phantom View Helpers
|
|
69
69
|
test_files: []
|
|
70
|
-
has_rdoc:
|