Skip to content

Commit 689d8e8

Browse files
committed
Initial commit
0 parents  commit 689d8e8

File tree

6 files changed

+36
-0
lines changed

6 files changed

+36
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.gem
2+
.bundle
3+
Gemfile.lock
4+
pkg/*

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source :rubygems
2+
gemspec

Rakefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require "bundler/gem_tasks"

her.gemspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# -*- encoding: utf-8 -*-
2+
$:.push File.expand_path("../lib", __FILE__)
3+
require "her/version"
4+
5+
Gem::Specification.new do |s|
6+
s.name = "her"
7+
s.version = Her::VERSION
8+
s.authors = ["Rémi Prévost"]
9+
s.email = ["[email protected]"]
10+
s.homepage = "https://github.com/remiprev/her"
11+
s.summary = "A REST-based HTTP-powered ORM"
12+
s.description = "Her is an ORM that maps REST resources to ActiveModel-like Ruby objects"
13+
14+
s.files = `git ls-files`.split("\n")
15+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
17+
s.require_paths = ["lib"]
18+
19+
# specify any dependencies here; for example:
20+
s.add_development_dependency "rspec"
21+
s.add_runtime_dependency "rest-client"
22+
end

lib/her.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
require "her/version"
2+
3+
module Her
4+
end

lib/her/version.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module Her
2+
VERSION = "0.0.1"
3+
end

0 commit comments

Comments
 (0)