Skip to content

Commit c67d9c1

Browse files
committed
Release v0.3.0
1 parent ae153d9 commit c67d9c1

File tree

5 files changed

+44
-10
lines changed

5 files changed

+44
-10
lines changed

.github/workflows/build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Tests
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- "*-stable"
7+
- "*/ci-check"
8+
pull_request:
9+
10+
jobs:
11+
tests:
12+
name: Tests
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
ruby: [2.6, 2.7, 3.0]
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout code
20+
uses: actions/checkout@v2
21+
22+
- name: Setup Ruby
23+
uses: ruby/setup-ruby@v1
24+
with:
25+
ruby-version: ${{ matrix.ruby }}
26+
bundler-cache: true
27+
28+
- name: Run tests
29+
run: bundle exec rake

.rspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--format documentation
2+
--color

Gemfile.lock

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
paggio (0.2.4)
4+
paggio (0.3.0)
55

66
GEM
77
remote: https://rubygems.org/
@@ -24,3 +24,6 @@ DEPENDENCIES
2424
paggio!
2525
rake
2626
rspec
27+
28+
BUNDLED WITH
29+
2.1.4

Rakefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#! /usr/bin/env ruby
2+
3+
require 'bundler/setup'
4+
require 'bundler/gem_tasks'
25
require 'rake'
36

4-
task :default => :test
7+
require "rspec/core/rake_task"
8+
RSpec::Core::RakeTask.new(:rspec)
59

6-
task :test do
7-
FileUtils.cd 'spec' do
8-
sh 'rspec css_spec.rb html_spec.rb --backtrace --color --format doc'
9-
end
10-
end
10+
task :default => :rspec

paggio.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Gem::Specification.new {|s|
22
s.name = 'paggio'
3-
s.version = '0.2.6'
3+
s.version = '0.3.0'
44
s.author = 'meh.'
55
s.email = '[email protected]'
6-
s.homepage = 'http://github.com/meh/paggio'
6+
s.homepage = 'http://github.com/opal/paggio'
77
s.platform = Gem::Platform::RUBY
88
s.summary = 'Ruby, HTML and CSS at war.'
9-
s.license = 'WTFPL'
9+
s.license = 'WTFPL'
1010

1111
s.files = `git ls-files`.split("\n")
1212
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }

0 commit comments

Comments
 (0)