copyrighter 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
4
+ before_install: gem install bundler -v 1.10.6
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- source 'https://rubygems.org'
1
+ source "https://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in copyrighter.gemspec
4
4
  gemspec
data/README.md CHANGED
@@ -1,17 +1,30 @@
1
1
  # Copyrighter
2
2
 
3
+ [![Gem Version](http://img.shields.io/gem/v/copyrighter.svg)](https://rubygems.org/gems/copyrighter)
4
+ [![Dependency Status](https://gemnasium.com/farski/copyrighter.svg)](https://gemnasium.com/farski/copyrighter)
5
+ [![Build Status](https://travis-ci.org/farski/copyrighter.svg)](https://travis-ci.org/farski/copyrighter)
6
+ [![Code Climate](https://codeclimate.com/github/farski/copyrighter/badges/gpa.svg)](https://codeclimate.com/github/farski/copyrighter)
7
+ [![Coverage Status](https://coveralls.io/repos/farski/copyrighter/badge.svg?branch=master&service=github)](https://coveralls.io/github/farski/copyrighter?branch=master)
8
+
3
9
  Handy way to print out copyright dates, like in a footer.
4
10
 
5
- Assuming it's 2012,
11
+ ### Examples
12
+
13
+ The following examples assume it's 2012
6
14
 
7
- <%= © 2012 %> will print "2012"
15
+ © 2012
16
+ => "2012"
8
17
 
9
- Next year it will automatically change to "2012 - 2013"
18
+ This will automatically change to "2012 2013" next year!
10
19
 
11
- You can give it either an integer or a range of integers.
20
+ # © will take an integer
21
+ © 1999
22
+ => "1999 – 2012"
23
+ # or a range
24
+ © 1492..1566
25
+ => "1492 – 1566"
12
26
 
13
- You can also provide an optional second argument, which is what will join the start and end of the range
27
+ You can also provide an optional second argument, which will be used to join the string
14
28
 
15
- © 1999, '-' => "1999-2012"
16
- © 1999, ' - ' => "1999 - 2012"
17
- © 1999, ':' => "1999:2012"
29
+ © 1999, " to "
30
+ => "1999 to 2012"
data/Rakefile CHANGED
@@ -1,2 +1,17 @@
1
- #!/usr/bin/env rake
2
1
  require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ end
9
+
10
+ task :console do
11
+ require "pry"
12
+ require "copyrighter"
13
+ ARGV.clear
14
+ Pry.start
15
+ end
16
+
17
+ task default: :test
@@ -1,17 +1,29 @@
1
- # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/copyrighter/version', __FILE__)
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "copyrighter/version"
3
5
 
4
- Gem::Specification.new do |gem|
5
- gem.authors = ["Chris Kalafarski"]
6
- gem.email = ["chris@farski.com"]
7
- gem.description = %q{Conveniently output copyright date ranges}
8
- gem.summary = %q{Helper method for printed copyright dates, like "Copyright 1999-2012"}
9
- gem.homepage = 'https://github.com/farski/copyrighter'
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "copyrighter"
8
+ spec.version = Copyrighter::VERSION
9
+ spec.authors = ["Chris Kalafarski"]
10
+ spec.email = ["chris@farski.com"]
10
11
 
11
- gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
12
- gem.files = `git ls-files`.split("\n")
13
- gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
14
- gem.name = "copyrighter"
15
- gem.require_paths = ["lib"]
16
- gem.version = Copyrighter::VERSION
12
+ spec.summary = "Conveniently output copyright date ranges"
13
+ spec.description = "Helper method for printed copyright dates, like `Copyright 1999-2012`"
14
+ spec.homepage = "https://github.com/farski/copyrighter"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.10"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "minitest", "~> 5.8"
25
+ spec.add_development_dependency "coveralls", "~> 0"
26
+ spec.add_development_dependency "pry", "~> 0.10"
27
+ spec.add_development_dependency "dotenv", "~> 2.0"
28
+ spec.add_development_dependency "rubocop", "~> 0.34"
17
29
  end
@@ -1,8 +1,9 @@
1
- # -*- coding: utf-8 -*-
1
+ # coding: utf-8
2
2
 
3
- require 'copyrighter/version'
3
+ require "copyrighter/version"
4
4
 
5
- require 'copyrighter/railtie' if defined?(Rails)
5
+ require "copyrighter/helpers"
6
+ require "copyrighter/railtie" if defined?(Rails)
6
7
 
7
8
  module Copyrighter
8
9
  end
@@ -1,14 +1,14 @@
1
- # -*- coding: utf-8 -*-
1
+ # coding: utf-8
2
2
 
3
3
  module Copyrighter
4
4
  module Helpers
5
- def ©(period, joiner = " – ")
6
- return case period
7
- when Range then [period.begin, period.end]
8
- when Time.now.year then [period]
9
- else [period, Time.now.year]
5
+ def ©(period = Time.now.year, joiner = " – ")
6
+ case period
7
+ when Range then [period.begin, period.end]
8
+ when Time.now.year then [period]
9
+ else [period, Time.now.year]
10
10
  end.compact.join(joiner)
11
11
  end
12
- alias :copyright :©
12
+ alias_method :copyright,
13
13
  end
14
14
  end
@@ -1,8 +1,9 @@
1
- require 'copyrighter/helpers'
1
+ require "copyrighter/helpers"
2
+
2
3
  module Copyrighter
3
4
  class Railtie < Rails::Railtie
4
5
  initializer "copyrighter.helpers" do
5
6
  ActionView::Base.send :include, Helpers
6
7
  end
7
8
  end
8
- end
9
+ end
@@ -1,3 +1,3 @@
1
1
  module Copyrighter
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,24 +1,126 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: copyrighter
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
5
- prerelease:
4
+ version: 1.0.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Chris Kalafarski
9
8
  autorequire:
10
- bindir: bin
9
+ bindir: exe
11
10
  cert_chain: []
12
- date: 2012-01-26 00:00:00.000000000 Z
13
- dependencies: []
14
- description: Conveniently output copyright date ranges
11
+ date: 2015-10-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.8'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.8'
55
+ - !ruby/object:Gem::Dependency
56
+ name: coveralls
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.10'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.10'
83
+ - !ruby/object:Gem::Dependency
84
+ name: dotenv
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '2.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '2.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '0.34'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '0.34'
111
+ description: Helper method for printed copyright dates, like `Copyright 1999-2012`
15
112
  email:
16
113
  - chris@farski.com
17
114
  executables: []
18
115
  extensions: []
19
116
  extra_rdoc_files: []
20
117
  files:
21
- - .gitignore
118
+ - ".gitignore"
119
+ - ".hound.yml"
120
+ - ".rubocop.yml"
121
+ - ".ruby-style.yml"
122
+ - ".travis.yml"
123
+ - CODE_OF_CONDUCT.md
22
124
  - Gemfile
23
125
  - LICENSE
24
126
  - README.md
@@ -29,27 +131,27 @@ files:
29
131
  - lib/copyrighter/railtie.rb
30
132
  - lib/copyrighter/version.rb
31
133
  homepage: https://github.com/farski/copyrighter
32
- licenses: []
134
+ licenses:
135
+ - MIT
136
+ metadata: {}
33
137
  post_install_message:
34
138
  rdoc_options: []
35
139
  require_paths:
36
140
  - lib
37
141
  required_ruby_version: !ruby/object:Gem::Requirement
38
- none: false
39
142
  requirements:
40
- - - ! '>='
143
+ - - ">="
41
144
  - !ruby/object:Gem::Version
42
145
  version: '0'
43
146
  required_rubygems_version: !ruby/object:Gem::Requirement
44
- none: false
45
147
  requirements:
46
- - - ! '>='
148
+ - - ">="
47
149
  - !ruby/object:Gem::Version
48
150
  version: '0'
49
151
  requirements: []
50
152
  rubyforge_project:
51
- rubygems_version: 1.8.11
153
+ rubygems_version: 2.4.5.1
52
154
  signing_key:
53
- specification_version: 3
54
- summary: Helper method for printed copyright dates, like "Copyright 1999-2012"
155
+ specification_version: 4
156
+ summary: Conveniently output copyright date ranges
55
157
  test_files: []