diff options
author | Christopher Baines <mail@cbaines.net> | 2018-03-18 22:19:05 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-03-18 22:21:32 +0000 |
commit | 24072e0133aeafa8f6df4706760ceda693c18f0e (patch) | |
tree | 2c99b06799804e879939129e6cf3391442d0fefd /gnu | |
parent | a63c4d8ceaf172e4c2759caf7491346378071311 (diff) | |
download | guix-24072e0133aeafa8f6df4706760ceda693c18f0e.tar guix-24072e0133aeafa8f6df4706760ceda693c18f0e.tar.gz |
gnu: Add ruby-squasher.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/rails.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/rails.scm b/gnu/packages/rails.scm index a0ad9f7b52..4fa4427cc2 100644 --- a/gnu/packages/rails.scm +++ b/gnu/packages/rails.scm @@ -595,3 +595,25 @@ API.") "Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.") (home-page "http://www.rubyonrails.org") (license license:expat))) + +(define-public ruby-squasher + (package + (name "ruby-squasher") + (version "0.6.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "squasher" version)) + (sha256 + (base32 + "1z7s4qllbqa27h4qf52h3hacs6y7zksnw32r2qkgs4spsd4x9s2h")))) + (build-system ruby-build-system) + (arguments + '(#:test-target "spec")) + (native-inputs + `(("bundler" ,bundler) + ("ruby-rspec" ,ruby-rspec))) + (synopsis "Squash your old migrations") + (description "Squash your old migrations") + (home-page "https://github.com/jalkoby/squasher") + (license license:expat))) |