File: first.rb

package info (click to toggle)
yapra 0.1.2-7.2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 616 kB
  • sloc: ruby: 3,572; javascript: 248; makefile: 10
file content (11 lines) | stat: -rw-r--r-- 147 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
## first data plugin -- IKeJI
##
## this plugin returns only first data
##
## -moduel: first
##

def first(config,data)
  return [data.first]
end