jekylljournal 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 99d8b8da496a77bbc27d48d7299709ef8e084f70
4
+ data.tar.gz: d8b2a3ea17d668a3e9d663acb6657ba227184fc2
5
+ SHA512:
6
+ metadata.gz: 2cf9c9f871cbaa9b9a8781a730dbd1883a79e014731fe05971e7672c1f8185149e0a2edd2aa76220fc4122996776543882b3e612a8a2b598e2ccb82394867736
7
+ data.tar.gz: 2753ac8b031153008b319643534ab83eb4ddfc9b28e5d62556005180ec4b381e0268e358eb71e89bc81af7fc4c708d4e99c7ab2d41037bfe9f23ab19583317b3
data/.gitignore ADDED
@@ -0,0 +1,6 @@
1
+ *.gem
2
+ *.swp
3
+ Gemfile.lock
4
+ /.bundle
5
+ /tmp
6
+ results.html
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.2.0
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+ gem 'test-unit'
3
+ gemspec
data/README.rdoc ADDED
@@ -0,0 +1,18 @@
1
+ = jekylljournal
2
+
3
+ This is a super awesome way of writing daily blog posts
4
+ with Jekyll.
5
+
6
+ Source on Github:
7
+ https://github.com/lorentrogers/jekylljournal
8
+
9
+ Project management on Taiga:
10
+ https://tree.taiga.io/project/lorentrogers-jekyll-journal/kanban
11
+
12
+ Features are written as Job Stories:
13
+ https://medium.com/the-job-to-be-done/replacing-the-user-story-with-the-job-story-af7cdee10c27
14
+
15
+ This project uses GPL:
16
+ https://gnu.org/licenses/gpl.html
17
+
18
+ :include:jekylljournal.rdoc
data/Rakefile ADDED
@@ -0,0 +1,44 @@
1
+ require 'rake/clean'
2
+ require 'rubygems'
3
+ require 'rubygems/package_task'
4
+ require 'rdoc/task'
5
+ require 'cucumber'
6
+ require 'cucumber/rake/task'
7
+ Rake::RDocTask.new do |rd|
8
+ rd.main = "README.rdoc"
9
+ rd.rdoc_files.include("README.rdoc","lib/**/*.rb","bin/**/*")
10
+ rd.title = 'Jekyll Journal'
11
+ end
12
+
13
+ spec = eval(File.read('jekylljournal.gemspec'))
14
+
15
+ Gem::PackageTask.new(spec) do |pkg|
16
+ end
17
+ CUKE_RESULTS = 'results.html'
18
+ CLEAN << CUKE_RESULTS
19
+ desc 'Run features'
20
+ Cucumber::Rake::Task.new(:features) do |t|
21
+ opts = "features --format html -o #{CUKE_RESULTS} --format progress -x"
22
+ opts += " --tags #{ENV['TAGS']}" if ENV['TAGS']
23
+ t.cucumber_opts = opts
24
+ t.fork = false
25
+ end
26
+
27
+ desc 'Run features tagged as work-in-progress (@wip)'
28
+ Cucumber::Rake::Task.new('features:wip') do |t|
29
+ tag_opts = ' --tags ~@pending'
30
+ tag_opts = ' --tags @wip'
31
+ t.cucumber_opts = "features --format html -o #{CUKE_RESULTS} --format pretty -x -s#{tag_opts}"
32
+ t.fork = false
33
+ end
34
+
35
+ task :cucumber => :features
36
+ task 'cucumber:wip' => 'features:wip'
37
+ task :wip => 'features:wip'
38
+ require 'rake/testtask'
39
+ Rake::TestTask.new do |t|
40
+ t.libs << "test"
41
+ t.test_files = FileList['test/*_test.rb']
42
+ end
43
+
44
+ task :default => [:test,:features]
data/bin/jekylljournal ADDED
@@ -0,0 +1,45 @@
1
+ #!/usr/bin/env ruby
2
+ require 'gli'
3
+
4
+ include GLI::App
5
+
6
+ program_desc 'Jekyll Journal is a super awesome way to write daily blog posts.'
7
+
8
+ version Jekylljournal::VERSION
9
+
10
+ subcommand_option_handling :normal
11
+ arguments :strict
12
+
13
+ # TODO: config file
14
+ # http://stackoverflow.com/questions/6233124/where-to-place-access-config-file-in-gem
15
+
16
+ desc 'Describe some switch here'
17
+ switch [:s,:switch]
18
+
19
+ desc 'Describe some flag here'
20
+ default_value 'the default'
21
+ arg_name 'The name of the argument'
22
+ flag [:f,:flagname]
23
+
24
+ pre do |global,command,options,args|
25
+ # Pre logic here
26
+ # Return true to proceed; false to abort and not call the
27
+ # chosen command
28
+ # Use skips_pre before a command to skip this block
29
+ # on that command only
30
+ true
31
+ end
32
+
33
+ post do |global,command,options,args|
34
+ # Post logic here
35
+ # Use skips_post before a command to skip this
36
+ # block on that command only
37
+ end
38
+
39
+ on_error do |exception|
40
+ # Error logic here
41
+ # return false to skip default error handling
42
+ true
43
+ end
44
+
45
+ exit run(ARGV)
@@ -0,0 +1,8 @@
1
+ Feature: My bootstrapped app kinda works
2
+ In order to get going on coding my awesome app
3
+ I want to have aruba and cucumber setup
4
+ So I don't have to do it myself
5
+
6
+ Scenario: App just runs
7
+ When I get help for "jekylljournal"
8
+ Then the exit status should be 0
@@ -0,0 +1,6 @@
1
+ When /^I get help for "([^"]*)"$/ do |app_name|
2
+ @app_name = app_name
3
+ step %(I run `#{app_name} help`)
4
+ end
5
+
6
+ # Add more step definitions here
@@ -0,0 +1,15 @@
1
+ require 'aruba/cucumber'
2
+
3
+ ENV['PATH'] = "#{File.expand_path(File.dirname(__FILE__) + '/../../bin')}#{File::PATH_SEPARATOR}#{ENV['PATH']}"
4
+ LIB_DIR = File.join(File.expand_path(File.dirname(__FILE__)),'..','..','lib')
5
+
6
+ Before do
7
+ # Using "announce" causes massive warnings on 1.9.2
8
+ @puts = true
9
+ @original_rubylib = ENV['RUBYLIB']
10
+ ENV['RUBYLIB'] = LIB_DIR + File::PATH_SEPARATOR + ENV['RUBYLIB'].to_s
11
+ end
12
+
13
+ After do
14
+ ENV['RUBYLIB'] = @original_rubylib
15
+ end
@@ -0,0 +1,23 @@
1
+ # Ensure we require the local version and not one we might have installed already
2
+ require File.join([File.dirname(__FILE__),'lib','jekylljournal','version.rb'])
3
+ spec = Gem::Specification.new do |s|
4
+ s.name = 'jekylljournal'
5
+ s.version = Jekylljournal::VERSION
6
+ s.author = 'Your Name Here'
7
+ s.email = 'your@email.address.com'
8
+ s.homepage = 'http://your.website.com'
9
+ s.platform = Gem::Platform::RUBY
10
+ s.summary = 'A description of your project'
11
+ s.files = `git ls-files`.split("
12
+ ")
13
+ s.require_paths << 'lib'
14
+ s.has_rdoc = true
15
+ s.extra_rdoc_files = ['README.rdoc','jekylljournal.rdoc']
16
+ s.rdoc_options << '--title' << 'jekylljournal' << '--main' << 'README.rdoc' << '-ri'
17
+ s.bindir = 'bin'
18
+ s.executables << 'jekylljournal'
19
+ s.add_development_dependency('rake')
20
+ s.add_development_dependency('rdoc')
21
+ s.add_development_dependency('aruba')
22
+ s.add_runtime_dependency('gli','2.13.4')
23
+ end
@@ -0,0 +1,5 @@
1
+ = jekylljournal
2
+
3
+ Generate this with
4
+ jekylljournal rdoc
5
+ After you have described your command line interface
@@ -0,0 +1,3 @@
1
+ module Jekylljournal
2
+ VERSION = '0.0.0'
3
+ end
@@ -0,0 +1 @@
1
+ require 'jekylljournal/version.rb'
@@ -0,0 +1,14 @@
1
+ require 'test_helper'
2
+
3
+ class DefaultTest < Test::Unit::TestCase
4
+
5
+ def setup
6
+ end
7
+
8
+ def teardown
9
+ end
10
+
11
+ def test_the_truth
12
+ assert true
13
+ end
14
+ end
@@ -0,0 +1,9 @@
1
+ require 'test/unit'
2
+
3
+ # Add test libraries you want to use here, e.g. mocha
4
+
5
+ class Test::Unit::TestCase
6
+
7
+ # Add global extensions to the test case class here
8
+
9
+ end
metadata ADDED
@@ -0,0 +1,122 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekylljournal
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Your Name Here
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-02-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rdoc
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: aruba
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: gli
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '='
60
+ - !ruby/object:Gem::Version
61
+ version: 2.13.4
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '='
67
+ - !ruby/object:Gem::Version
68
+ version: 2.13.4
69
+ description:
70
+ email: your@email.address.com
71
+ executables:
72
+ - jekylljournal
73
+ extensions: []
74
+ extra_rdoc_files:
75
+ - README.rdoc
76
+ - jekylljournal.rdoc
77
+ files:
78
+ - ".gitignore"
79
+ - ".ruby-version"
80
+ - Gemfile
81
+ - README.rdoc
82
+ - Rakefile
83
+ - bin/jekylljournal
84
+ - features/jekylljournal.feature
85
+ - features/step_definitions/jekylljournal_steps.rb
86
+ - features/support/env.rb
87
+ - jekylljournal.gemspec
88
+ - jekylljournal.rdoc
89
+ - lib/jekylljournal.rb
90
+ - lib/jekylljournal/version.rb
91
+ - test/default_test.rb
92
+ - test/test_helper.rb
93
+ homepage: http://your.website.com
94
+ licenses: []
95
+ metadata: {}
96
+ post_install_message:
97
+ rdoc_options:
98
+ - "--title"
99
+ - jekylljournal
100
+ - "--main"
101
+ - README.rdoc
102
+ - "-ri"
103
+ require_paths:
104
+ - lib
105
+ - lib
106
+ required_ruby_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ required_rubygems_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ requirements: []
117
+ rubyforge_project:
118
+ rubygems_version: 2.4.6
119
+ signing_key:
120
+ specification_version: 4
121
+ summary: A description of your project
122
+ test_files: []