File tree 3 files changed +33
-0
lines changed
3 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ --no-private
2
+ --protected
3
+ --markup markdown
4
+ -
5
+ LICENSE
6
+ README
Original file line number Diff line number Diff line change
1
+ source 'https://rubygems.org'
2
+ gemspec
Original file line number Diff line number Diff line change
1
+ lib = File . expand_path ( '../lib' , __FILE__ )
2
+ $LOAD_PATH. unshift ( lib ) unless $LOAD_PATH. include? ( lib )
3
+ require 'camdram/version'
4
+
5
+ Gem ::Specification . new do |spec |
6
+ spec . name = "camdram"
7
+ spec . version = Camdram ::VERSION
8
+ spec . authors = [ "Charlie Jonas" ]
9
+ spec . email = [ "[email protected] " ]
10
+ spec . description = "Camdram API wrapper"
11
+ spec . summary = spec . description
12
+ spec . homepage = ""
13
+ spec . license = "MIT"
14
+
15
+ spec . files = `git ls-files` . split ( $/)
16
+ spec . executables = spec . files . grep ( %r{^bin/} ) { |f | File . basename ( f ) }
17
+ spec . test_files = spec . files . grep ( %r{^(test|spec|features)/} )
18
+ spec . require_paths = [ "lib" ]
19
+
20
+ spec . add_dependency "json"
21
+ spec . add_dependency "net"
22
+
23
+ spec . add_development_dependency "bundler" , "~> 1.5"
24
+ spec . add_development_dependency "rake"
25
+ end
You can’t perform that action at this time.
0 commit comments