Skip to content

Commit 1ef9a37

Browse files
author
Francesco Rodriguez
committed
setup gem
1 parent cf96ca1 commit 1ef9a37

7 files changed

+84
-0
lines changed

.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
*.gem
2+
*.rbc
3+
.bundle
4+
.config
5+
.yardoc
6+
Gemfile.lock
7+
InstalledFiles
8+
_yardoc
9+
coverage
10+
doc/
11+
lib/bundler/man
12+
pkg
13+
rdoc
14+
spec/reports
15+
test/tmp
16+
test/version_tmp
17+
tmp

Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source :rubygems
2+
3+
gemspec

LICENSE.txt

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2012 David Heinemeier Hansson
2+
3+
MIT License
4+
5+
Permission is hereby granted, free of charge, to any person obtaining
6+
a copy of this software and associated documentation files (the
7+
"Software"), to deal in the Software without restriction, including
8+
without limitation the rights to use, copy, modify, merge, publish,
9+
distribute, sublicense, and/or sell copies of the Software, and to
10+
permit persons to whom the Software is furnished to do so, subject to
11+
the following conditions:
12+
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Rakefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env rake
2+
require 'bundler/gem_tasks'
3+
require 'rake/testtask'
4+
5+
Rake::TestTask.new do |t|
6+
t.libs = ['test']
7+
t.pattern = 'test/**/*_test.rb'
8+
t.ruby_opts = ['-w']
9+
end
10+
11+
task default: :test

actionpack-action_caching.gemspec

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- encoding: utf-8 -*-
2+
lib = File.expand_path('../lib', __FILE__)
3+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4+
require 'actionpack-action_caching/version'
5+
6+
Gem::Specification.new do |gem|
7+
gem.name = 'actionpack-action_caching'
8+
gem.version = ActionPack::ActionCaching::VERSION
9+
gem.authors = 'David Heinemeier Hansson'
10+
gem.email = '[email protected]'
11+
gem.description = 'Action caching'
12+
gem.summary = 'Action caching'
13+
gem.homepage = 'https://github.com/rails/actionpack-action_caching'
14+
15+
gem.files = `git ls-files`.split($/)
16+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18+
gem.require_paths = ['lib']
19+
end

lib/actionpack-action_caching.rb

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
require 'actionpack-action_caching/version'
2+
3+
module ActionPack
4+
module ActionCaching
5+
# Your code goes here...
6+
end
7+
end
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module ActionPack
2+
module ActionCaching
3+
VERSION = '0.0.1'
4+
end
5+
end

0 commit comments

Comments
 (0)