conjoin 0.0.14 → 0.0.15
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/conjoin/auth.rb +1 -1
- data/lib/conjoin/form_builder.rb +1 -1
- data/lib/conjoin/inputs/text.rb +15 -0
- data/lib/conjoin/ui.rb +2 -0
- data/lib/conjoin/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 47cfd51ef07f9a4fd6a0d3d9dff7403e959ab911
|
4
|
+
data.tar.gz: 63a7eedce4dc865c9bdb27000d7074915bec4fbd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7b4d45721c17c320ed75057930ee37b4bb7927052d2d2686b6601a9f2e978d89e8f788aa9a64681cb72eca5e6e6b4274077da54acbe367e3ef1b5ea7efd1ab6
|
7
|
+
data.tar.gz: ebee6fa74b49d3961a076501a214aedf3ea78e754315c8e76cc6b9be8725f57c5f993f1893842cca8dbb5509da897d69a64f897aef4a2c3b1ee83bc7b1eeb6e6
|
data/lib/conjoin/auth.rb
CHANGED
data/lib/conjoin/form_builder.rb
CHANGED
@@ -5,7 +5,7 @@ module Conjoin
|
|
5
5
|
INPUTS = [
|
6
6
|
:boolean , :checkbox , :date , :decimal , :file , :hidden ,
|
7
7
|
:integer , :password , :radio , :select , :state , :string ,
|
8
|
-
:display , :datetime , :time , :year
|
8
|
+
:display , :datetime , :time , :year , :text
|
9
9
|
]
|
10
10
|
|
11
11
|
def self.setup app
|
data/lib/conjoin/ui.rb
CHANGED
data/lib/conjoin/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: conjoin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- cj
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-04-
|
11
|
+
date: 2014-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cuba
|
@@ -342,6 +342,7 @@ files:
|
|
342
342
|
- lib/conjoin/inputs/select.rb
|
343
343
|
- lib/conjoin/inputs/state.rb
|
344
344
|
- lib/conjoin/inputs/string.rb
|
345
|
+
- lib/conjoin/inputs/text.rb
|
345
346
|
- lib/conjoin/inputs/time.rb
|
346
347
|
- lib/conjoin/inputs/year.rb
|
347
348
|
- lib/conjoin/jquery.rb
|