1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
| | ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages rails)
#:use-module (guix licenses)
#:use-module (gnu packages)
#:use-module (guix download)
#:use-module (guix packages)
#:use-module (gnu packages base)
#:use-module (gnu packages python)
#:use-module (gnu packages node)
#:use-module (gnu packages ruby)
#:use-module (gnu packages gcc)
#:use-module (guix build-system ruby))
(define-public ruby-sdoc
(package
(name "ruby-sdoc")
(version "0.4.1")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "sdoc" version))
(sha256
(base32
"16xyfair1j4irfkd6sxvmdcak957z71lwkvhglrznfpkalfnqyqp"))))
(build-system ruby-build-system)
(propagated-inputs
`(("ruby-json" ,ruby-json)
("ruby-rdoc" ,ruby-rdoc)))
(synopsis
"rdoc generator html with javascript search index.")
(description
"rdoc generator html with javascript search index.")
(home-page "http://github.com/voloko/sdoc")
(license expat)))
(define-public ruby-byebug
(package
(name "ruby-byebug")
(version "9.0.5")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "byebug" version))
(sha256
(base32
"18sdnscwwm76i2kbcib2ckwfwpq8b1dbfr97gdcx3j1x547yqv9x"))))
(build-system ruby-build-system)
(arguments
`(#:tests? #f))
(synopsis
"Byebug is a Ruby 2 debugger. It's implemented using the
Ruby 2 TracePoint C API for execution control and the Debug Inspector C API
for call stack navigation. The core component provides support that
front-ends can build on. It provides breakpoint handling and bindings for
stack frames among other things and it comes with an easy to use command
line interface.")
(description
"Byebug is a Ruby 2 debugger. It's implemented using the
Ruby 2 TracePoint C API for execution control and the Debug Inspector C API
for call stack navigation. The core component provides support that
front-ends can build on. It provides breakpoint handling and bindings for
stack frames among other things and it comes with an easy to use command
line interface.")
(home-page
"http://github.com/deivid-rodriguez/byebug")
(license bsd-3)))
(define-public ruby-spring
(package
(name "ruby-spring")
(version "1.7.1")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "spring" version))
(sha256
(base32
"165f6n6am36md1lzaivcg9bx09f7iph4vab0f8av2rlza4yi791p"))))
(build-system ruby-build-system)
(arguments
`(#:tests? #f))
(synopsis
"Preloads your application so things like console, rake and tests run faster")
(description
"Preloads your application so things like console, rake and tests run faster")
(home-page "https://github.com/rails/spring")
(license expat)))
(define-public ruby-debug-inspector
(package
(name "ruby-debug-inspector")
(version "0.0.2")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "debug_inspector" version))
(sha256
(base32
"109761g00dbrw5q0dfnbqg8blfm699z4jj70l4zrgf9mzn7ii50m"))))
(build-system ruby-build-system)
(arguments
`(#:tests? #f))
(inputs
`(("ruby-bacon" ,ruby-bacon)))
(synopsis
"A Ruby wrapper for the MRI 2.0 debug_inspector API")
(description
"This package provides a Ruby wrapper for the MRI 2.0 debug_inspector API")
(home-page
"https://github.com/banister/debug_inspector")
(license #f)))
|